Skip to content

Commit

Permalink
deploy: b5618d2
Browse files Browse the repository at this point in the history
  • Loading branch information
idocx committed Oct 8, 2024
1 parent 4f0264a commit 5055675
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions _sources/submit_experiments.md
Original file line number Diff line number Diff line change
Expand Up @@ -214,12 +214,12 @@ The format of the status is as follows:
```

### Get the results
Once the experiment is completed, you can get the results of the experiment using the `get_experiment_results` method.
Once the experiment is completed, you can get the results of the experiment using the `get_experiment_result` method.

```python
from alab_management import get_experiment_results
from alab_management import get_experiment_result

results = get_experiment_results(exp_id)
results = get_experiment_result(exp_id)
```

The format of the results is as follows. If the experiment has not been completed, it
Expand Down
6 changes: 3 additions & 3 deletions submit_experiments.html
Original file line number Diff line number Diff line change
Expand Up @@ -631,10 +631,10 @@ <h4>Check the status via API<a class="headerlink" href="#check-the-status-via-ap
</section>
<section id="get-the-results">
<h3>Get the results<a class="headerlink" href="#get-the-results" title="Link to this heading">#</a></h3>
<p>Once the experiment is completed, you can get the results of the experiment using the <code class="docutils literal notranslate"><span class="pre">get_experiment_results</span></code> method.</p>
<div class="highlight-python notranslate"><div class="highlight"><pre><span></span><span class="kn">from</span> <span class="nn">alab_management</span> <span class="kn">import</span> <span class="n">get_experiment_results</span>
<p>Once the experiment is completed, you can get the results of the experiment using the <code class="docutils literal notranslate"><span class="pre">get_experiment_result</span></code> method.</p>
<div class="highlight-python notranslate"><div class="highlight"><pre><span></span><span class="kn">from</span> <span class="nn">alab_management</span> <span class="kn">import</span> <span class="n">get_experiment_result</span>

<span class="n">results</span> <span class="o">=</span> <span class="n">get_experiment_results</span><span class="p">(</span><span class="n">exp_id</span><span class="p">)</span>
<span class="n">results</span> <span class="o">=</span> <span class="n">get_experiment_result</span><span class="p">(</span><span class="n">exp_id</span><span class="p">)</span>
</pre></div>
</div>
<p>The format of the results is as follows. If the experiment has not been completed, it
Expand Down

0 comments on commit 5055675

Please sign in to comment.