buildTensorflow
buildTensorflow copied to clipboard
A lightweight deep learning framework made with ❤️
D:\VScode\test_vscode_01\TFTEST>g++ -std=c++11 main.cpp -o main In file included from buildTensorflow.h:1, from main.cpp:1: types/tensor.h:21:10: fatal error: operations/operation.h: No such file or directory #include "operations/operation.h" compilation terminated. Sir, I downloaded your code,but...
In this project, we use a ND Array to represent the underlying data of a Tensor. The Matrix class represents the ND array. As of now, we have little to...
This pull request seeks to add building this project for the GPU. Currently, the kernel for the dot product is added (matrix multiplication). To build for the GPU, the cuda...
- SubtractOperation allows subtraction between two tensors and enables gradient to flow through the subtraction - AverageOperation allows taking the average of a vector of tensors and enables gradient to...
This issue tracks the development of v0.1 of the nd array support for this project. Currently we will support the following things: 1. Creation of Nd shape array 2. Arithmetic...
Lot of times we are constructing objects on the heap and not explicitly deleting them. This leads to a ton of memory leaks. We need to debug this and solve...
This issue tracks the development of the batch normalisation layer.
When we try to overload operations such that complex operations can be done in a single expression. Something like ```c++ Tensor = a; Tensor = b; Tensor = c; Tensor...