Skip to content
Snippets Groups Projects
Commit b8c5e863 authored by Baptiste Bauvin's avatar Baptiste Bauvin
Browse files

Added some doc on multiple arguments for monoview

parent 7e8222c6
Branches
Tags
No related merge requests found
......@@ -54,6 +54,22 @@ In order to see all the arguments of this script, their description and default
cd multiview-machine-learning-omis/multiview_platform
python Exec.py -h
```
The arguments can be passed through a file using `python Exec.py @<path_to_doc>`
The file must be formatted with one newline instead of each space :
Command line arguments `-debug --CL_type Monoview --CL_algos_monoview Adaboost SVM` will be formatted
```
-debug
--CL_type
Monoview
--CL_algos_monoview
Adaboost
SVM
```
Moreover, for Monoview algorithms (Multiview is still WIP), it is possible to pass multiple arguments instead of just one.
Thus, executing `python Exec.py --RF_trees 10 100 --RF_max_depth 3 4 --RF_criterion entropy` will result in the generation of several classifiers called
`RandomForest_10_3_entropy`, with 10 trees and a max depth of 3, `RandomForest_10_4_entropy`, with 10 tress and a max depth of 4, `RandomForest_100_3_entropy`, `RandomForest_100_4_entropy` to test all the passed arguments combinations.
### Understanding `Results/` architecture
......
......@@ -47,7 +47,7 @@ extensions = ['sphinx.ext.autodoc',
'sphinx.ext.viewcode',
'sphinx.ext.githubpages',
'sphinx.ext.napoleon',
'recommonmark']
'm2r',]
# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']
......
.. MultiviewPlatform documentation master file, created by
MultiviewPlatform documentation master file, created by
sphinx-quickstart on Mon Jan 29 17:13:09 2018.
You can adapt this file completely to your liking, but it should at least
contain the root `toctree` directive.
......@@ -14,7 +14,7 @@ The main advantage of the platform is that it allows to add and remove a classif
:maxdepth: 3
:caption: Contents:
readme
readme_link
api
.. examples
......
Read me
=======
.. toctree::
:maxdepth: 1
../../README.md
\ No newline at end of file
Readme
======
.. mdinclude:: ../../README.md
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment