Releases: rudyorre/TensorFaux
Releases · rudyorre/TensorFaux
Initial Release
New Features
- Models (
tensorfaux.models
)- Sequential model (
Sequential
)- Should always start with an
Input
layer
- Should always start with an
- Sequential model (
- Layers (
tensorfaux.layers
)- Input Layer (
Input
) - Dense Layer (
Dense
) - Softmax Layer (
Softmax
) - Activation Layer:
- Hyperbolic Tangent Function (
Tanh
) - Rectified Linear Unit (
ReLU
) - Sigmoid Function (
Sigmoid
) - Linear Function (
Linear
)
- Hyperbolic Tangent Function (
- Input Layer (
- Optimizers (
tensorfaux.optimizers
)- Gradient Descent (
GD
) - Stochastic Gradient Descent (
SGD
)- Variable
batch_size
- Momentum hasn't been implemented yet
- Variable
- Gradient Descent (