
Security News
Safari 18.4 Ships 3 New JavaScript Features from the TC39 Pipeline
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.
A tool for visualizing the structure and performance of Random Forests (and other ensemble methods based on decision trees).
RFVis offers a Command Line API and a Python API which works on a sklearn.ensemble.RandomForestClassifier.
Install and update RFVis via pip:
$ pip install rfvis
This will allow you interactively visualize a fitted Random Forest (RF) in your browser. To directly generate SVG files from your model you also need to install Node.js, see Command Line Interface for more information.
RFVis offers a command line tool to either generate SVG files directly from
your input data (rfvis cli <data>
) or to spin up a web-based GUI for a more
interactive analysis (rfvis gui <data>
).
To see all available commands run:
$ rfvis --help
Usage: rfvis [OPTIONS] COMMAND [ARGS]...
A tool for visualizing the structure and performance of Random Forests
Options:
--version Show the version and exit.
--help Show this message and exit.
Commands:
cli Command line interface to generate SVGs.
gui Web-based graphical user interface.
To interactively analyze your forest with the web-based GUI run:
$ rfvis gui /path/to/data
* Running on http://127.0.0.1:8080/ (Press CTRL+C to quit)
You can now open up your browser at http://localhost:8080 to see something like this:
To use the Command Line Interface (CLI) you need to have Node.js v8+ installed on your system. This is a technical limitation due to the fact that the rendering is written in Javascript. You do not need to install any other package though, the CLI integrates into the command line tool you already installed via pip:
$ rfvis cli /path/to/data
>> Exported "/dev/random-forest-visualization/tree-0.svg"
>> Exported "/dev/random-forest-visualization/tree-1.svg"
>> Exported "/dev/random-forest-visualization/tree-2.svg"
>> Exported "/dev/random-forest-visualization/tree-3.svg"
...
Get a full list of available options with --help
:
$ rfvis cli --help
Usage: rfvis cli [OPTIONS] FOREST_JSON
Web-based graphical user interface.
As Python is unable to render React components, we make a subprocess call to a small
Node.js application which will do the rendering and also store the created SVG
files. This command requires that Node.js is installed on your system!
FOREST_JSON: Path to the JSON file that contains the forest's data.
Options:
-o, --out PATH Output path of the SVG files. [default: (current
working directory)]
-w, --width INTEGER Width of the SVG. [default: 800]
-h, --height INTEGER Height of the SVG. [default: 800]
--trunk-length INTEGER Length of the trunk which influences the overall tree
size. [default: 100]
--display-depth INTEGER Maximum depth of the tree rendering. Cut of leaves are
visualized as pie chart consolidation nodes.
--branch-color [Impurity] Coloring of the branches. [default: Impurity]
--leaf-color [Impurity|Best Class]
Coloring of the leaves. [default: Impurity]
--help Show this message and exit.
The data for the Command Line API must be available on your filesystem as a JSON file for the forest and additionally one CSV file per tree. Both data formats will be extended with properties in the future, this is just the minimal set.
You can find a working example under examples/PolSAR
.
The main forest.json
holds all information about the ensemble model:
NxN
where N
is the number of trees.
This will be used to compute the forest map.For each tree specified in the forest.json
RFVis expects a CSV file where one
entry represents one node in the tree. An entry has the following format:
0
)0
-1
)forest.classes
.RFVis also offers a Python API which works directly on a scikit-learn RandomForestClassifier.
You can find a working example under examples/scikit_learn.py
.
The function rfvis.gui()
visualizes a fitted RandomForestClassifier in a web based graphical user interface.
The server runs in a separate process and is available at http://localhost:<port>
.
gui(model, data=None, target=None, name=None, class_names=None, class_colors=None, port=8080)
Args:
Returns:
The repository contains a Pipfile
for conveniently creating a virtualenv
for development. Just install pipenv
and run:
$ pipenv install
You can now e.g. start the server on the default port 8080 via:
$ pipenv run rfvis gui <path_to_forest_json>
Note that you need to build the frontend bundle first before you can
actually see the application working on http://localhost:8080
.
To build the frontend you need Node.js installed. First install all
dev-dependencies by running the following
from within the ./rfvis/client
directory:
$ npm install
Now you can build a production-ready bundle via:
$ npm run build
If you have the Python server running you should now be able to see the
application at http://localhost:8080
.
For developing on the frontend more conveniently run:
$ npm start
To start a development server with hot reloading at http://localhost:3000
.
If you are using RFVis in your research, please cite the following paper:
FAQs
A tool for visualizing the structure and performance of Random Forests
We found that rfvis demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.
Research
Security News
The Socket Research Team investigates a malicious Python package that enables automated credit card fraud on WooCommerce stores by abusing real checkout and payment flows.
Security News
Python has adopted a standardized lock file format to improve reproducibility, security, and tool interoperability across the packaging ecosystem.