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

# Resuming Experiments

## **Why You Might Want to do This:**

* If your job failed, but had checkpoint progress you want to make use of
* If your job is still going/succeeded, but you want to launch a new job using one of its checkpoints

## Steps to Resume

#### A →  Retrieving your latest checkpoint

1. Click the green "Outputs" for the experiment you'd like to resume from.

&#x20;

<figure><img src="https://1083547380-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FW2SJsSTRiu49SGdYo54w%2Fuploads%2FYpOtLEBEkoVIUtpEomgm%2Fimage.png?alt=media&amp;token=04052e59-25ae-4bb5-ae73-3ecefdd7818d" alt="" width="375"><figcaption></figcaption></figure>

2. Find the line which says "checkpoints".

   <figure><img src="https://1083547380-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FW2SJsSTRiu49SGdYo54w%2Fuploads%2FfFaLNKeMQGAILNSprHot%2Fimage.png?alt=media&amp;token=281d9d23-f7df-4df9-a199-92892f49b447" alt="" width="188"><figcaption></figcaption></figure>
3. Click the "Sync to Workstation" button on the far right side of that line.

   <figure><img src="https://1083547380-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FW2SJsSTRiu49SGdYo54w%2Fuploads%2FwKmIQ2K21YWz1Kx4uNC0%2Fimage.png?alt=media&amp;token=e79fe026-8970-4872-8956-d9b1d6f93887" alt=""><figcaption></figcaption></figure>
4. Wait for notification in the bottom right to change to "Syncing Complete!".

<figure><img src="https://1083547380-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FW2SJsSTRiu49SGdYo54w%2Fuploads%2FhMFQhZxBQWDsHwJ6cJlD%2Fimage.png?alt=media&amp;token=44d17d19-7c3f-4eb0-80d9-2d9a8de36e59" alt=""><figcaption></figcaption></figure>

#### B → Add to ISC file and relaunch!

* **Resume Training**:
  * Retrieve the artifact ID for the checkpoint from the UI.
  * Pass the ID into the ISC file using the argument: `input_artifact_id_list`.

Example ISC file:

```yaml
isc_project_id = "sameAsBefore"
... existing details (replace this line with the rest of your ISC file)
input_artifact_id_list = [ "ID_OF_CHECKPOINT_ARTIFACT_IN_UI" ]
```

Relaunch experiment and your experiment should resume! 🎉


---

# 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.strongcompute.com/basic-concepts/resuming-experiments.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.
