> For the complete documentation index, see [llms.txt](https://docs.valohai.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.valohai.com/executions/steps.md).

# Steps

A **step** is a reusable blueprint that defines a specific ML workload in your project. Think of it as a template that describes what should happen when you want to run a particular job.

When you actually run a step, you create an **execution,** a versioned snapshot of that step run with specific inputs and parameters.

> 💡 *One step can generate thousands of executions. Each execution is version-controlled and reproducible.*

## Why steps matter

Steps give you reproducible, scalable ML workflows. Instead of manually running scripts with different parameters each time, you define the work once and run it as many times as needed.

Common step types include:

* Data preprocessing and feature engineering
* Model training with hyperparameter sweeps
* Model validation and testing
* Batch inference and predictions
* Model deployment to staging/production

## Step vs. Execution

| **Step**                  | **Execution**                             |
| ------------------------- | ----------------------------------------- |
| Blueprint/template        | Versioned snapshot of the step being run  |
| Defined in `valohai.yaml` | Created when you run a step               |
| Reusable                  | Specific run with exact inputs/parameters |
| Static definition         | Has logs, outputs, duration, and lineage  |

## Anatomy of a step

Steps are defined in your project's `valohai.yaml` file and specify:

* **Docker image** — the environment your code runs in
* **Commands** — what gets executed
* **Inputs** — data files your step needs
* **Parameters** — configurable values (learning rate, epochs, etc.)
* **Environment** — compute requirements

## Example: Simple training pipeline

```yaml
---
- step:
    name: preprocess-dataset
    image: python:3.14
    command:
      - pip install numpy valohai-utils
      - python ./preprocess_dataset.py
    inputs:
      - name: dataset
        default: https://valohaidemo.blob.core.windows.net/mnist/mnist.npz

- step:
    name: train-model
    image: tensorflow/tensorflow:2.6.0
    command:
      - pip install valohai-utils
      - python ./train_model.py {parameters}
    parameters:
      - name: epochs
        default: 5
        type: integer
      - name: learning_rate
        default: 0.001
        type: float
    inputs:
      - name: dataset
        default: https://valohaidemo.blob.core.windows.net/mnist/preprocessed_mnist.npz

- step:
    name: evaluate-model
    image: tensorflow/tensorflow:2.6.0
    command:
      - pip install valohai-utils scikit-learn
      - python ./evaluate_model.py
    inputs:
      - name: model
      - name: test_data
```

## Pipeline examples

For production workflows, you might chain steps together:

**Data Pipeline**: `fetch-data` → `clean-data` → `feature-engineering`

**Training Pipeline**: `train-model` → `validate-model` → `register-model`

**Deployment Pipeline**: `build-inference-service` → `deploy-staging` → `deploy-production`

Each step runs independently but can use outputs from previous steps as inputs.

## Next steps

Ready to create your first step? Check out:

* [Quickstart: Run your first job](/getting-started/quickstart.md) — hands-on tutorial for beginners
* [Pipeline quickstart](/pipelines.md) — connect multiple steps together
* [valohai.yaml reference](/valohai-yaml.md) — complete configuration options


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://docs.valohai.com/executions/steps.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
