aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2023-08-26fix: cfg syntax verification and usage messages improvedjvech
2023-08-25add: layer architecture loading from cfg donejvech
2023-08-23add: basic configuration parsing implementedjvech
parameters implemented: - input_keys - label_keys - epochs - labels - weights_path Network weights and architecture loading is not implemented yet.
2023-08-17[ADD]: Cli implemented in a different functionjvech
The program config parameters where encapsulated in a struct to keep track of them without implementing a lot of functions
2023-08-16add: Cli definedjvech
2023-08-14add: cli interface definedjvech
2023-08-12add: softplus activation addedjvech
2023-08-12add: nn_network_predict donejvech
2023-08-08add: pass activations to a separate filejvech
The point is have this file for new activation function without bloating nn.c file
2023-08-08add: activation and cost functions addedjvech
Training function were fixed and new activation and cost function were implemented
2023-08-06add: nn_network_train() addedjvech
The function needs to be tested
2023-08-06refactor: Activation and Layer struct refactoredjvech
2023-08-05add: nn_backward() calloc error handling addedjvech
2023-08-05add: bias backward propagation implementedjvech
2023-08-04add: nn_backward implementedjvech
It needs to be tested and some backward layer functions were redefined to improve readability
2023-08-02add: layer backward donejvech
2023-08-02add: delta calculation for hidden and output layer donejvech
2023-07-29add: nn_layer_forward splitedjvech
The function nn_layer_forward was changed from f(X*W) to X*W and nn_layer_map_activation will map the activation function through the output of nn_layer_forward.
2023-07-28add: network forward pass implementedjvech
2023-07-27fix: weights allocation mistake fixedjvech
2023-07-27fix: random weights generator bug fixedjvech
2023-07-24doc: backpropagation notes addedjvech
2023-07-13add: json_read improvedjvech
2023-07-13add: forward pass with openblas in progressjvech
2023-07-12add: weights initialization and deallocation donejvech
2023-07-10add: json file function implementedjvech
Feel free to download, copy and edit any repo