This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Hago las listas | |
weigths_list = ['imagenet', None] | |
learnRate_list = [1e-2, 1e-4, 1e-6] | |
optimizer_list = ['Adam', 'Adagrad', 'Adadelta'] | |
lossFunc_list = ['kullback_leibler_divergence', 'binary_crossentropy', 'categorical_crossentropy'] | |
combinations = [] | |
for weigth in weigths_list: | |
for learn in learnRate_list: | |
for opt in optimizer_list: | |
for loss in lossFunc_list: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Last update: 4/04/2018 | |
# | |
# *********************************************************** | |
# | |
# Functions definition | |
# | |
# *********************************************************** | |
# Function to print N blank lines |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# *********************************************************** | |
# | |
# Functions definition | |
# | |
# *********************************************************** | |
# Function to print N blank lines | |
function print_blanks { | |
for (( c=1; c<=$1; c++ )) |