Your Optimization Tool for Scientific Experiments
Project description
YOTSE - Your Optimization Tool for Scientific Experiments
YOTSE is a powerful tool designed to enable computational experiments using any software, with a particular emphasis on NetSquid in the context of the Quantum Internet Alliance. This library offers a set of predefined functions for performing parameter explorations and optimizations in a scalable and efficient manner.
Table of Contents
Installation
To install this project, clone the repository. Make sure you have the necessary permissions.
git clone https://github.com/SURFQuantum/yotse.git
Once the repository is cloned, navigate to the project's root directory.
cd yotse
Install any necessary dependencies as per the project's documentation.
Usage
YOTSE is versatile, catering to a wide range of software. While it has a special focus on NetSquid, it is flexible enough to accommodate any software you wish to use for your computational experiments.
Our library offers predefined functions for parameter exploration and optimization. We base our tools on the QCG-Pilotjob project, a job manager executable both locally and in HPC centers. You can find more information about QCG-Pilotjob here.
The optimization component of YOTSE involves a base class that can be used with any external optimization library. This flexibility allows you to tailor your optimization process to your specific needs and preferences.
Detailed examples of usage will be provided in the /examples directory.
---
title: Workflow
---
flowchart LR
p("`user_pre
(Experiment)`")
a(analysis script)
s(user script)
c{{"`csv output
input params, cost
(Core)`"}}
S[[Best Solution]]
q["`QcgPilotJob
(Executor)`"]
G["`GenericOptimization
(Optimizer)`"]
p --> q -- schedules jobs of --> s --> c --> G -- generates new datapoints for --> q
G --> S
s -.-> a -.-> c
Current structure
---
title: Class diagram
---
flowchart TB
E["Executor"]
c["cost function"]
O["Optimizer"]
G["GenericOptimization"]
D[("database_from_csv")]
Ex["Experiment"]
E --> Ex --> O
E -- generates --> O -- contains --> G -- contains --> D
c -- replaced by --x D
D -- fitness fun in --> G
Contributing
We appreciate contributions. To contribute:
- Fork the project
- Create your feature branch (
git checkout -b feature/MyNewFeature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin feature/MyNewFeature
) - Execute
make verify
to check if your changes pass the required checks - Open a Pull Request
Testing
To run tests on the project, navigate to the project's root directory and use the make test command.
make test
or
make test-cov
to test coverage.
To run the examples, in the root directory execute
make example
License
This project is licensed under the terms of the Apache License 2.0. For more details, refer to the LICENSE file in the project root.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.