WO2021109593A1 - Dispositif et procédé intégrés de déploiement de plateforme, et support d'enregistrement - Google Patents

Dispositif et procédé intégrés de déploiement de plateforme, et support d'enregistrement Download PDF

Info

Publication number
WO2021109593A1
WO2021109593A1 PCT/CN2020/104548 CN2020104548W WO2021109593A1 WO 2021109593 A1 WO2021109593 A1 WO 2021109593A1 CN 2020104548 W CN2020104548 W CN 2020104548W WO 2021109593 A1 WO2021109593 A1 WO 2021109593A1
Authority
WO
WIPO (PCT)
Prior art keywords
embedded
software
motherboard
embedded motherboard
computer
Prior art date
Application number
PCT/CN2020/104548
Other languages
English (en)
Chinese (zh)
Inventor
邓辅秦
黄永深
陈颖颖
彭健烽
冯华
李伟科
Original Assignee
五邑大学
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by 五邑大学 filed Critical 五邑大学
Publication of WO2021109593A1 publication Critical patent/WO2021109593A1/fr

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/60Software deployment
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F18/00Pattern recognition
    • G06F18/20Analysing
    • G06F18/21Design or setup of recognition systems or techniques; Extraction of features in feature space; Blind source separation
    • G06F18/214Generating training patterns; Bootstrap methods, e.g. bagging or boosting
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06NCOMPUTING ARRANGEMENTS BASED ON SPECIFIC COMPUTATIONAL MODELS
    • G06N3/00Computing arrangements based on biological models
    • G06N3/02Neural networks
    • G06N3/04Architecture, e.g. interconnection topology
    • G06N3/045Combinations of networks
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06NCOMPUTING ARRANGEMENTS BASED ON SPECIFIC COMPUTATIONAL MODELS
    • G06N3/00Computing arrangements based on biological models
    • G06N3/02Neural networks
    • G06N3/08Learning methods

Definitions

  • the invention relates to the technical field of embedded development of deep learning, in particular to a deployment method, equipment and storage medium of an embedded platform.
  • Compatibility problems are prone to occur when configuring the framework environment. Therefore, if you want to run deep learning smoothly on embedded motherboards, A series of tedious tasks such as downloading source code, patching, finding files, and installing dependent libraries need to be completed through complex command lines. Each step has different and complex commands. In order to complete different steps, it is often necessary to switch between different software. , The operation is very inconvenient.
  • the above method only tests one image data at a time.
  • the user imports the data to be tested from the personal computer into the embedded development board.
  • the traditional transmission method is to use the command line or some software for batch transmission.
  • After importing the data to be tested enter a specific command line command to test the model on the embedded development board, but the command line can only be tested once.
  • you must write a script file by yourself. Each test is performed. It is necessary to re-enter the command line instructions to complete the data import and test. If the data to be tested contains tens of thousands of pictures, the workload of the above process is very huge.
  • the purpose of the present invention is to provide a deployment method, equipment and storage medium of an embedded platform, which simplifies the deployment process of deep learning and improves the efficiency of training models.
  • an embedded platform deployment method of the present invention includes:
  • the preset software and library file resources are sent and installed to the embedded motherboard;
  • the training files of different formats are converted into formats, packaged and sent to the embedded motherboard;
  • the deployment method of an embedded platform of the present invention adopts the following steps: communicating with the embedded motherboard, acquiring the hardware environment and software environment of the embedded motherboard, and presetting based on the acquired hardware environment information and software environment information
  • the software and library file resources are sent and installed to the embedded motherboard.
  • the training files of different formats are converted and packaged and sent to the embedded motherboard, and the data to be tested is dragged and uploaded in batches.
  • the step of sending and installing preset software and library file resources to the embedded motherboard based on the acquired hardware environment information and software environment information includes:
  • the software and library file resources include TensorFlow Lite deep learning framework files and software that can realize the speed measurement experiment function and the data analysis report function.
  • the TensorFlow Lite deep learning framework is used to provide a training environment for deep learning models, and the software that can realize the speed measurement experiment function and the data analysis report function is used for the speed measurement and data analysis of the embedded motherboard in the deep learning training process. , And send the training results to the host.
  • the step of sending and installing preset software and library file resources to the embedded motherboard based on the acquired hardware environment information and software environment information includes:
  • the software and library file resources are uniformly reinstalled. Before installation, it is determined whether the software and library file resources are already on the embedded motherboard. If not, the software and library are installed If the file exists, the command line interface displays the prompt information that the software and library file resources have been installed, and extracts the prompt information to determine whether the software and library file are successfully installed.
  • the host obtains the software and library file resources needed in the process of deep learning model training of the embedded motherboard, and then the software obtains the software resource package integrated from the background of the host Grab the corresponding software resources such as the photo library and patches.
  • the host After the host receives the user instruction through the ssh and sftp protocol and the human-computer interaction interface, it automatically packages and sends the software resources required by the embedded motherboard in training to the embedded motherboard, so that the user does not need to analyze the embedded motherboard by himself
  • the hardware environment of the motherboard and searching for missing software and library file resources of the embedded motherboard greatly reduce the difficulty of deployment of the deep learning platform. For example, if the embedded motherboard is jetson Nano of the MVIDIA series, the TensorRT software needs to be installed, and the host detects it by itself. If the TensorRT software is not installed, the embedded motherboard will be installed.
  • the step of converting the trained training files in different formats into .tflite format files after receiving user instructions through the human-computer interaction interface and packaging and sending them to the embedded motherboard includes:
  • the converted file is packaged and sent to the embedded motherboard.
  • the TensorFlow lite deep learning framework runs on the embedded motherboard, the user must train a model on the desktop device in advance, and in order to implement the model import, some other types of files are needed, such as Graph Definition, Checkpoints, and Frozen Graph, however, only files in the .tflite format can be run on the embedded motherboard with the TensorFlow lite library installed, so training files in different formats need to be converted to files in the .tflite format.
  • the user only needs to input the pre-conversion and post-conversion file formats in the human-computer interaction interface, and the host can convert training files in different formats into .tflite format files that can be run in the TensorFlow Lite deep learning framework.
  • the conversion of .tflite format files is divided into three steps: save the trained model files .ckpt and .pb; use freeze_graph tool to generate frozen graphdef files; use toco (Tensorflow Optimizing COnverter) tool to generate the final tflite file.
  • the data to be tested is batch dragged Drag and upload and send to the embedded motherboard and start testing; obtain the speed test experiment report and data analysis report of the embedded motherboard.
  • the user can upload and send multiple sets of data at one time by dragging and dropping the buttons on the human-machine communication interface.
  • the user can complete a large number of tests for the model by clicking on the corresponding interface of the host computer to start running the network model.
  • the embedded motherboard records the time when the model is used and when it ends, and calculates the results of the speed measurement experiment.
  • the data analysis report includes accuracy, recall, sensitivity, specific validity and comprehensive evaluation indicators, and the accuracy is expressed The probability of the true positive sample in the sample that is predicted to be positive, the recall rate indicates how many positive examples in the sample are predicted correctly, and the sensitivity indicates the proportion of all positive examples that are matched, which measures the classifier’s ability to recognize positive examples.
  • the specific validity represents the proportion of all negative cases that are matched, and it measures the classifier’s ability to recognize negative cases.
  • the comprehensive evaluation index is the weighted and average of accuracy and recall. When the value of the comprehensive evaluation index is high, the training model is explained. More effective.
  • the present invention provides a deployment method and equipment of an embedded platform
  • It includes at least one control processor and a memory for communicating with the at least one control processor; the memory stores instructions executable by the at least one control processor, and the instructions are executed by the at least one control processor, so that the at least one control processor A method for deploying an embedded platform as described above can be executed.
  • the present invention provides a computer-readable storage medium, the computer-readable storage medium stores computer-executable instructions, and the computer-executable instructions are used to make a computer execute the method for deploying an embedded platform as described above.
  • the present invention also provides a computer program product, the computer program product includes a computer program stored on a computer-readable storage medium, the computer program includes program instructions, when the program instructions are executed by a computer , Make the computer execute the deployment method of an embedded platform as described above.
  • FIG. 1 is a schematic diagram of the software flow of an embedded platform deployment method according to an embodiment of the present invention.
  • step S101 run the software. First, open the software applying the embedded platform deployment method of the present invention.
  • step S102 the host communicates with the embedded motherboard through a data network cable.
  • the host and the embedded motherboard communicate via a data network cable or wirelessly.
  • the host computer and the embedded motherboard communicate through a data network cable.
  • Step S103 the host detects the software environment and hardware environment of the embedded motherboard. After the host is successfully connected to the embedded motherboard, the host starts to detect the software environment and hardware environment of the embedded motherboard, and the hardware information of the embedded motherboard includes the model and operating system type of the embedded motherboard .
  • the host obtains the hardware environment of the embedded motherboard by manually selecting the hardware environment by the user or by command detection.
  • the user manually selects the hardware environment of the embedded motherboard, the deployment process is less buggy, the software will list commonly used artificial intelligence embedded motherboards (such as Jeston series, RK3399) for users to choose, and different motherboard models use different Installation steps;
  • another way to obtain the hardware environment of the embedded motherboard is to detect through commands, such as detecting CPU information: uname-a or cat/proc/cpuinfo and the general computer name will put the model in: hostname#View computer name.
  • the host acquires the hardware environment of the embedded motherboard through a command detection method, and the host acquires the hardware environment by sending a ping packet to the embedded motherboard.
  • Windows starts The default value of ttl is 128, and the default value of linux and unix systems is 64. There are some special unix systems whose ttl value is 255, or use the parameter -O provided by map.
  • step S104 the software analyzes the software environment and the hardware environment and packages the required software and library file resources into a software containing TensorFlow lite and transmits it to the embedded development board system to deploy a deep learning environment.
  • the software and library file resources needed in the process of deep learning model training of the embedded motherboard are obtained, and then the software grabs the corresponding software resource package from the back-end integrated software resource package of the host.
  • the embedded motherboard is a jetson Nano of the MVIDIA series
  • the TensorRT software needs to be installed, and the host detects itself. If the TensorRT software is not installed, it will install the embedded motherboard.
  • the software and library file resources include TensorFlow Lite deep learning framework files and software that can realize the speed test function and the data analysis report function.
  • the host determines whether the software and library file resources are already on the embedded motherboard. If it does not exist, the software and library files are installed. If they exist, the command line interface displays a prompt message that the software and library file resources have been installed. The host extracts the prompt information to determine whether the software and library files are Successful installation.
  • step S105 the software on the host converts the trained training files in different formats into .tflite format files and packs them and sends them to the embedded motherboard. Since the TensorFlow lite deep learning framework runs on the embedded motherboard, the user must train a model in advance on the desktop device, and in order to implement the model import, some other types of files are needed, such as Graph Definition, Checkpoints, and Frozen Graph. However, only files in the .tflite format can be run on the embedded motherboard with the TensorFlow lite library installed, so training files in different formats need to be converted to files in the .tflite format.
  • the user enters the pre-conversion and post-conversion file formats in the software.
  • the software uses the source code in the TensorFlow Lite deep learning framework to compile and convert the trained deep learning model files and variable files into files in .tflite format. Finally, the software packages the converted files and sends them to the embedded motherboard.
  • step S106 the software sends the data to be tested to the embedded motherboard in batches and starts the test.
  • the software provides a file drag and drop function, which replaces the traditional use of a command line interface for file positioning, transmission and other complex instructions.
  • the user issues a transmission instruction by clicking the corresponding button on the software, or by dragging and dropping the data file to be tested into the corresponding area of the software, so that the host transmits the data to be tested in batches to The embedded motherboard;
  • the user drags and drops the data file to be tested into the corresponding area of the software, so that the host transmits the data to be tested to the embedded motherboard in batches. , And then the user issues a test instruction by clicking the corresponding button to make the embedded motherboard start batch testing of the received data to be tested, so that the user can upload and test multiple sets of data with one click through the software.
  • step S107 the embedded motherboard sends the speed measurement experiment report and the data analysis report to the host to complete the deployment of the neural network.
  • the embedded motherboard runs the software that can realize the speed measurement experiment in the software resource package transmitted from the host, so as to perform the speed measurement experiment, record the time from the beginning to the end of the model, and internally calculate the speed measurement result And send it to the host, so as to ensure the real-time performance of the data result.
  • the data analysis report includes accuracy rate, recall rate, sensitivity rate, specific validity and comprehensive evaluation index.
  • the accuracy rate indicates the probability of a true positive sample in the sample that is predicted to be positive
  • the recall rate indicates how many positive examples in the sample are predicted correctly
  • the sensitivity indicates the proportion of all positive examples that are matched, which measures the classifier’s ability to positive examples.
  • Recognition ability, special validity indicates the proportion of all negative examples that are matched, and measures the classifier’s ability to recognize negative examples.
  • the comprehensive evaluation index is the weighted average of accuracy and recall. When the value of the comprehensive evaluation index is high It shows that the training model is more effective. In this way, users can clearly understand the operation of the deep learning model and improve the deep learning model.
  • the method and equipment for deploying an embedded platform includes: one or more control processors and memories, and the control processors and memories may be connected by a bus or in other ways.
  • the memory can be used to store non-transitory software programs, non-transitory computer executable programs, and modules, as in the embodiment of the present invention, an embedded platform deployment method corresponds to The program instructions/modules of the control processor execute the various functional applications and data processing of an embedded platform deployment method device by running the non-transitory software programs, instructions and modules stored in the memory, that is, the above method is realized An embodiment of a method for deploying an embedded platform.
  • the memory may include a storage program area and a storage data area, where the storage program area can store an operating system and an application program required by at least one function; the storage data area can store data created by using an embedded platform deployment method device. Data etc.
  • the memory may include a high-speed random access memory, and may also include a non-transitory memory, such as at least one magnetic disk storage device, a flash memory device, or other non-transitory solid-state storage devices.
  • the memory may optionally include a memory remotely arranged with respect to the control processor, and these remote memories may be connected to the deployment method device of the embedded platform through a network. Examples of the aforementioned networks include, but are not limited to, the Internet, corporate intranets, local area networks, mobile communication networks, and combinations thereof.
  • the one or more modules are stored in the memory, and when executed by the one or more control processors, an embedded platform deployment method in the foregoing method embodiment is executed.
  • the embodiment of the present invention also provides a computer-readable storage medium, the computer-readable storage medium stores computer-executable instructions, and the computer-executable instructions are executed by one or more control processors.
  • the device embodiments described above are merely illustrative, and the units described as separate components may or may not be physically separated, that is, they may be located in one place, or they may be distributed on multiple network units. Some or all of the modules can be selected according to actual needs to achieve the objectives of the solutions of the embodiments.
  • each implementation manner can be implemented by means of software plus a general hardware platform.
  • All or part of the processes in the methods of the foregoing embodiments can be implemented by computer programs instructing relevant hardware.
  • the programs can be stored in a computer readable storage medium. At this time, it may include the flow of the embodiment of the above-mentioned method.
  • the storage medium can be a magnetic disk, an optical disc, a read-only memory (Read Only Memory, ROM), or a random access memory (Random Access Memory, RAM), etc.

Landscapes

  • Engineering & Computer Science (AREA)
  • Theoretical Computer Science (AREA)
  • Physics & Mathematics (AREA)
  • General Engineering & Computer Science (AREA)
  • Software Systems (AREA)
  • General Physics & Mathematics (AREA)
  • Data Mining & Analysis (AREA)
  • Life Sciences & Earth Sciences (AREA)
  • Artificial Intelligence (AREA)
  • Evolutionary Computation (AREA)
  • Computing Systems (AREA)
  • Health & Medical Sciences (AREA)
  • General Health & Medical Sciences (AREA)
  • Computational Linguistics (AREA)
  • Biophysics (AREA)
  • Mathematical Physics (AREA)
  • Biomedical Technology (AREA)
  • Molecular Biology (AREA)
  • Bioinformatics & Cheminformatics (AREA)
  • Bioinformatics & Computational Biology (AREA)
  • Computer Vision & Pattern Recognition (AREA)
  • Evolutionary Biology (AREA)
  • Stored Programmes (AREA)
  • Debugging And Monitoring (AREA)

Abstract

L'invention concerne un dispositif et un procédé intégrés de déploiement de plateforme, et un support d'enregistrement, se rapportant au domaine technique du développement intégré d'apprentissage profond. Le procédé comprend les étapes suivantes consistant à : communiquer avec une carte mère intégrée ; obtenir un environnement matériel et un environnement logiciel de la carte mère intégrée ; envoyer et installer des ressources de fichiers de bibliothèque et de logiciels prédéfinies à la carte mère intégrée sur la base d'informations d'environnement matériel et d'informations d'environnement logiciel obtenues ; après avoir reçu une instruction d'utilisateur au moyen d'une interface d'interaction homme-machine, convertir des formats de fichiers d'entraînement ayant différents formats, grouper et envoyer les fichiers d'entraînement à la carte mère intégrée ; téléverser, par glissement, des données à tester en lots et les envoyer à la carte mère intégrée pour permettre à la carte mère intégrée de démarrer le test ; et obtenir un rapport d'expérience de mesure de vitesse et un rapport d'analyse de données de la carte mère intégrée. Dans le procédé, les opérations consistant à déployer une plateforme d'entraînement d'apprentissage profond pour différents types de dispositifs intégrés, à importer lesdites données en lots et à tester lesdites données en lots, sont mises en œuvre au moyen de l'interface d'interaction homme-machine, ce qui permet de réduire considérablement la difficulté de travail d'un personnel de test et d'améliorer l'efficacité de test.
PCT/CN2020/104548 2019-12-05 2020-07-24 Dispositif et procédé intégrés de déploiement de plateforme, et support d'enregistrement WO2021109593A1 (fr)

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
CN201911231190.7A CN111190605A (zh) 2019-12-05 2019-12-05 嵌入式平台的部署方法、设备及存储介质
CN201911231190.7 2019-12-05

Publications (1)

Publication Number Publication Date
WO2021109593A1 true WO2021109593A1 (fr) 2021-06-10

Family

ID=70707673

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/CN2020/104548 WO2021109593A1 (fr) 2019-12-05 2020-07-24 Dispositif et procédé intégrés de déploiement de plateforme, et support d'enregistrement

Country Status (2)

Country Link
CN (1) CN111190605A (fr)
WO (1) WO2021109593A1 (fr)

Cited By (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN116225460A (zh) * 2023-02-15 2023-06-06 天津赛象科技股份有限公司 一种简化操作人员在工控机中部署软件的方法
US11811681B1 (en) 2022-07-12 2023-11-07 T-Mobile Usa, Inc. Generating and deploying software architectures using telecommunication resources

Families Citing this family (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN111190605A (zh) * 2019-12-05 2020-05-22 五邑大学 嵌入式平台的部署方法、设备及存储介质
CN113065473A (zh) * 2021-04-07 2021-07-02 浙江天铂云科光电股份有限公司 一种适用于嵌入式系统的口罩人脸检测和体温测量方法
CN113408744A (zh) * 2021-07-08 2021-09-17 山东浪潮科学研究院有限公司 基于AIot和TinyML技术的多传感器多环境监测方法

Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN109408351A (zh) * 2018-11-01 2019-03-01 郑州云海信息技术有限公司 一种ai环境检测和深度学习环境自动部署的方法和装置
CN109460827A (zh) * 2018-11-01 2019-03-12 郑州云海信息技术有限公司 一种深度学习环境的搭建与优化方法和系统
CN110096401A (zh) * 2019-05-13 2019-08-06 苏州浪潮智能科技有限公司 一种服务器数据处理性能测试方法与装置
CN111190605A (zh) * 2019-12-05 2020-05-22 五邑大学 嵌入式平台的部署方法、设备及存储介质

Family Cites Families (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN107153529A (zh) * 2016-03-02 2017-09-12 中兴通讯股份有限公司 一种嵌入式软件开发方法、装置及平台
US10074038B2 (en) * 2016-11-23 2018-09-11 General Electric Company Deep learning medical systems and methods for image reconstruction and quality evaluation
CN107678946B (zh) * 2017-09-12 2020-11-06 中航洛阳光电技术有限公司 一种基于模型的机载嵌入式软件测试环境构建方法

Patent Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN109408351A (zh) * 2018-11-01 2019-03-01 郑州云海信息技术有限公司 一种ai环境检测和深度学习环境自动部署的方法和装置
CN109460827A (zh) * 2018-11-01 2019-03-12 郑州云海信息技术有限公司 一种深度学习环境的搭建与优化方法和系统
CN110096401A (zh) * 2019-05-13 2019-08-06 苏州浪潮智能科技有限公司 一种服务器数据处理性能测试方法与装置
CN111190605A (zh) * 2019-12-05 2020-05-22 五邑大学 嵌入式平台的部署方法、设备及存储介质

Cited By (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US11811681B1 (en) 2022-07-12 2023-11-07 T-Mobile Usa, Inc. Generating and deploying software architectures using telecommunication resources
CN116225460A (zh) * 2023-02-15 2023-06-06 天津赛象科技股份有限公司 一种简化操作人员在工控机中部署软件的方法
CN116225460B (zh) * 2023-02-15 2023-10-17 天津赛象科技股份有限公司 一种简化操作人员在工控机中部署软件的方法

Also Published As

Publication number Publication date
CN111190605A (zh) 2020-05-22

Similar Documents

Publication Publication Date Title
WO2021109593A1 (fr) Dispositif et procédé intégrés de déploiement de plateforme, et support d'enregistrement
KR102493449B1 (ko) 엣지 컴퓨팅 테스트 방법, 장치, 전자 장치 및 컴퓨터 판독 가능 매체
US10419546B2 (en) Migration assessment for cloud computing platforms
CN108959068B (zh) 软件界面测试方法、设备及存储介质
CN111708571B (zh) 微服务部署方法、装置、电子设备及存储介质
EP3220270A1 (fr) Système et procédé pour configurer des dispositifs de mesure distribués et traiter des données de mesure
US9176851B2 (en) Utilizing intelligent automated scripts to test software applications
CN107608901B (zh) 基于Jmeter的测试方法及装置、存储介质、电子设备
US20200319879A1 (en) Development project blueprint and package generation
CN109960642A (zh) 自动测试方法和装置
CN113778898B (zh) 用户界面自动化测试方法、装置、电子设备及存储介质
EP4195108A1 (fr) Procédé et appareil de génération et d'application d'un modèle d'apprentissage profond basé sur une infrastructure d'apprentissage profond
WO2020096665A2 (fr) Détection d'erreur de système
CN115203012A (zh) 人工智能性能测试方法及装置
CN111459506B (zh) 深度学习平台集群的部署方法、装置、介质及电子设备
US10120661B2 (en) Multi-flavored software execution from a singular code base
CN109634856B (zh) 基于云服务的iOS智能终端远程真机调试系统及方法
CN109065111A (zh) 一种基于docker的云平台健康检查系统及方法
CN114942890A (zh) 一种用户界面测试方法、装置、设备及介质
CN110954214B (zh) 一种设备测试方法、装置和系统
CN108960433B (zh) 用于运行机器学习建模过程的方法及系统
Breitbach et al. Artifact: Voltaire: precise energy-aware code offloading decisions with machine learning
WO2019210674A1 (fr) Procédé, système et appareil pour dispositif intelligent d'opération manuelle de simulation
CN116560819B (zh) 基于rpa的批量自动化操作方法、系统、设备及储存介质
CN110618914A (zh) 一种面向分布式系统集群的监控方法、装置及系统

Legal Events

Date Code Title Description
121 Ep: the epo has been informed by wipo that ep was designated in this application

Ref document number: 20896992

Country of ref document: EP

Kind code of ref document: A1

NENP Non-entry into the national phase

Ref country code: DE

122 Ep: pct application non-entry in european phase

Ref document number: 20896992

Country of ref document: EP

Kind code of ref document: A1