Mercurial > repos > bgruening > sklearn_fitted_model_eval
comparison fitted_model_eval.xml @ 5:981c7b89af13 draft
"planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/sklearn commit 208a8d348e7c7a182cfbe1b6f17868146428a7e2"
author | bgruening |
---|---|
date | Tue, 13 Apr 2021 20:39:43 +0000 |
parents | 4fc9e02801f9 |
children | ed5472c523fa |
comparison
equal
deleted
inserted
replaced
4:7e0e2c85eba7 | 5:981c7b89af13 |
---|---|
1 <tool id="sklearn_fitted_model_eval" name="Evaluate a Fitted Model" version="@VERSION@"> | 1 <tool id="sklearn_fitted_model_eval" name="Evaluate a Fitted Model" version="@VERSION@" profile="20.05"> |
2 <description>using a new batch of labeled data</description> | 2 <description>using a new batch of labeled data</description> |
3 <macros> | 3 <macros> |
4 <import>main_macros.xml</import> | 4 <import>main_macros.xml</import> |
5 <import>keras_macros.xml</import> | 5 <import>keras_macros.xml</import> |
6 </macros> | 6 </macros> |
7 <expand macro="python_requirements"/> | 7 <expand macro="python_requirements" /> |
8 <expand macro="macro_stdio"/> | 8 <expand macro="macro_stdio" /> |
9 <version_command>echo "@VERSION@"</version_command> | 9 <version_command>echo "@VERSION@"</version_command> |
10 <command> | 10 <command> |
11 <![CDATA[ | 11 <![CDATA[ |
12 export HDF5_USE_FILE_LOCKING='FALSE'; | 12 export HDF5_USE_FILE_LOCKING='FALSE'; |
13 python '$__tool_directory__/fitted_model_eval.py' | 13 python '$__tool_directory__/fitted_model_eval.py' |
21 </command> | 21 </command> |
22 <configfiles> | 22 <configfiles> |
23 <inputs name="inputs" /> | 23 <inputs name="inputs" /> |
24 </configfiles> | 24 </configfiles> |
25 <inputs> | 25 <inputs> |
26 <param name="infile_estimator" type="data" format="zip" label="Choose the dataset containing pipeline/estimator object"/> | 26 <param name="infile_estimator" type="data" format="zip" label="Choose the dataset containing pipeline/estimator object" /> |
27 <param name="infile_weights" type="data" format="h5" optional="true" label="Choose the dataset containing weights for the estimator above" help="Optional. For deep learning only."/> | 27 <param name="infile_weights" type="data" format="h5" optional="true" label="Choose the dataset containing weights for the estimator above" help="Optional. For deep learning only." /> |
28 <expand macro="scoring_selection"/> | 28 <expand macro="scoring_selection" /> |
29 <conditional name="input_options"> | 29 <conditional name="input_options"> |
30 <expand macro="data_input_options"/> | 30 <expand macro="data_input_options" /> |
31 <when value="tabular"> | 31 <when value="tabular"> |
32 <expand macro="samples_tabular" label1="Dataset containing features:" multiple1="true" multiple2="false"/> | 32 <expand macro="samples_tabular" label1="Dataset containing features:" multiple1="true" multiple2="false" /> |
33 </when> | 33 </when> |
34 <when value="sparse"> | 34 <when value="sparse"> |
35 <expand macro="sparse_target"/> | 35 <expand macro="sparse_target" /> |
36 </when> | 36 </when> |
37 </conditional> | 37 </conditional> |
38 </inputs> | 38 </inputs> |
39 <outputs> | 39 <outputs> |
40 <data format="tabular" name="outfile_eval"/> | 40 <data format="tabular" name="outfile_eval" /> |
41 </outputs> | 41 </outputs> |
42 <tests> | 42 <tests> |
43 <test> | 43 <test> |
44 <param name="infile_estimator" value="searchCV01" ftype="zip"/> | 44 <param name="infile_estimator" value="searchCV01" ftype="zip" /> |
45 <conditional name="scoring"> | 45 <conditional name="scoring"> |
46 <param name="primary_scoring" value="r2"/> | 46 <param name="primary_scoring" value="r2" /> |
47 </conditional> | 47 </conditional> |
48 <param name="infile1" value="train_test_split_test01.tabular" ftype="tabular"/> | 48 <param name="infile1" value="train_test_split_test01.tabular" ftype="tabular" /> |
49 <param name="header1" value="true" /> | 49 <param name="header1" value="true" /> |
50 <param name="col1" value="1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17"/> | 50 <param name="col1" value="1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17" /> |
51 <param name="infile2" value="regression_y_split_test01.tabular" ftype="tabular"/> | 51 <param name="infile2" value="regression_y_split_test01.tabular" ftype="tabular" /> |
52 <param name="header2" value="true"/> | 52 <param name="header2" value="true" /> |
53 <param name="col2" value="1"/> | 53 <param name="col2" value="1" /> |
54 <output name="outfile_eval" file="fitted_model_eval01.tabular"/> | 54 <output name="outfile_eval" file="fitted_model_eval01.tabular" /> |
55 </test> | 55 </test> |
56 </tests> | 56 </tests> |
57 <help> | 57 <help> |
58 <![CDATA[ | 58 <![CDATA[ |
59 **What it does** | 59 **What it does** |
79 ======== ======== ========= | 79 ======== ======== ========= |
80 | 80 |
81 ]]> | 81 ]]> |
82 </help> | 82 </help> |
83 <expand macro="sklearn_citation"> | 83 <expand macro="sklearn_citation"> |
84 <expand macro="keras_citation"/> | 84 <expand macro="keras_citation" /> |
85 <expand macro="selene_citation"/> | 85 <expand macro="selene_citation" /> |
86 </expand> | 86 </expand> |
87 </tool> | 87 </tool> |