Status: experimental
Goal: provide F# utilities to make the CNTK .NET API pleasant to use from the F# scripting environment
Given the early stage of the project, and the uncertainties around overall design, I plan on keeping things fluid at the moment, explore ideas to see what works and what doesn't, and keep code primarily in scripts, until things settle down.
I plan on exploring ideas in experimental branches first, and slowly integrate ideas in master. Once things stabilize, it will be time for a library with a stable API.
Ideally, if you have ideas, submit them as an issue, linking to your branch, so we can start a discussion! I am also usually around the fsharp.org Slack, in the datascience channel.
Most C# examples have been replicated (see examples folder).
At that point, the CNTK.Sequential.fsx
has a reasonably working version of sequential models,
creating a model using a single input variable, by composing layers in a linear fashion, with
a few basic layers implemented. See examples/MNIST/MNIST-CNN.Seq.fsx
for an example.
However, sequential models do not cover all use cases, specifically:
How to approach that issue is still in flux. The main goal here would be to enable users with more advanced scenarios to create their own models. Specific goals are:
Function
into Variable
, and
make models more readable,Next steps:
Device
from the creation of a trainable Function
.CNTKLib
,Plan: as a first step, focus on replicating the existing C# examples, to understand better what works and what doesn't.