File tree Expand file tree Collapse file tree 4 files changed +7
-2
lines changed
Expand file tree Collapse file tree 4 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 1+ //! This file provides the autograd engine functionality for kiwigrad
2+
3+ const value = @import ("value.zig" );
4+
5+ pub const Value = value .Value ;
File renamed without changes.
Original file line number Diff line number Diff line change 11//! Neural network components built on top of the scalar engine
22
33const std = @import ("std" );
4- const engine = @import ("engine.zig" );
4+ const engine = @import ("engine/engine .zig" );
55const zprob = @import ("zprob" );
66
77/// Represents a neuron with a configurable input size
Original file line number Diff line number Diff line change 33const std = @import ("std" );
44const testing = std .testing ;
55
6- pub const engine = @import ("engine.zig" );
6+ pub const engine = @import ("engine/engine .zig" );
77pub const nn = @import ("nn.zig" );
You can’t perform that action at this time.
0 commit comments