# Experimental Scene

This new scene type applies the same [new design](/medomics-docs/tutorials/development/learning-module.md#a-new-design-is-here) discussed earlier, but reduces the nodes available while maintaining full experimental capabilities:

* [**Dataset node**](/medomics-docs/tutorials/development/learning-module/initialization.md#dataset-node-your-experiments-starting-point) (previously discussed in Initialization).
* [**Clean node**](/medomics-docs/tutorials/development/learning-module/initialization.md#clean-node-tidy-and-transform-your-data) (previously discussed in Initialization).
* **Compare models node**: Train and evaluate the performance of all estimators available in the [model library](https://pycaret.gitbook.io/docs/get-started/functions/train#model-library).

<figure><img src="/files/23jndesiwWqulZewWzgT" alt=""><figcaption><p>Key differences between the Main and the Experimental scene</p></figcaption></figure>

This setup provides a dedicated testing environment for machine learning experiments, allowing users to evaluate and select the optimal algorithm for their task while having initial performance estimates that can be leveraged to guide the main experiments, as illustrated in the new machine learning workflow.

<figure><img src="/files/KZK30f7MgTXQuhbGWQzj" alt=""><figcaption></figcaption></figure>

### Compare Models Node:

Only available in Experimental Mode and used in the Training Box, the Compare Models node lets you efficiently train and evaluate multiple machine learning estimators simultaneously, making it easy to identify the best performer for your task. While offering numerous configuration options for advanced users, the node requires no mandatory settings, and you can start comparing different machine learning algorithms immediately after connecting the node.

Note that the Compare Models node is based on [PyCaret's function *`compare_models()`*](https://pycaret.readthedocs.io/en/stable/api/classification.html#pycaret.classification.compare_models).

<figure><img src="/files/MPuR9S9ZoauCg8bXFZi8" alt=""><figcaption><p>Compare Models Node</p></figcaption></figure>

The results of the Compare Models node contain the complete set of performance metrics for all the machine learning algorithms tested:

<figure><img src="/files/NLFsinSuguJxLxDVpkt9" alt=""><figcaption><p>Example of Compare Models node results</p></figcaption></figure>

{% hint style="danger" %}
Note that in Experimental mode, the models are trained and tested using a single iteration, resulting in a low bias but a high variance (uncertainty).
{% endhint %}

The final section outlines key practices to avoid for optimal performance and reliable execution within the learning module.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://medomicslab.gitbook.io/medomics-docs/tutorials/development/learning-module/experimental-scene.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
