A neural network library built on top of TensorFlow for quickly building deep learning models.
Project description
A neural network library built on top of TensorFlow for quickly building deep learning models.
Installation
pip install nn
Example
import nn
# Create the model
@nn.model
def model(inputs):
# Define the network architecture (layers, number of units, activations)
hidden = nn.Dense(units=64, activation='relu')(inputs)
outputs = nn.Dense(units=10)(hidden)
# Configure the learning process (loss, optimizer, evaluation metrics)
return dict(outputs=outputs,
loss='softmax_cross_entropy',
optimizer=('GradientDescent', 0.001),
metrics=['accuracy'])
# Train the model using training data:
model.train(x_train, y_train, epochs=30, batch_size=128)
# Evaluate the model performance on test or validation data:
loss_and_metrics = model.evaluate(x_test, y_test)
# Use the model to make predictions for new data:
predictions = model.predict(x)
Documentation
See documentation.
License
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
nn-0.0.9.tar.gz
(7.5 kB
view details)
File details
Details for the file nn-0.0.9.tar.gz
.
File metadata
- Download URL: nn-0.0.9.tar.gz
- Upload date:
- Size: 7.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7015e4171074bc97649708738429fcde9e1ba63855478a96993d01c58745a820 |
|
MD5 | c36d86a568cd406dae2551470c7da860 |
|
BLAKE2b-256 | 325b4ff7a1bdc8e30e260c4dd44343275c50497b9db9fd96100fef1b7ca8a2b6 |