To use this website optimally, you will need to upgrade your browser.

For more information, visit: browsehappy.com

Knowledge Base

Your A-Z guide of simple, bite-sized explainers to help you understand all about quantum 

In the experiment, you have the option to adjust the values ​​of the inputs of the application for which you are creating the experiment. To create an experiment, use the following command:

qne experiment create EXPERIMENT_NAME APPLICATION_NAME NETWORK_NAME

Arguments:
EXPERIMENT_NAME Name of the experiment. [required]
APPLICATION_NAME Name of the application. [required]
NETWORK_NAME Name of the network to be used. [required] (network_information)

Assuming your application name is 'teleport', this could be an example of what this command can look like:

qne experiment create teleport_experiment teleport randstad

Note: This command can be executed anywhere on your computer. You don't have to create it in your application directory.

After executing this command, a directory is generated named after your experiment name. Within this directory, an experiment.json file is created along with an input directory. This input directory contains all the JSON together with the application source files, copied over from your application directory. Now you should have the following experiment directory structure:

teleport_experiment
| -- input
| | -- app_receiver.py
| | -- app_sender.py
| | -- application.json
| | -- network.json
| | -- result.json
|
| -- experiment.json

Since the input directory is a direct copy from your application directory, you don't have to change anything in here. The experiment.json is where the action takes place. So now that the creation of your experiment structure is ready, you can start to configure your experiment.