cbovar / ConvNetSharp

Deep Learning in C#

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

DropoutLayer Missing Method Exception

fdncred opened this issue · comments

I created my model as noted in #88 and serialized it but now I can't load it back in.
model-load.
This is my deserialization code.

            var json = File.ReadAllText("net.model-full-18layer.json");// "net.model-full-GPU.json");
            _net = SerializationExtensions.FromJson<double>(json);

This is the model.
net.model-full-18layer.zip
Any ideas?

Thanks,
Darren

Serialization requires some specific constructors that I had forgotten to add.
It should be fine now.