Skip to content

Commit

Permalink
Update results.html
Browse files Browse the repository at this point in the history
  • Loading branch information
khaledmdiab authored Aug 5, 2020
1 parent 87d8545 commit 4f11d50
Showing 1 changed file with 37 additions and 12 deletions.
49 changes: 37 additions & 12 deletions results.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,19 @@
search_exclude: true
---

<h1>Reproducing Results</h1>


Instructions for running the experiment.
<div class="intro">
<div class="container">
<div class="row">
<div class="col-12">
<h1>Reproducing Results</h1>
</div>
</div>
</div>
</div>

<div class="container pb-6">
<div class="row">
Please follow these instructions to reproduce the results.

1. Download and uncompress the dataset:

Expand All @@ -18,8 +27,10 @@ <h1>Reproducing Results</h1>
Full Dataset:
https://sfuca0-my.sharepoint.com/:u:/g/personal/carlosl_sfu_ca/ES9DrdXF0iBMoYTxJ_rnlisBtigvdK96coQFILf5tcU23Q?e=f4hkwt

The paper dataset contains the input and output of the experiment, while the full dataset contains only the input of the experiment. The paper dataset is a representative sample of the full dataset, in which we set the parameters that we wish to observe while the other parameters vary.
The paper dataset contains the inputs and outputs of the experiments mentioned in the paper, while the full dataset contains only the inputs of all the experiments.
Notice that the paper dataset is a representative sample of the full dataset.

<!--
For the experiment where we wish to observe the effect of the number of sessions, the dataset is set in the following:
Number of sessions: [1000, 1500, 2000, 3000, 4000]
Expand Down Expand Up @@ -71,7 +82,8 @@ <h1>Reproducing Results</h1>
Order Type: 1 (partial)
Receivers Percentage: random([(0.1, .1), (0.2, .2), (0.3, .3), (0.4, .4)])
Bandwidth demand : random([(2000000, .21), (7200000, .57), (18000000, .22)])

-->

Paper dataset file structure:
-paper_dataset_input_output
|-paper_dataset
Expand All @@ -85,12 +97,25 @@ <h1>Reproducing Results</h1>
2. For convenience, we set up an Oktopus docker to run the experiment

Get the docker:
docker pull charlee593/oktopus

<pre>
<code>
docker pull charlee593/oktopus
</pre>
</code>

To run the paper dataset:
docker run --rm -it -v="$PWD:/home" okevaluation run_sfc -o paper_dataset_input_output/paper_dataset --topology=paper_dataset_input_output/topology_zoo/

<pre>
<code>
docker run --rm -it -v="$PWD:/home" okevaluation run_sfc -o paper_dataset_input_output/paper_dataset --topology=paper_dataset_input_output/topology_zoo/
</code>
</pre>

To run the full dataset:
docker run --rm -it -v="$PWD:/home" okevaluation run_sfc -o full_dataset_input/full_dataset --topology=full_dataset_input/topology_zoo/

<pre>
<code>
docker run --rm -it -v="$PWD:/home" okevaluation run_sfc -o full_dataset_input/full_dataset --topology=full_dataset_input/topology_zoo/
</code>
</pre>
</div>
</div>

0 comments on commit 4f11d50

Please sign in to comment.