Welcome to Ianvs! Ianvs aims to test the performance of distributed synergy AI solutions following recognized standards, in order to facilitate more efficient and effective development. Quick start helps you to test your algorithm on Ianvs with a simple example of industrial defect detection. You can reduce manual procedures to just a few steps so that you can build and start your distributed synergy AI solution development within minutes.
Before using Ianvs, you might want to have the device ready:
- One machine is all you need, i.e., a laptop or a virtual machine is sufficient and a cluster is not necessary
- 2 CPUs or more
- 4GB+ free memory, depends on algorithm and simulation setting
- 10GB+ free disk space
- Internet connection for GitHub and pip, etc
- Python 3.6+ installed
In this example, we are using the Linux platform with Python 3.8.5. If you are using Windows, most steps should still apply but a few like commands and package requirements might be different.
First, we download the code of Ianvs. Assuming that we are using /ianvs
as workspace, Ianvs can be cloned with Git
as:
mkdir /ianvs
cd /ianvs #One might use another path preferred
mkdir project
cd project
git clone https://github.com/kubeedge/ianvs.git
Then, we install third-party dependencies for ianvs.
sudo apt-get update
sudo apt-get install libgl1-mesa-glx -y
python -m pip install --upgrade pip
cd ianvs
python -m pip install ./examples/resources/third_party/*
python -m pip install -r requirements.txt
We are now ready to install Ianvs.
python setup.py install
Datasets and models can be large. To avoid over-size projects in the Github repository of Ianvs, the Ianvs code base does not include origin datasets. Then developers do not need to download non-necessary datasets for a quick start.
cd /ianvs #One might use another path preferred
mkdir dataset
cd dataset
wget https://kubeedge.obs.cn-north-1.myhuaweicloud.com/ianvs/curb-detection/curb-detection.zip
unzip dataset.zip
The URL address of this dataset then should be filled in the configuration file testenv.yaml
. In this quick start,
we have done that for you and the interested readers can refer to testenv.yaml for more details.
Related algorithm is also ready in this quick start.
export PYTHONPATH=$PYTHONPATH:/ianvs/project/ianvs/examples/cityscapes-synthia/lifelong_learning_bench/curb-detection/testalgorithms/rfnet/RFNet
The URL address of this algorithm then should be filled in the configuration file algorithm.yaml
. In this quick
start, we have done that for you and the interested readers can refer to algorithm.yaml for more details.
We are now ready to run the ianvs for benchmarking.
cd /ianvs/project/ianvs
ianvs -f examples/cityscapes-synthia/lifelong_learning_bench/curb-detection/benchmarkingjob.yaml
Finally, the user can check the result of benchmarking on the console and also in the output path(
e.g. /ianvs/lifelong_learning_bench/workspace
) defined in the benchmarking config file (
e.g. benchmarkingjob.yaml
). In this quick start, we have done all configurations for you and the interested readers
can refer to benchmarkingJob.yaml for more details.
The final output might look like this:
rank | algorithm | accuracy | samples_transfer_ratio | paradigm | basemodel | task_definition | task_allocation | basemodel-learning_rate | task_definition-origins | task_allocation-origins |
---|---|---|---|---|---|---|---|---|---|---|
1 | rfnet_lifelong_learning | 0.2123 | 0.4649 | lifelonglearning | BaseModel | TaskDefinitionByOrigin | TaskAllocationByOrigin | 0.0001 | ['real', 'sim'] | ['real', 'sim'] |
This ends the quick start experiment.
If any problems happen, the user can refer to the issue page on Github for help and are also welcome to raise any new issue.
Enjoy your journey on Ianvs!