Python package collecting commonly used snippets for the Keras library.
Project description
Python package collecting commonly used snippets for the Keras library.
How do I install this package?
As usual, just download it using pip:
pip install extra_keras_utils
Tests Coverage
Since some software handling coverages sometime get slightly different results, here’s three of them:
is_gpu_available
Method that returns a boolean if a GPU is detected or not.
from extra_keras_utils import is_gpu_available
if is_gpu_available():
print("Using gpu!")
is_multi_gpu
Method that returns a boolean if more than one GPU is detected.
from extra_keras_utils import is_multi_gpu
if is_multi_gpu():
print("More than one GPU is available!")
set_seed
Method to get reproducible results.
from extra_keras_utils import set_seed
set_seed(42) # set as seed 42, the results are nearly reproducible.
set_seed(42, kill_parallelism=true) # set as seed 42, the results are fully reproducible.
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
File details
Details for the file extra_keras_utils-1.0.4.tar.gz
.
File metadata
- Download URL: extra_keras_utils-1.0.4.tar.gz
- Upload date:
- Size: 3.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 31bb6d51aca22cd36fe3b421f1181087b7969ba3a64f73df0e72b30447785d07 |
|
MD5 | f485d13d494bbcfa95f3fab4a77658f5 |
|
BLAKE2b-256 | 77c5862ac6cbe995048d88f04460018f6320cdae601f1a7721db45aea9ffd5bc |