Skip to content

Instantly share code, notes, and snippets.

View WillArevalo's full-sized avatar

William Arevalo WillArevalo

View GitHub Profile
@WillArevalo
WillArevalo / Combinations kernels
Created May 28, 2019 13:18
Combinations kernels
#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:
@WillArevalo
WillArevalo / cuckoo_setup2018.sh
Last active November 17, 2018 11:49
Cuckoo complete setup 2018
#!/bin/bash
# Last update: 4/04/2018
#
# ***********************************************************
#
# Functions definition
#
# ***********************************************************
# Function to print N blank lines
@WillArevalo
WillArevalo / cuckoo_setup.sh
Last active March 25, 2018 21:12 — forked from NeaSTDL/cuckoo_setup.sh
Cuckoo Sandbox Installation Script [Ubuntu 16.04.1] [v0.3]
#!/bin/bash
# ***********************************************************
#
# Functions definition
#
# ***********************************************************
# Function to print N blank lines
function print_blanks {
for (( c=1; c<=$1; c++ ))