Implementation and Testing of Current Quantum Pattern Matching Algorithms Applied to Genomic Sequencing

Total Page:16

File Type:pdf, Size:1020Kb

Implementation and Testing of Current Quantum Pattern Matching Algorithms Applied to Genomic Sequencing POLITECNICO DI TORINO Master Degree Course in Computer Engineering Master Degree Thesis Implementation and testing of current quantum pattern matching algorithms applied to genomic sequencing Supervisor Prof. Bartolomeo Montrucchio Candidate Raffaele Palmieri Company Supervisors at LINKS Dr. Olivier Terzo Dr. Andrea Scarabosio Dr. Alberto Scionti Carmine D'Amico academic year 2018/2019 Summary Quantum Computing is a new and mostly unexplored research field that promises to revolutionize the way of computing information for those problems that still need a lot of time and resources for classical computers to resolve them. An example of such problems is Genome Sequencing and Alignment, in which genomes are sequenced by means of sequencers machines, obtaining short reads that are then assembled together to obtain the whole genome. In particular, Grover's algorithm is a quantum search algorithm that could find application in the context of sequence alignment. In this thesis we analyzed the most important and recent Quantum Pattern Matching algorithms developed for Genome Sequencing, all based on the fundamental Grover's algorithm, implementing them in Python 3 by means of the Qiskit library (developed by IBM and giving free access to the IBM Quantum Computing cloud platform). So, we did some testing on the algorithms and did some final considerations about them and on the current and future status of Quantum Computing. 3 Contents 1 Introduction 7 1.1 Scope of the thesis...........................7 1.2 Organisation of the thesis.......................8 2 Why Quantum Computing? 9 2.1 A new way of computing information.................9 2.1.1 Shor's algorithm........................ 10 2.1.2 Grover's algorithm....................... 10 2.1.3 Deutsch-Jozsa algorithm.................... 10 2.1.4 Obstacles that separates us from quantum supremacy.... 11 2.2 Quantum Computing: basic concepts................. 12 2.2.1 Qubits and quantum states.................. 13 2.2.2 Quantum gates and quantum circuits............. 17 2.3 Real quantum computers and quantum simulators................................ 19 2.3.1 Technologies for real quantum computers........... 21 2.3.2 Quantum simulators...................... 22 2.3.3 Quantum Assembly....................... 23 2.4 Tools used................................ 24 3 An overview of Genome Sequencing 26 3.1 An introduction to the problem.................... 26 3.2 DNA Structure............................. 26 3.3 Genome Sequencing........................... 27 3.3.1 Sequencing methods: an historical perspective........ 28 3.3.2 From Sequencing to Reconstruction.............. 29 3.4 DNA Alignment............................. 30 3.4.1 Exact matching methods.................... 31 3.4.2 Approximate matching methods................ 34 3.5 DNA Big Data............................. 36 4 4 Quantum Pattern Matching algorithms 38 4.1 Quantum search applied to Pattern Matching............ 38 4.2 The fundamental Grover's Algorithm................. 38 4.2.1 The Oracle........................... 39 4.2.2 The Algorithm......................... 39 4.3 Quantum Associative Memory..................... 44 4.3.1 Arbitrary amplitude distribution initialization........ 44 4.3.2 The Algorithm......................... 46 4.4 Fast Quantum Search based on Hamming distance........................... 47 4.5 Quantum indexed Bidirectional Associative Memory......... 48 4.5.1 Quantum Associative Memory with Distributed Queries....................... 49 4.5.2 The QiBAM model....................... 52 4.6 Quantum Pattern Recognition..................... 53 5 Implementation and Testing 56 5.1 A brief introduction to the implementation and testing work.... 56 5.1.1 Tools used............................ 56 5.1.2 How testing was done...................... 56 5.1.3 Chosen algorithms....................... 58 5.1.4 Decoherence and number quantum of gates.......... 59 5.2 Quantum Associative Memory..................... 60 5.3 Quantum indexed Bidirectional Associative Memory......... 63 5.4 Quantum Pattern Recognition..................... 67 5.5 A brief summary about analyzed algorithms............. 71 5.6 An example of noisy quantum computation.............. 71 5.6.1 Noise, number of gates and circuit depth........... 74 6 Conclusions and future developments 76 6.1 Present and Future of Quantum Computing............. 76 A Quantum Associative Memory 78 A.1 Python code............................... 78 A.2 Other tests............................... 85 A.3 Verifying the validity of the implementation............. 87 5 B Quantum indexed Bidirectional Associative Memory 89 B.1 Python code............................... 89 B.2 Other tests............................... 97 B.3 Verifying the validity of the implementation............. 99 C Quantum Pattern Recognition 101 C.1 Python code............................... 101 C.2 Other tests............................... 111 Bibliography 115 6 Chapter 1 Introduction 1.1 Scope of the thesis In this thesis we will talk about the basic concepts of Quantum Computing and its application to a specific field, that is Genome Sequencing. Quantum Computing is a new and potentially revolutionary way of computing information, that finds its strongest advantage in the concept of Quantum Parallelism. Thanks to the peculiar characteristics offered by Quantum Computing, a wide variety of problems requiring a lot of time to be resolved (even to the point of becoming practically unapproach- able with classical computation) becomes approachable. Genome Sequencing is one of the fields that could benefit a lot from the application of Quantum Computing: it requires the computation of a very big amount of data coming from genomes belonging to a wide variety of living beings, so it's an important and interesting field for Quantum Computing application (for medical and biological reasons). In order to talk in more depth about Quantum Computing applied to Genome Sequencing, we examined some Quantum Pattern Matching algorithms, choosing the most recent and, in our opinion, promising ones; we implemented these algo- rithms using the Qiskit library in Python 3, developed by IBM for free access to the IBM Quantum Experience cloud platform and giving us the chance for testing these algorithms and doing some considerations about the obtained results. In the end, some final considerations about the current and future status of Quantum Computing field will be given. 7 1 { Introduction 1.2 Organisation of the thesis The thesis is organised in chapters as follows: • in Chapter 2 we will talk about the idea of Quantum Compunting and the companies involved in this mostly unexplored research field; after that, we will give some basic concepts about Quantum Computing; • in Chapter 3 we will talk about the problem of Genome Sequencing, giving an historical perspective and mentioning the most famous classical algorithms for pattern matching used in the Genome Sequencing and Alignment field; • in Chapter 4 we will introduce the chosen Quantum Pattern Matching al- gorithms for implementation and testing, giving some mathematical insights about them; • in Chapter 5 we will introduce the obtained results, doing also an important consideration about noise in Quantum Computing; • in Chapter 6 we will give some final considerations about the future of Quan- tum Computing. 8 Chapter 2 Why Quantum Computing? 2.1 A new way of computing information \Nature isn't classical, dammit, and if you want to make a simulation of nature, you'd better make it quantum mechanical, and by golly it's a wonderful problem, because it doesn't look so easy." With these words, pronounced in 1981 during a conference co-organized by MIT and IBM [1], Richard Feynman encouraged the scientific community to exploit the peculiar characteristics of quantum mechanics in order to give birth to a new way of computing information. Today's computing platforms are called classical com- puters, to distinguish them from quantum computers. The interest towards this unexplored branch of computer science is big and is growing: why is Quantum Computing so fascinating? To answer this question, we need to briefly give some examples of the potentially disruptive performance of a quantum computer, com- paring it to a classical computer. We will also talk about the reasons not to be over-hyped about Quantum Computing: important physical obstacles are yet to be overcame if we want to build powerful quantum computers with a big number of qubits and capable of doing error correction. After that, we will introduce some basic concepts of Quantum Computing. 9 2 { Why Quantum Computing? 2.1.1 Shor's algorithm Shor's algorithm is maybe the best example to give an idea of the potential of Quantum Computing. This algorithm is used to find the prime factorization of a number: given a number, it can find efficiently two prime integers which, when multiplied, give the original number. It's important to remark that many modern cryptography systems (like RSA) rely on the fact that, while computing the product of two very large prime numbers is quick, figuring out which very large prime numbers multiplied together yield to a certain product is time consuming: RSA picks prime numbers so large that it would take more than a quadrillion years on a classical computer to discover them. On the other hand, Shor's algorithm can run on a quantum computer in polynomial time, with O(d3) complexity (where d 1 is the number of decimal digits of the integer to factor), against the O(exp(d 3 )) of the best-known classical algorithm [2].
Recommended publications
  • Implementing Grover's Algorithm on the IBM Quantum Computers
    Implementing Grover’s Algorithm on the IBM Quantum Computers Aamir Mandviwalla*, Keita Ohshiro* and Bo Ji Abstract—This paper focuses on testing the current viability of Our goal in this paper is to study how close we are using quantum computers for the processing of data-driven tasks hardware-wise to realistically being able to exploit the poten- fueled by emerging data science applications. We test the publicly tial benefits of quantum algorithms. Prior work is rather limited available IBM quantum computers using Grover’s algorithm, a well-known quantum search algorithm, to obtain a baseline for this subject. There exist articles proclaiming that the age for the general evaluations of these quantum devices and to of quantum computing is only a year or two away along with investigate the impacts of various factors such as number of less positive articles that do not expect major advancements quantum bits (or qubits), qubit choice, and device choice. The for at least ten years [7], [8]. Instead of providing a prediction main contributions of this paper include a new 4-qubit imple- for the future, in this paper we aim to evaluate the accuracy mentation of Grover’s algorithm and test results showing the current capabilities of quantum computers. Our study indicates of quantum computers that are publicly available now. that quantum computers can currently only be used accurately To accomplish this goal, we run tests using Grover’s al- for solving simple problems with very small amounts of data. gorithm implemented in a variety of different ways on the There are also notable differences between different selections of publicly available IBM computers: IBM Q 5 Tenerife (5-qubit the qubits in the implementation design and between different chip) and IBM Q 16 Ruschlikon¨ (16-qubit chip) [9].
    [Show full text]
  • Arxiv:1812.09167V1 [Quant-Ph] 21 Dec 2018 It with the Tex Typesetting System Being a Prime Example
    Open source software in quantum computing Mark Fingerhutha,1, 2 Tomáš Babej,1 and Peter Wittek3, 4, 5, 6 1ProteinQure Inc., Toronto, Canada 2University of KwaZulu-Natal, Durban, South Africa 3Rotman School of Management, University of Toronto, Toronto, Canada 4Creative Destruction Lab, Toronto, Canada 5Vector Institute for Artificial Intelligence, Toronto, Canada 6Perimeter Institute for Theoretical Physics, Waterloo, Canada Open source software is becoming crucial in the design and testing of quantum algorithms. Many of the tools are backed by major commercial vendors with the goal to make it easier to develop quantum software: this mirrors how well-funded open machine learning frameworks enabled the development of complex models and their execution on equally complex hardware. We review a wide range of open source software for quantum computing, covering all stages of the quantum toolchain from quantum hardware interfaces through quantum compilers to implementations of quantum algorithms, as well as all quantum computing paradigms, including quantum annealing, and discrete and continuous-variable gate-model quantum computing. The evaluation of each project covers characteristics such as documentation, licence, the choice of programming language, compliance with norms of software engineering, and the culture of the project. We find that while the diversity of projects is mesmerizing, only a few attract external developers and even many commercially backed frameworks have shortcomings in software engineering. Based on these observations, we highlight the best practices that could foster a more active community around quantum computing software that welcomes newcomers to the field, but also ensures high-quality, well-documented code. INTRODUCTION Source code has been developed and shared among enthusiasts since the early 1950s.
    [Show full text]
  • Quantum Computing for Undergraduates: a True STEAM Case
    Lat. Am. J. Sci. Educ. 6, 22030 (2019) Latin American Journal of Science Education www.lajse.org Quantum Computing for Undergraduates: a true STEAM case a b c César B. Cevallos , Manuel Álvarez Alvarado , and Celso L. Ladera a Instituto de Ciencias Básicas, Dpto. de Física, Universidad Técnica de Manabí, Portoviejo, Provincia de Manabí, Ecuador b Facultad de Ingeniería en Electricidad y Computación, Escuela Politécnica del Litoral, Guayaquil. Ecuador c Departamento de Física, Universidad Simón Bolívar, Valle de Sartenejas, Caracas 1089, Venezuela A R T I C L E I N F O A B S T R A C T Received: Agosto 15, 2019 The first quantum computers of 5-20 superconducting qubits are now available for free Accepted: September 20, 2019 through the Cloud for anyone who wants to implement arrays of logical gates, and eventually Available on-line: Junio 6, 2019 to program advanced computer algorithms. The latter to be eventually used in solving Combinatorial Optimization problems, in Cryptography or for cracking complex Keywords: STEAM, quantum computational chemistry problems, which cannot be either programmed or solved using computer, engineering curriculum, classical computers based on present semiconductor electronics. Moreover, Quantum physics curriculum. Advantage, i.e. computational power beyond that of conventional computers seems to be within our reach in less than one year from now (June 2018). It does seem unlikely that these E-mail addresses: new fast computers, based on quantum mechanics and superconducting technology, will ever [email protected] become laptop-like. Yet, within a decade or less, their physics, technology and programming [email protected] will forcefully become part, of the undergraduate curriculae of Physics, Electronics, Material [email protected] Science, and Computer Science: it is indeed a subject that embraces Sciences, Advanced Technologies and even Art e.g.
    [Show full text]
  • 3Rd Summit on Advances in Programming Languages (SNAPL 2019)
    3rd Summit on Advances in Programming Languages SNAPL 2019, May 16–17, 2019, Providence, RI, USA Edited by Benjamin S. Lerner Rastislav Bodík Shriram Krishnamurthi L I P I c s – Vo l . 136 – SNAPL 2019 w w w . d a g s t u h l . d e / l i p i c s Editors Benjamin S. Lerner Northeastern University, USA [email protected] Rastislav Bodík University of California Berkeley, USA [email protected] Shriram Krishnamurthi Brown University, USA [email protected] ACM Classification 2012 Software and its engineering → General programming languages; Software and its engineering → Semantics ISBN 978-3-95977-113-9 Published online and open access by Schloss Dagstuhl – Leibniz-Zentrum für Informatik GmbH, Dagstuhl Publishing, Saarbrücken/Wadern, Germany. Online available at https://www.dagstuhl.de/dagpub/978-3-95977-113-9. Publication date July, 2019 Bibliographic information published by the Deutsche Nationalbibliothek The Deutsche Nationalbibliothek lists this publication in the Deutsche Nationalbibliografie; detailed bibliographic data are available in the Internet at https://portal.dnb.de. License This work is licensed under a Creative Commons Attribution 3.0 Unported license (CC-BY 3.0): https://creativecommons.org/licenses/by/3.0/legalcode. In brief, this license authorizes each and everybody to share (to copy, distribute and transmit) the work under the following conditions, without impairing or restricting the authors’ moral rights: Attribution: The work must be attributed to its authors. The copyright is retained by the corresponding authors. Digital Object Identifier: 10.4230/LIPIcs.SNAPL.2019.0 ISBN 978-3-95977-113-9 ISSN 1868-8969 https://www.dagstuhl.de/lipics 0:iii LIPIcs – Leibniz International Proceedings in Informatics LIPIcs is a series of high-quality conference proceedings across all fields in informatics.
    [Show full text]
  • Special Theme Quantum Computing
    Number 112 January 2018 ERCIM NEWS www.ercim.eu Special theme Quantum Computing Also in this issue: Research and Innovation: Computers that negotiate on our behalf Editorial Information Contents ERCIM News is the magazine of ERCIM. Published quar - terly, it reports on joint actions of the ERCIM partners, and aims to reflect the contribution made by ERCIM to the European Community in Information Technology and Applied Mathematics. Through short articles and news items, it pro - vides a forum for the exchange of information between the JoINt ERCIM ACtIoNS SPECIAL tHEME institutes and also with the wider scientific community. This issue has a circulation of about 6,000 printed copies and is 4 Foreword from the President The special theme section “Quantum also available online. Computing” has been coordinated by 4 Jos Baeten, Elected President of Jop Briët (CWI) and Simon Perdrix ERCIM News is published by ERCIM EEIG ERCIM AISBL (CNRS, LORIA) BP 93, F-06902 Sophia Antipolis Cedex, France Tel: +33 4 9238 5010, E-mail: [email protected] 5 Tim Baarslag Winner of the 2017 8 Quantum Computation and Director: Philipp Hoschka, ISSN 0926-4981 Cor Baayen Young Researcher Information - Introduction to the Award Special Theme Contributions by Jop Briët (CWI) and Simon Contributions should be submitted to the local editor of your 6 ERCIM Cor Baayen Award 2017 Perdrix (CNRS, LORIA) country 7 ERCIM Established Working 10 How Classical Beings Can Test Copyrightnotice Group on Blockchain Technology Quantum Devices All authors, as identified in each article, retain copyright of their by Stacey Jeffery (CWI) work. ERCIM News is licensed under a Creative Commons 7 HORIZON 2020 Project Attribution 4.0 International License (CC-BY).
    [Show full text]
  • Lawrence Berkeley National Laboratory Recent Work
    Lawrence Berkeley National Laboratory Recent Work Title Simulating Quantum Materials with Digital Quantum Computers Permalink https://escholarship.org/uc/item/4zg9w1vj Authors Bassman, Lindsay Urbanek, Miroslav Metcalf, Mekena et al. Publication Date 2021-01-21 Peer reviewed eScholarship.org Powered by the California Digital Library University of California Simulating Quantum Materials with Digital Quantum Computers Lindsay Bassman, Miroslav Urbanek, Mekena Metcalf, Jonathan Carter Lawrence Berkeley National Laboratory, Berkeley, CA 94720, USA E-mail: [email protected] Alexander F. Kemper Department of Physics, North Carolina State University, Raleigh, North Carolina 27695, USA Wibe de Jong Lawrence Berkeley National Laboratory, Berkeley, CA 94720, USA Abstract. Quantum materials exhibit a wide array of exotic phenomena and practically useful properties. A better understanding of these materials can provide deeper insights into fundamental physics in the quantum realm as well as advance technology for entertainment, healthcare, and sustainability. The emergence of digital quantum computers (DQCs), which can efficiently perform quantum simulations that are otherwise intractable on classical computers, provides a promising path forward for testing and analyzing the remarkable, and often counter-intuitive, behavior of quantum materials. Equipped with these new tools, scientists from diverse domains are racing towards achieving physical quantum advantage (i.e., using a quantum computer to learn new physics with a computation that cannot feasibly be run on any classical computer). The aim of this review, therefore, is to provide a summary of progress made towards this goal that is accessible to scientists across the physical sciences. We will first review the available technology and algorithms, and detail the myriad ways arXiv:2101.08836v1 [quant-ph] 21 Jan 2021 to represent materials on quantum computers.
    [Show full text]
  • Quantum Computing with the IBM Quantum Experience with the Quantum Information Software Toolkit (Qiskit) Nick Bronn Research Staff Member IBM T.J
    Quantum Computing with the IBM Quantum Experience with the Quantum Information Software Toolkit (QISKit) Nick Bronn Research Staff Member IBM T.J. Watson Research Center ACM Poughkeepsie Monthly Meeting, January 2018 1 ©2017 IBM Corporation 25 January 2018 Overview Part 1: Quantum Computing § What, why, how § Quantum gates and circuits Part 2: Superconducting Qubits § Device properties § Control and performance Part 3: IBM Quantum Experience § Website: GUI, user guides, community § QISKit: API, SDK, Tutorials 2 ©2017 IBM Corporation 25 January 2018 Quantum computing: what, why, how 3 ©2017 IBM Corporation 25 January 2018 “Nature isn’t classical . if you want to make a simula6on of nature, you’d be:er make it quantum mechanical, and by golly it’s a wonderful problem, because it doesn’t look so easy.” – Richard Feynman, 1981 1st Conference on Physics and Computation, MIT 4 ©2017 IBM Corporation 25 January 2018 Computing with Quantum Mechanics: Features Superposion: a system’s state can be any linear combinaon of classical states …un#l it is measured, at which point it collapses to one of the classical states Example: Schrodinger’s Cat “Classical” states Quantum Normalizaon wavefuncon Entanglement: par0cles in superposi0on 1 ⎛ ⎞ ψ = ⎜ + ⎟ can develop correlaons such that 2 ⎜ ⎟ measuring just one affects them all ⎝ ⎠ Example: EPR Paradox (Einstein: “spooky Linear combinaon ac0on at a distance”) 5 ©2017 IBM Corporation 25 January 2018 Computing with Quantum Mechanics: Drawbacks 1 Decoherence: a system is gradually measured by residual interac0on with its environment, killing quantum behavior Qubit State Consequence: quantum effects observed only 0 Time in well-isolated systems (so not cats… yet) Uncertainty principle: measuring one variable (e.g.
    [Show full text]
  • 162Q Earnings Final
    Introduction Thank you. This is Patricia Murphy, Vice President of Investor Relations for IBM. I’m here today with Martin Schroeter, IBM’s Senior Vice President and Chief Financial Officer. I’d like to welcome you to our second quarter earnings presentation. The prepared remarks will be available within a couple of hours, and a replay of the webcast will be posted by this time tomorrow. I’ll remind you that certain comments made in this presentation may be characterized as forward looking under the Private Securities Litigation Reform Act of 1995. Those statements involve a number of factors that could cause actual results to differ materially. Additional information concerning these factors is contained in the company’s filings with the SEC. Copies are available from the SEC, from the IBM web site, or from us in Investor Relations. Our presentation also includes certain non-GAAP financial measures, in an effort to provide additional information to investors. All non-GAAP measures have been reconciled to their related GAAP measures in accordance with SEC rules. You will find reconciliation charts at the end of the presentation, and in the Form 8-K submitted to the SEC. So with that, I’ll turn the call over to Martin Schroeter. Overview Thanks Patricia. In the second quarter, we generated $20.2 billion in revenue, $3½ billion in pre-tax income, and $2.95 of operating earnings per share. Ninety days ago, we told you what we expected for the second quarter. We said we’d continue to see strength in the Strategic Imperatives, and we delivered 12 percent revenue growth, led by cloud.
    [Show full text]
  • A Report on Teaching a Series of Online Lectures on Quantum Computing from CERN
    The Journal of Supercomputing https://doi.org/10.1007/s11227-021-03847-9 A report on teaching a series of online lectures on quantum computing from CERN Elías F. Combarro1,2 · Sofa Vallecorsa2 · Luis J. Rodríguez‑Muñiz3 · Álvaro Aguilar‑González3 · José Ranilla1 · Alberto Di Meglio2 Accepted: 24 April 2021 © The Author(s), under exclusive licence to Springer Science+Business Media, LLC, part of Springer Nature 2021, corrected publication 2021 Abstract Quantum computing (QC) is one of the most promising new technologies for High Performance Computing. Its potential use in High Energy Physics has lead CERN, one of the top world users of large-scale distributed computing, to start programmes such as the Quantum Technology Initiative (QTI) to further assess and explore the applications of QC. As a part of QTI, CERN ofered, in November–December 2020, a free, online series of lectures on quantum computing. In this paper, we report on the experience of designing and delivering these lectures, evaluating them in the broader context of computing education and training. Traditional textbooks and courses on QC usually focus on physical concepts and assume some knowledge of advanced mathematical and physical topics from the student. Our lectures were designed with the objective of reducing the prerequisites to the bare minimum as well as focusing on hands-on, practical aspects of programming quantum comput- ers and not on the mathematical analysis of the algorithms. This also allowed us to include contents that are not usually covered in introductory courses, such as quan- tum machine learning and quantum annealing. The evaluation of the reception of the lectures shows that participants signifcantly increased their knowledge, validating the proposed approach not focused on mathematics and physics but on algorithmic and implementation aspects.
    [Show full text]
  • Unscheduled Material Events [US]
    TM INTERNATIONAL BUSINESS MACHINES CORP 8-K - Unscheduled Material Events [US] 7 Mar 2017 https://dn.certent.com/Details/FilingDual.aspx?id=31272994 This document was found via Certent DisclosureNet, an online solution that helps professionals unlock intelligence in global corporate disclosure filings while providing a secure platform for knowledge collaboration. Certent makes it easier for companies to meet their financial compliance requirements. Certent’s user-friendly, web-based technology streamlines equity plan management, financial reporting for ASC718, and financial filings (in XBRL and HTML) with the U.S. SEC. With technology based on in-depth accounting expertise, an open ecosystem of industry partners, and an expert services organization focused on customer success, Certent has helped 1,800 companies worldwide innovate their financial compliance processes. To learn more about Certent DisclosureNet, please visit www.Certent.com. Copyright © 2016. UNITED STATES SECURITIES AND EXCHANGE COMMISSION WASHINGTON, D.C. 20549 FORM 8-K CURRENT REPORT PURSUANT TO SECTION 13 OR 15 (d) OF THE SECURITIES EXCHANGE ACT OF 1934 Date of Report: March 7, 2017 (Date of earliest event reported) INTERNATIONAL BUSINESS MACHINES CORPORATION (Exact name of registrant as specified in its charter) New York 1-2360 13-0871985 (State of Incorporation) (Commission File Number) (IRS employer Identification No.) ARMONK, NEW YORK 10504 (Address of principal executive offices) (Zip Code) 914-499-1900 (Registrant’s telephone number) Check the appropriate box below if
    [Show full text]
  • University of Tlemcen, in Partnership with IBM, Give Access to Its Students to
    مكتب اﻻتصال جامعة شركات BUREAU DE LIAISON ENTREPRISES UNIVERSITE ⵜⴰⵙⴷⴰⵡⵉⵜ ⴰⴱⵓⴱⴽⵔ ⴱⴻⵍⵇⴰⵢⴷ ⵏ ⵜⵍⵎⵙⴰⵏ ● جامعة تلمسان University Office for University Industry Collaboration Université de Tlemcen ● Univesity of Tlemcen University of Tlemcen, in partnership with IBM, give access to its students to : Get easy no-charge access to the tools you need to develop the next great thing. Enjoy powerful technical and strategic resources from IBM. Jump right in with cloud access to powerful services and the most prominent open-source computer technologies, or take advantage of hands-on resources that will teach you about AI, blockchains, data and analytics, Internet of Things, Commerce, Security, .... IBM academic software is available from the IBM On The Hub website http://ibm.onthehub.com. Access is available to faculty and students with a valid mail.univ-tlemcen.dz Email address. Many available resources: • Cloud Access • Courses • Softwares • Licences Categories and fields : FOR STUDENTS Cloud o Cloud Access : ▪ IBM Cloud - IBM Cloud - IBM Code - Open Source at IBM - IBM Cloud Private Community Edition ▪ Blueworks Live B.L.E.U. Bureau de Liaison Entreprises Université ● Université de Tlemcen 22 rue Abi Ayad Abdelkrim, Fg Pasteur ● B.P. 119 , 13000 Tlemcen, Algérie. Email : [email protected] ● Web : http://bleu.univ-tlemcen.dz مكتب اﻻتصال جامعة شركات BUREAU DE LIAISON ENTREPRISES UNIVERSITE ⵜⴰⵙⴷⴰⵡⵉⵜ ⴰⴱⵓⴱⴽⵔ ⴱⴻⵍⵇⴰⵢⴷ ⵏ ⵜⵍⵎⵙⴰⵏ ● جامعة تلمسان University Office for University Industry Collaboration Université de Tlemcen ● Univesity of Tlemcen o Softwares
    [Show full text]
  • Karazeev Cv.Pdf
    Anton Karazeev [email protected] EDUCATION Master of Science Moscow Institute of Physics and September 2019 — July 2021 Technology Moscow, Russia • M.Sc. in Computer Science and Physics, Department of Innovation and High Technologies • Applied Mathematics and Physics • Master’s Thesis: “Machine Learning-based content assist for 1C:Enterprise IDE” [Presentation] [Code] Bachelor of Science Moscow Institute of Physics and September 2014 — July 2019 Technology Moscow, Russia • B.Sc. in Computer Science and Physics, Department of Innovation and High Technologies • Coursework for the state qualification exam in Physics at MIPT: “Molecular Dynamics” [Code] • Undergraduate Coursework: “Advanced Parser for Biomedical Texts” [Poster at MCCMB’17] • Bachelor’s Thesis: “Development of a mechanism for Anomaly Detection” [Presentation] [Code] EXPERIENCE Backend Developer 360dialog November 2020 — Present Berlin, Germany (remotely) • Planning, implementing, maintaining and improving software stack and its architecture for WhatsApp Business messaging. • Managing and planning of challenging software projects. • Solving technically complex problems to ensure a seamless messaging experience for the clients. • Python, Stripe API, JIRA API, Billing automation, Notification Emails automation. Technical Support Specialist 360dialog July — November 2020 Berlin, Germany (remotely) • Support clients & partners with technical aspects of Whatsapp Business API. • Responsible for the end-to-end process from onboarding to post-setup activities. • Support in submitting of clients & partners for WhatsApp Business Account (WABA) via Facebook Business Manager (FBM). Machine Learning Researcher Laboratory for Digital Business March 2019 — Present Moscow, Russia (remotely) • Responsible for research on Anomalies and Outliers Detection. • Found and fixed a bug concerning model based on Generative Adversarial Active Learning (GAAL) in PyOD toolkit for outlier detection.
    [Show full text]