I hereby claim:
- I am aboucaud on github.
- I am aboucaud (https://keybase.io/aboucaud) on keybase.
- I have a public key whose fingerprint is EDD1 74D9 AC29 33A9 0778 84D8 80EF DA9F C744 ED5C
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
# !/usr/bin/python | |
# -*- coding: utf-8 -*- | |
# ----------------------------------------------------------------------------------------------- | |
# Original script from @anokas: https://www.kaggle.com/anokas/py3-image-downloader-w-progress-bar | |
# ----------------------------------------------------------------------------------------------- | |
# Note: requires the tqdm package (pip install tqdm) | |
# Note to Kagglers: This script will not run directly in Kaggle kernels. You |
#!/bin/bash | |
# | |
# Setup a RAMP backend architecture for a given RAMP project | |
set -e | |
# Script help | |
usage() | |
{ | |
echo " |
from keras import backend as K | |
num_cores = 4 | |
num_GPU = 1 | |
num_CPU = 1 | |
config = K.tf.ConfigProto( | |
intra_op_parallelism_threads=num_cores, | |
inter_op_parallelism_threads=num_cores, | |
allow_soft_placement=True, |