Freek Schoenmakers

Results 2 comments of Freek Schoenmakers

I ran into this myself, AFAIK the save/load functionality just isn't in yet. I ended up making my own save-load functionality. You can get the trainable weights from each layer,...

You can make a custom initialiser like this: ``` class LoadInitializer : IInitializer { float[] toLoad; public LoadInitializer(Tensor toLoad) { this.toLoad = toLoad.ToArray(); } public Tensor Apply(InitializerArgs args) { NDArray...