# Downloads

> Downloads - Understand how to use the Downloads tab to export models for transfer and download
> exportable charts.

This Markdown file sits beside the HTML page at the same path (with a `.md` suffix). It summarizes the topic and lists links for tools and LLM context.

Companion generated at `2026-04-24T16:03:56.750582+00:00` (UTC).

## Primary page

- [Downloads](https://docs.datarobot.com/en/docs/workbench/nxt-workbench/experiments/experiment-insights/downloads.html): Full documentation for this topic (HTML).

## Sections on this page

- [Download charts](https://docs.datarobot.com/en/docs/workbench/nxt-workbench/experiments/experiment-insights/downloads.html#download-charts): In-page section heading.
- [Download RuleFit code](https://docs.datarobot.com/en/docs/workbench/nxt-workbench/experiments/experiment-insights/downloads.html#download-rulefit-code): In-page section heading.
- [Download the MLOps package (Self-Managed)](https://docs.datarobot.com/en/docs/workbench/nxt-workbench/experiments/experiment-insights/downloads.html#download-the-mlops-package): In-page section heading.

## Related documentation

- [NextGen UI documentation](https://docs.datarobot.com/en/docs/workbench/index.html): Linked from this page.
- [Workbench](https://docs.datarobot.com/en/docs/workbench/nxt-workbench/index.html): Linked from this page.
- [Predictive experiments](https://docs.datarobot.com/en/docs/workbench/nxt-workbench/experiments/index.html): Linked from this page.
- [Evaluate models](https://docs.datarobot.com/en/docs/workbench/nxt-workbench/experiments/experiment-insights/index.html): Linked from this page.
- [Leaderboard](https://docs.datarobot.com/en/docs/classic-ui/predictions/port-pred/scoring-code/sc-download-leaderboard.html): Linked from this page.
- [deployment](https://docs.datarobot.com/en/docs/classic-ui/predictions/port-pred/scoring-code/sc-download-deployment.html): Linked from this page.
- [Export](https://docs.datarobot.com/en/docs/reference/pred-ai-ref/export-results.html): Linked from this page.
- [deprecated DataRobot Prime model](https://docs.datarobot.com/en/docs/classic-ui/predictions/port-pred/prime/index.html): Linked from this page.
- [model transfer](https://docs.datarobot.com/en/docs/classic-ui/mlops/deployment/registry/reg-transfer.html): Linked from this page.

## Documentation content

# Downloads

| Tab | Description |
| --- | --- |
| Artifacts | Allows you to download model artifacts—chart/graph PNGs and model data—in a single ZIP file. |

Use the Downloads tab to export experiment assets from DataRobot.

| Download option | Description |
| --- | --- |
| Charts | Download a ZIP archive containing charts, graphs, and data for the model. Charts and graphs are exported in PNG format; model data is exported in CSV format. |
| RuleFit code | For RuleFit models, download Python or Java Scoring Code. |
| MLOps package | For Self-Managed installations, download a package for DataRobot MLOps containing all the information needed to create a deployment. |

> [!NOTE] Note
> The Downloads tab previously contained Scoring Code for downloading. Scoring Code is now available from the [Leaderboard](https://docs.datarobot.com/en/docs/classic-ui/predictions/port-pred/scoring-code/sc-download-leaderboard.html) or a [deployment](https://docs.datarobot.com/en/docs/classic-ui/predictions/port-pred/scoring-code/sc-download-deployment.html). The artifacts available depend on your installation and which features are enabled.

## Download charts

In the Download Exportable Charts group box, you can click the Download link to download a single ZIP archive containing charts, graphs, and data for the model. Charts and graphs are exported in PNG format; model data is exported in CSV format. To save individual charts and graphs, use the [Export](https://docs.datarobot.com/en/docs/reference/pred-ai-ref/export-results.html) function.

> [!NOTE] Note
> If Feature Effects is computed, you can export the chart image for individual features. If you choose to export a ZIP file, you will get all of the chart images and the CSV files for partial dependence and predicted vs. actual data.

## Download RuleFit code

If the Leaderboard contains a RuleFit model (or a [deprecated DataRobot Prime model](https://docs.datarobot.com/en/docs/classic-ui/predictions/port-pred/prime/index.html)), in the Download RuleFit Code group box, select Python or Java, and then click Download to download the Scoring Code for the RuleFit model:

After you download the Python or Java code, you can run it locally. For more information, review the examples below:

**Python:**
Running the downloaded code with Python requires:

Python (Recommended: 3.7)
Numpy (Recommended: 1.16)
Pandas < 1.0 (Recommended: 0.23)

To make predictions with the downloaded model, run the exported Python script file using the following command:

```
python <prediction_file> --encoding=<encoding> <data_file> <output_file>
```

Placeholder
Description
prediction_file
Specifies the downloaded Python code version of the RuleFit model.
encoding
(Optional) Specifies the encoding of the dataset you are going to make predictions with. RuleFit defaults to UTF-8 if not otherwise specified. See the "Codecs" column of the
Python-supported standards chart
for possible alternative entries.
data_file
Specifies a .csv file (your dataset). The columns must correspond to the feature set used to generate the model.
output_file
Specifies the filename where DataRobot writes the results.

In the following example, `rulefit.py` is a Python script containing a RuleFit model trained on the following dataset:

```
race,gender,age,readmitted
Caucasian,Female,[50-60),0
Caucasian,Male,[50-60),0
Caucasian,Female,[80-90),1
```

The following command produces predictions for the data in `data.csv` and outputs the results to `results.csv`.

```
python rulefit.py data.csv results.csv
```

The file `data.csv` is a .csv file that looks like this:

```
race,gender,age
Hispanic,Male,[40-50)
Caucasian,Male,[80-90)
AfricanAmerican,Male,[60-70)
```

The results in `results.csv` look like this:

```
Index,Prediction
0,0.438665626555
1,0.611403738867
2,0.269324648106
```

**Java:**
To run the downloaded code with Java:

You must use the
JDK
for Java version 1.7.x or later.
Do not rename any of the classes in the file.
You must include the
Apache commons CSV library
version 1.1 or later to be able to run the code.
You must rename the exported code Java file to
Prediction.java
.

Compile the Java file using the following command:

```
javac -cp ./:./commons-csv-1.1.jar Prediction.java -d ./ -encoding 'UTF-8'
```

Execute the compiled Java class using the following command:

```
java -cp ./:./commons-csv-1.1.jar Prediction <data file> <output file>
```

Placeholder
Description
data_file
Specifies a .csv file (your dataset); columns must correspond to the feature set used to generate the RuleFit model.
output_file
Specifies the filename where DataRobot writes the results.

The following example generates predictions for `data.csv` and writes them to `results.csv`:

```
javac -cp ./:./commons-csv-1.1.jar Prediction.java -d ./ -encoding 'UTF-8'
java -cp ./:./commons-csv-1.1.jar Prediction data.csv results.csv
```

See the Python example for details on the format of input and output data.


## Download the MLOps package (Self-Managed)

If your organization's DataRobot installation is Self-Managed, in the MLOps Package group box, you can click Download to download a package for DataRobot MLOps containing all the information needed to create a deployment. To use the model in a separate DataRobot instance, download the model package and upload it to the Model Registry of your other instance.

Accessing the MLOps package directs you to the Deploy tab. From there, you can download your model as a model package file ( `MLPKG`). Once downloaded, you can use the model in a separate DataRobot instance by uploading it to the Model Registry of your other instance.

For full details, see the section on [model transfer](https://docs.datarobot.com/en/docs/classic-ui/mlops/deployment/registry/reg-transfer.html).

> [!NOTE] Availability information
> The DataRobot option for exportable models and independent prediction environments, which allows a user to export a model from a model building environment to a dedicated and isolated prediction environment, is not available for managed AI Platform deployments.
