Mercurial > repos > bgruening > sklearn_pairwise_metrics
comparison keras_deep_learning.py @ 39:4ee54a853377 draft
"planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/sklearn commit 208a8d348e7c7a182cfbe1b6f17868146428a7e2"
| author | bgruening |
|---|---|
| date | Tue, 13 Apr 2021 21:23:33 +0000 |
| parents | 25c6949b930d |
| children | b92b5fe51845 |
comparison
equal
deleted
inserted
replaced
| 38:25c6949b930d | 39:4ee54a853377 |
|---|---|
| 1 import argparse | 1 import argparse |
| 2 import json | 2 import json |
| 3 import pickle | |
| 4 import warnings | |
| 5 from ast import literal_eval | |
| 6 | |
| 3 import keras | 7 import keras |
| 4 import pandas as pd | 8 import pandas as pd |
| 5 import pickle | |
| 6 import six | 9 import six |
| 7 import warnings | 10 from galaxy_ml.utils import get_search_params, SafeEval, try_get_attr |
| 8 | 11 from keras.models import Model, Sequential |
| 9 from ast import literal_eval | |
| 10 from keras.models import Sequential, Model | |
| 11 from galaxy_ml.utils import try_get_attr, get_search_params, SafeEval | |
| 12 | 12 |
| 13 | 13 |
| 14 safe_eval = SafeEval() | 14 safe_eval = SafeEval() |
| 15 | 15 |
| 16 | 16 |
