Keras deep learning model implementations
Project description
# DeepModels
Implementations of various deep learning models using Keras.
## Requirements
An existing installation of either Tensorflow or Theano.
## Installation
```
pip install deep-models
```
## Usage
The models are implemented using Keras and instantiation returns a Keras Model object unless otherwise noted.
### Wide Residual Network
```python3
from deep_models import wide_residual_network as wrn
# Load your data
trainX = ...
trainY = ...
img_shape = (32, 32, 3)
# Create the model
# k is the width, 6 * n + 4 is the depth
model = wrn.build_model(img_shape, classes=10, n=4, k=10, dropout=0.3)
# Train the model
model.compile(loss="categorical_crossentropy", optimizer="adam", metrics=["acc"])
model.fit(
trainX, trainY,
batch_size=128,
epochs=100,
validation_split=0.2)
```
## Examples
Some working examples are available in the notebooks directory.
## License
See LICENSE file
Implementations of various deep learning models using Keras.
## Requirements
An existing installation of either Tensorflow or Theano.
## Installation
```
pip install deep-models
```
## Usage
The models are implemented using Keras and instantiation returns a Keras Model object unless otherwise noted.
### Wide Residual Network
```python3
from deep_models import wide_residual_network as wrn
# Load your data
trainX = ...
trainY = ...
img_shape = (32, 32, 3)
# Create the model
# k is the width, 6 * n + 4 is the depth
model = wrn.build_model(img_shape, classes=10, n=4, k=10, dropout=0.3)
# Train the model
model.compile(loss="categorical_crossentropy", optimizer="adam", metrics=["acc"])
model.fit(
trainX, trainY,
batch_size=128,
epochs=100,
validation_split=0.2)
```
## Examples
Some working examples are available in the notebooks directory.
## License
See LICENSE file
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Deep-Models-0.1.1.tar.gz
(2.6 kB
view details)
File details
Details for the file Deep-Models-0.1.1.tar.gz.
File metadata
- Download URL: Deep-Models-0.1.1.tar.gz
- Upload date:
- Size: 2.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
19b396265617f3b5391534376f9540ddb0a84c7e73a572d01cf0cbcd21689566
|
|
| MD5 |
75a76aa1909a73584436bab1c990c711
|
|
| BLAKE2b-256 |
e427d2d4e90e10bb14a14d74d5e5b5b1526c04210c90ab8b09a3f01272551b4b
|