Skip to content
Snippets Groups Projects
Select Git revision
  • correlation
  • master default protected
  • 24-non-negative-omp
  • 15-integration-sota
  • 20-coherence-des-arbres-de-predictions
  • 19-add-some-tests
  • 13-visualization
  • 17-adding-new-datasets
  • 12-experiment-pipeline
  • 14-correction-of-multiclass-classif
  • archive/10-gridsearching-of-the-base-forest
  • archive/farah_notation_and_related_work
  • archive/wip_clean_scripts
  • archive/4-implement-omp_forest_classifier
  • archive/5-add-plots-2
  • archive/Leo_Add_first_notebook
16 results

reports

  • Clone with SSH
  • Clone with HTTPS
  • License: GPL v3 Build Status Coverage Report

    Supervised MultiModal Integration Tool's Readme

    This project aims to be an easy-to-use solution to run a prior benchmark on a dataset and evaluate mono- & multi-view algorithms capacity to classify it correctly.

    Getting Started

    Prerequisites (will be automatically installed)

    To be able to use this project, you'll need :

    And the following python modules :

    • numpy, scipy,
    • matplotlib - Used to plot results,
    • sklearn - Used for the monoview classifiers,
    • joblib - Used to compute on multiple threads,
    • h5py - Used to generate HDF5 datasets on hard drive and use them to spare RAM,
    • pickle - Used to store some results,
    • pandas - Used to manipulate data efficiently,
    • six -
    • m2r - Used to generate documentation from the readme,
    • docutils - Used to generate documentation,
    • pyyaml - Used to read the config files,
    • plotly - Used to generate interactive HTML visuals,
    • tabulate - Used to generated the confusion matrix.

    Installing

    Once you cloned the project from the gitlab repository, you just have to use :

    cd path/to/summit/
    pip install -e .

    In the summit directory to install SuMMIT and its dependencies.

    Running on simulated data

    In order to run it you'll need to try on simulated data with the command

    from multiview_platform.execute import execute
    execute("example 1")

    This will run the first example.

    For more information about the examples, see the documentation. Results will be stored in the results directory of the installation path : path/to/summit/multiview_platform/examples/results.

    The documentation proposes a detailed interpretation of the results through 6 tutorials.

    Discovering the arguments

    All the arguments of the platform are stored in a YAML config file. Some config files are given as examples. The file stored in summit/config_files/config.yml is documented and it is highly recommended to read it carefully before playing around with the parameters.

    You can create your own configuration file. In order to run the platform with it, run :

    from multiview_platform.execute import execute
    execute(config_path="/absolute/path/to/your/config/file")

    For further information about classifier-specific arguments, see the documentation.

    Dataset compatibility

    In order to start a benchmark on your own dataset, you need to format it so SuMMIT can use it. To do so, a python script is provided.

    For more information, see Example 6

    Running on your dataset

    Once you have formatted your dataset, to run SuMMIT on it you need to modify the config file as

    name: ["your_file_name"]
    *
    pathf: "path/to/your/dataset"

    This will run a full benchmark on your dataset using all available views and labels.

    It is highly recommended to follow the documentation's tutorials to learn the use of each parameter.

    Author

    • Baptiste BAUVIN
    • Dominique BENIELLI
    • Alexis PROD'HOMME