diff --git a/conda/meta.yaml b/conda/meta.yaml
index bc094a41176f95f370cc84c5059bb57de6d813ad..3a12db9ce5b2cff4a44017c1afe4740413fa89fb 100644
--- a/conda/meta.yaml
+++ b/conda/meta.yaml
@@ -58,13 +58,9 @@ test:
     - bob binseg config copy --help
     - bob binseg config copy drive /tmp/test.py
     - bob binseg train --help
-    - bob binseg evaluate --help
     - bob binseg predict --help
+    - bob binseg evaluate --help
     - bob binseg compare --help
-    - bob binseg evalpred --help
-    - bob binseg gridtable --help
-    - bob binseg transformfolder --help
-    - bob binseg visualize --help
     - nosetests --with-coverage --cover-package={{ name }} -sv {{ name }}
     - sphinx-build -aEW {{ project_dir }}/doc {{ project_dir }}/sphinx
     - sphinx-build -aEb doctest {{ project_dir }}/doc sphinx
diff --git a/doc/api.rst b/doc/api.rst
index f90f6af99d64cce705fc2cac4ba7121e94f80f3e..500e6a6459d457155d908ceec91b8e3ac44c756b 100644
--- a/doc/api.rst
+++ b/doc/api.rst
@@ -67,14 +67,11 @@ Toolbox
 
    bob.ip.binseg.utils
    bob.ip.binseg.utils.checkpointer
-   bob.ip.binseg.utils.click
    bob.ip.binseg.utils.metric
    bob.ip.binseg.utils.model_serialization
    bob.ip.binseg.utils.model_zoo
    bob.ip.binseg.utils.plot
-   bob.ip.binseg.utils.rsttable
    bob.ip.binseg.utils.summary
-   bob.ip.binseg.utils.transformfolder
 
 
 .. _bob.ip.binseg.configs:
diff --git a/doc/plotting.rst b/doc/plotting.rst
deleted file mode 100644
index f05ee42d12572211ffe4037a1c7d706283042a63..0000000000000000000000000000000000000000
--- a/doc/plotting.rst
+++ /dev/null
@@ -1,20 +0,0 @@
-.. -*- coding: utf-8 -*-
-.. _bob.ip.binseg.plotting:
-
-========
-Plotting
-========
-
-Precision vs recall curves for each evaluation run are generated by default and
-stored in the ``results`` subfolder of the model output directory.
-
-To generate a comparison chart of various models use the ``compare`` command
-and pass as arguments the output paths of the models you would like to plot.
-
-E.g.:
-
-.. code-block:: bash
-
-    bob binseg compare -o myoutput -l myoutput/DRIVE/M2U-Net myoutput/DRIVE/U-Net myoutput/DRIVE/HED -t MyPlotTitle
-
-Use ``bob binseg compare --help`` for more information.