Active Learning Methods for Dynamic Job Shop Scheduling Using Genetic Programming Under Uncertain Environment

Total Page:16

File Type:pdf, Size:1020Kb

Active Learning Methods for Dynamic Job Shop Scheduling Using Genetic Programming Under Uncertain Environment Active Learning Methods for Dynamic Job Shop Scheduling using Genetic Programming under Uncertain Environment by Deepak Karunakaran A thesis submitted to the Victoria University of Wellington in fulfilment of the requirements for the degree of Doctor of Philosophy in Computer Science. Victoria University of Wellington 2019 Abstract Scheduling is an important problem in artificial intelligence and opera- tions research. In production processes, it deals with the problem of alloca- tion of resources to different tasks with the goal of optimizing one or more objectives. Job shop scheduling is a classic and very common scheduling problem. In the real world, shop environments dynamically change due to events such as the arrival of new jobs and machine breakdown. In such manufacturing environments, uncertainty in shop parameters is typical. It is of vital importance to develop methods for effective scheduling in such practical settings. Scheduling using heuristics like dispatching rules is very popular and suitable for such environments due to their low computational cost and ease of implementation. For a dynamic manufacturing environment with varying shop scenarios, using a universal dispatching rule is not very ef- fective. But manual development of effective dispatching rules is difficult, time consuming and requires expertise. Genetic programming is an evo- lutionary approach which is suitable for automatically designing effective dispatching rules. Since the genetic programming approach searches in the space of heuristics (dispatching rules) instead of building up a sched- ule, it is considered a hyper-heuristic approach. Genetic programming like many other evolutionary approaches is com- putationally expensive. Therefore, it is of vital importance to present the genetic programming based hyper-heuristic (GPHH) system with schedul- ing problem instances which capture the complex shop scenarios captur- ing the difficulty in scheduling. Active learning is a related concept from machine learning which concerns with effective sampling of those training instances to promote the accuracy of the learned model. The overall goal of this thesis is to develop effective and efficient ge- netic programming based hyper-heuristic approaches using active learn- ing techniques for dynamic job shop scheduling problems with one or more objectives. This thesis develops new representations for genetic programming en- abling it to incorporate the uncertainty information about processing times of the jobs. Furthermore, a cooperative co-evolutionary approach is devel- oped for GPHH which evolves a pair of dispatching rules for bottleneck and non-bottleneck machines in the dynamic environment with uncer- tainty in processing times arising due to varying machine characteristics. The results show that the new representations and training approaches are able to significantly improve the performance of evolved dispatching rules. This thesis develops a new GPHH framework in order to incorpo- rate active learning methods toward sampling DJSS instances which pro- mote the evolution of more effective rules. Using this framework, two new active sampling methods were developed to identify those schedul- ing problem instances which promoted evolution of effective dispatching rules. The results show the advantages of using active learning methods for scheduling under the purview of GPHH. This thesis investigates a coarse-grained model of parallel evolution- ary approach for multi-objective dynamic job shop scheduling problems using GPHH. The outcome of the investigation was utilized to extend the coarse-grained model and incorporate an active sampling heuristic to- ward identifying those scheduling problem instances which capture the conflict between the objectives. The results show significant improvement in the quality of the evolved Pareto set of dispatching rules. Through this thesis, the following contributions have been made. (1) New representations and training approaches for GPHH to incorporate uncertainty information about processing times of jobs into dispatching rules to make them more effective in a practical shop environment. (2) A new GPHH framework which enables active sampling of scheduling prob- lem instances toward evolving dispatching rules effective across complex shop scenarios. (3) A new active sampling heuristic based on a coarse- grained model of parallel evolutionary approach for GPHH for multi- objective scheduling problems. iv List of Publications 1. Karunakaran, Deepak, Yi Mei, Gang Chen, and Mengjie Zhang. “Dy- namic job shop scheduling under uncertainty using genetic program- ming.” In Proceedings of the Intelligent and Evolutionary Systems, Springer, 2017, pp. 195-210, Canberra. 2. Karunakaran, Deepak, Yi Mei, Gang Chen, and Mengjie Zhang. “Evolv- ing dispatching rules for dynamic Job shop scheduling with uncer- tain processing times.” In Proceedings of IEEE Congress on Evolu- tionary Computation (CEC), IEEE, 2017, pp. 364-371, San Sebastian. 3. Karunakaran, Deepak, Yi Mei, Gang Chen, and Mengjie Zhang. “To- ward evolving dispatching rules for dynamic job shop scheduling under uncertainty.” In Proceedings of the Genetic and Evolutionary Computation Conference (GECCO), ACM, 2017, pp. 282-289, Berlin. 4. Karunakaran, Deepak, Gang Chen, and Mengjie Zhang. “Parallel multi-objective job shop scheduling using genetic programming.” In Proceedings of Australasian Conference on Artificial Life and Com- putational Intelligence (ACALCI), Springer, 2016, pp. 234-245, Can- berra. 5. Karunakaran, Deepak, Yi Mei, Gang Chen, and Mengjie Zhang. “Sam- pling Heuristics for Multi-objective Dynamic Job Shop Scheduling Using Island Based Parallel Genetic Programming.” In Proceedings v vi of International Conference on Parallel Problem Solving from Nature (PPSN), Springer, 2018, pp. 347-359, Coimbra. 6. “Active Learning Methods for Dynamic Job Shop Scheduling under Uncertainty Using Genetic Programming based Hyper-heuristics” (Journal paper in preparation). Acknowledgments I would like to thank my parents and wife for their continuous support and sacrifices throughout this journey. I am grateful to Victoria University of Wellington for the financial sup- port through the Victoria Doctoral Scholarship and Victoria Doctoral Sub- mission Scholarship. I am also grateful to the administrative staff at the Engineering and Computer Science school for their support throughout my study. I would like to acknowledge my gratitude to my supervisors Prof.Mengjie Zhang, Dr.Aaron Chen and Dr.Yi Mei for their support and supervision to- ward the completion of this PhD thesis. vii viii Contents List of Publications iv Acknowledgement vii List of Figures xii List of Tables xv 1 Introduction1 1.1 Problem Statement........................1 1.2 Motivations............................4 1.3 Research Goals..........................9 1.4 Major Contributions....................... 13 1.5 Organization of thesis...................... 15 2 Literature Review 17 2.1 Scheduling............................. 18 2.1.1 Job Shop Scheduling Problem.............. 19 2.1.2 Uncertainty in Scheduling................ 23 2.1.3 Dynamics in Scheduling................. 24 2.2 Machine Learning and Hyper-heuristics............ 25 2.2.1 Machine Learning.................... 25 2.2.2 Heuristics, Meta-heuristics and Hyper-heuristics... 28 2.3 Evolutionary Computation................... 30 ix x CONTENTS 2.3.1 Evolutionary Algorithms................ 30 2.3.2 Swarm Intelligence.................... 31 2.4 Active Learning.......................... 32 2.4.1 Active Learning in Evolutionary Algorithms..... 34 2.5 Parallel Evolutionary Algorithms................ 35 2.6 Genetic Programming...................... 39 2.6.1 Multi-objective GP (MOGP)............... 44 2.6.2 Genetic Programming based Hyper-heuristics (GPHH) 46 2.7 Related Work to Job Shop Scheduling............. 46 2.7.1 Solution Approaches for Static JSS........... 46 2.7.2 Solution Approaches for Dynamic JSS......... 51 2.7.3 GPHH for scheduling.................. 53 2.7.4 Cooperative Co-evolution for JSS............ 56 2.7.5 Difference in Solution Approaches to Static and Dy- namic JSS Problems................... 57 2.7.6 Approaches for Dealing with Uncertainty in JSS... 57 2.8 Parallel Hyper-heuristics and MOEAs............. 59 2.9 Summary of Literature Survey................. 60 3 Genetic Programming based Hyper-Heuristics for Dynamic Job Shop Scheduling under Uncertainty 63 3.1 Introduction............................ 63 3.1.1 Chapter Goals....................... 66 3.1.2 Chapter Organization.................. 66 3.2 New representations....................... 67 3.2.1 Simulation Model with Uncertainty.......... 67 3.2.2 Exponential Moving Average (EMA) Terminal.... 69 3.2.3 Ex-post and Ex-ante Optimization........... 70 3.2.4 Experiment Design.................... 75 3.2.5 Results and Discussions................. 79 3.2.6 Analysis.......................... 85 CONTENTS xi 3.2.7 Section Summary..................... 87 3.3 Cooperative Co-evolutionary method............. 88 3.3.1 Experiment Design.................... 98 3.3.2 Results and Discussions................. 100 3.3.3 Analysis.......................... 105 3.3.4 Section Summary..................... 106 3.4 Further Discussion........................ 107 3.5 Chapter Summary......................... 107 4 Active Sampling Methods for Dynamic Job Shop Scheduling un- der Uncertainty 110 4.1 Introduction............................ 110 4.1.1 Shop Scenarios in Dynamic Environment....... 111 4.1.2 Multiple Dispatching
Recommended publications
  • (12) United States Patent (10) Patent No.: US 8,513,329 B2 Lake Et Al
    USOO8513329B2 (12) United States Patent (10) Patent No.: US 8,513,329 B2 Lake et al. (45) Date of Patent: Aug. 20, 2013 (54) CHEMICAL ADDITIVES TO MAKE 6,296,889 B1 10/2001 Ott et al. POLYMERIC MATERALS 6,635,692 B1 10/2003 Christie et al. 7,037,983 B2 5/2006 Huang et al. BODEGRADABLE 7,053,130 B2 5/2006 Nagarajan 7,067,596 B2 6/2006 Bastioli et al. (75) Inventors: John Allen Lake, Cedar Crest, NM 7,265,160 B2 * 9/2007 Oka et al. ..................... 521 50.5 (US); Samuel David Adams, 7,368,503 B2 5/2008 Hale Albuquerque, NM (US) 7,369,503 B2 * 5/2008 Takahashi et al. ............ 370,236 s 7,560,266 B2 7/2009 Bramucci et al. 7,812,066 B2 10/2010 Takenaka et al. (73) Assignee: Bio-Tec Environmental, LLC, 7.816,424 B2 10/2010 Takahashi et al. Albuquerque, NM (US) 8.222,316 B2 7/2012 Lake et al. 2003. O157214 A1 8/2003 Bonsignore et al. (*) Notice: Subject to any disclaimer, the term of this 2004.0068059 Al 42004 Katayama et al. patent is extended or adjusted under 35 3.SSA A. 2. MEC. et ca.ea U.S.C. 154(b) by 158 days. 2005. O1541 14 A1 7, 2005 Hale 2005/O181157 A1 8, 2005 Otome (21) Appl. No.: 12/113,844 2005/0181158 A1 8/2005 Otome et al. 2005/0208095 A1 9, 2005 Hunter et al. (22) Filed: May 1, 2008 2007, OO 10632 A1 1/2007 Kaplanet al.
    [Show full text]
  • Forms of Intelligence. Concept Cards for Co-Species Care
    forms of intelligence. concept cards for co-species care. by kaajal modi 2 forms of intelligence. concept cards for co-species care. 3 contents. the cards. 4 card footnotes. 7 cross-species collaborators. 34 the team. 39 symbols & symbioses. 41 Forms of Intelligence is an ongoing project led by Knowle references. 47 West Media Centre exploring how expanded understandings of ‘intelligence’ can inspire the design and creation of new technologies and systems for the benefit of all. Commissioned by Knowle West Media Centre and Digital Cultures Research Centre © September 2020 4 forms of intelligence. concept cards for co-species care. 5 who are they for? the The cards are designed to act as conversation starters and inspirational prompts. for anyone involved in a making process. How often do you challenge yourself to stop and think cards. differently, to see from a different perspective, or think deeply about who or what is being impacted by your decisions? The cards are draw on different forms of animal, plant and microbial intelligence that often get overlooked in human- what are they? led projects and processes. They also invite you to reflect on The cards and this booklet were commissioned by Knowle the humans who are connected to these organisms, whether West Media Centre as part of the Forms of Intelligence directly, by working with them, or indirectly, by sharing land project, and were made by artist and researcher Kaajal Modi. and resources with them. The cards have been made in response to and are inspired by If you are looking for inspiration and ready to open your a series of collaborative workshops between eight people from mind to think more expansively about all living beings, then Knowle West, Bristol, Kent, and Colombia with expertise in these cards are for you.
    [Show full text]
  • Genome-Inspired Chemical Exploration of Marine Fungus Aspergillus Fumigatus MF071
    marine drugs Article Genome-Inspired Chemical Exploration of Marine Fungus Aspergillus fumigatus MF071 Jianying Han 1,2 , Miaomiao Liu 1 , Ian D. Jenkins 1, Xueting Liu 3, Lixin Zhang 2,3, Ronald J. Quinn 1,* and Yunjiang Feng 1,* 1 Griffith Institute for Drug Discovery, Griffith University, Brisbane, QLD 4111, Australia; jianying.han@griffithuni.edu.au (J.H.); miaomiao.liu@griffith.edu.au (M.L.); i.jenkins@griffith.edu.au (I.D.J.) 2 Key Laboratory of Pathogenic Microbiology and Immunology, Institute of Microbiology, Chinese Academy of Sciences, Beijing 100101, China; [email protected] 3 State Key Laboratory of Bioreactor Engineering, East China University of Science and Technology, Shanghai 200237, China; [email protected] * Correspondence: r.quinn@griffith.edu.au (R.J.Q.); y.feng@griffith.edu.au (Y.F.); Tel.: +61-7-3735-6006 (R.J.Q.); +61-7-3735-8367 (Y.F.) Received: 8 June 2020; Accepted: 2 July 2020; Published: 6 July 2020 Abstract: The marine-derived fungus Aspergillus fumigatus MF071, isolated from sediment collected from the Bohai Sea, China, yielded two new compounds 19S,20-epoxy-18-oxotryprostatin A (1) and 20-hydroxy-18-oxotryprostatin A (2), in addition to 28 known compounds (3–30). The chemical structures were established on the basis of 1D, 2D NMR and HRESIMS spectroscopic data. This is the first report on NMR data of monomethylsulochrin-4-sulphate (4) and pseurotin H (10) as naturally occurring compounds. Compounds 15, 16, 20, 23, and 30 displayed weak antibacterial activity (minimum inhibitory concentration: 100 µg/mL). Compounds 18 and 19 exhibited strong activity against S.
    [Show full text]
  • Macromolecular Networks and Intelligence in Microorganisms
    HYPOTHESIS AND THEORY ARTICLE published: 22 July 2014 doi: 10.3389/fmicb.2014.00379 Macromolecular networks and intelligence in microorganisms Hans V. Westerhoff 1,2,3 †, Aaron N. Brooks 4,5 †, Evangelos Simeonidis 4,6 †, Rodolfo García-Contreras 7†, Fei He 8 , Fred C. Boogerd 1, Victoria J. Jackson 9 , Valeri Goncharuk 10,11,12 and Alexey Kolodkin 4,6 * 1 Department of Molecular Cell Physiology, Vrije Universiteit Amsterdam, Amsterdam, Netherlands 2 Manchester Centre for Integrative Systems Biology, The University of Manchester, Manchester, UK 3 Synthetic Systems Biology, University of Amsterdam, Amsterdam, Netherlands 4 Institute for Systems Biology, Seattle, WA, USA 5 Molecular and Cellular Biology Program, University of Washington, Seattle, WA, USA 6 Luxembourg Centre for Systems Biomedicine, University of Luxembourg, Esch-sur-Alzette, Luxembourg 7 Departamento de Bioquímica, Instituto Nacional de Cardiología, Mexico City, Mexico 8 Department of Automatic Control and Systems Engineering, The University of Sheffield, Sheffield, UK 9 School of Computer Science, The University of Manchester, Manchester, UK 10 Netherlands Institute for Neuroscience, Amsterdam, Netherlands 11 Russian Cardiology Research Center, Moscow, Russia 12 Department of Medicine, Center for Alzheimer and Neurodegenerative Research, University of Alberta, Edmonton, AB, Canada Edited by: Living organisms persist by virtue of complex interactions among many components Kevin Bradley Clark, Veterans Affairs organized into dynamic, environment-responsive networks that span multiple scales and Greater Los Angeles Healthcare System, USA dimensions. Biological networks constitute a type of information and communication technology (ICT): they receive information from the outside and inside of cells, integrate Reviewed by: Francisca Fernández-Piñas, and interpret this information, and then activate a response.
    [Show full text]
  • AI-To-Microbe Architecture: Simulation, Intelligence, Consciousness
    Dennis Dollens Universitat Internacional de Catalunya, Barcelona. ESARQ [email protected] AI-to-Microbe Architecture: Simulation, Intelligence, Consciousness Abstract Keywords This paper probes questions of how big machines— Metabolic Architecture, Artificial Intelligence (AI), buildings—can function as hybrid metabolic/AI ALife, Alan Turing, Ludwig Wittgenstein, Computational organisms. Focusing on AI, artificial life (ALife), and Simulation. microbial intelligence I look through the lens of Ludwig Wittgenstein’s Tractatus and Alan Turing’s algorithmic 1. Propositions Toward Metabolic plant simulations to source modernist theory for Architectures biointelligent architectures. I’m using scant records and testimony interpreted through each thinker’s writings, Research strategies to regulate exploratory sets of architecture, and/or simulations. This text is then a generative design actions are called upon here for device for considering ways-of-being within, and ways- reasoning the inclusion of AI, synthetic life, and bio- of-thinking about, theory/practice for the fusion of algorithmic generation into the production of metabolic architectures. These exploratory tactics underwrite biological-to-biosynthetic intelligences (microbes, plants, animals, AI, machines.) Resulting theory thereafter hypothesizing biointelligent buildings as parts of nature. supports the development of bioremedial environmental Therefore, to link theory and observation I evolve cleanup addressing climate change. My proposition then strategies for the investigation of matter and forces deploys biomimetic and laboratory data to nurture starting with symbolic languages to sort types of metabolically driven intelligences partnered with AI intelligence. in the production of architectures. That ontological pathway stems from machine learning, bio-surveillance, Specifically, concepts-terms such as “atomic facts,” and digital simulation at object, agent, and urban scales.
    [Show full text]
  • The Biological Turn in Computation, Communication, and Control
    Vital Networks: The Biological Turn in Computation, Communication, and Control By Sandra Robinson A thesis submitted to the Graduate Program in Sociology in conformity with the requirements for the Degree of Doctor of Philosophy Queen’s University Kingston, Ontario, Canada January 2014 Copyright © Sandra Robinson, 2014 Abstract Networks, such as the Internet, are comprised of dense information flows with expansive, multi-directional reach that continuously change—and this changeability is what keeps the network active, relative, and vital. I call the form of network exhibiting those dynamic features the vital network. This form of network is not simply the outcome of connectivity and communication between diverse affiliative objects and actors such as cell phones and humans that together convey a sense or feeling of ‘aliveness;’ it is the outcome of deliberate software programming goals for communication systems inspired by nonhuman, self-organizing biological life. The biological turn in computation produces an organizing logic for the vital network that self-propagates connections and disconnections, services, collectives, and structures proximal to forms that feel vital and dynamic. The vital network can do things, it has capacities to act, and different material consequences emerge out of the organization and coordination of communication with particular implications for human privacy, autonomy, and network transparency. In this dissertation, I examine the biological turn in computing as a crucial feature within a development program for the design of digital network control systems that rely on self-regulation and autonomous communication processes intentionally constructed to be non-transparent—to be unseen. I explore nonhuman models of control as a response to this requirement considered through three objects: microbe, simulation, and control, each understood in process terms that disclose what these things do and how they act.
    [Show full text]
  • Beyond AI: Multi-Intelligence (MI) Combining Natural and Artificial Intelligences in Hybrid Beings and Systems
    technologies Communication Beyond AI: Multi-Intelligence (MI) Combining Natural and Artificial Intelligences in Hybrid Beings and Systems Stephen Fox VTT Technical Research Centre of Finland, 02044 Espoo, Finland; stephen.fox@vtt.fi; Tel.: +358-20-722-7070 Received: 2 May 2017; Accepted: 20 June 2017; Published: 22 June 2017 Abstract: Framing strongly influences actions among technology proponents and end-users. Underlying much debate about artificial intelligence (AI) are several fundamental shortcomings in its framing. First, discussion of AI is atheoretical, and therefore has limited potential for addressing the complexity of causation. Second, intelligence is considered from an anthropocentric perspective that sees human intelligence, and intelligence developed by humans, as superior to all other intelligences. Thus, the extensive post-anthropocentric research into intelligence is not given sufficient consideration. Third, AI is discussed often in reductionist mechanistic terms. Rather than in organicist emergentist terms as a contributor to multi-intelligence (MI) hybrid beings and/or systems. Thus, current framing of AI can be a self-validating reduction within which AI development is focused upon AI becoming the single-variable mechanism causing future effects. In this paper, AI is reframed as a contributor to MI. Keywords: artificial intelligence (AI); Asilomar AI principles; framing; intelligence; multi-intelligence (MI) hybrid beings and systems; post-anthropocentric 1. Introduction The future of artificial intelligence (AI) is a topic of much debate, including opinions from tech leaders and eminent professors that AI can be an existential threat to humanity [1]. However, the framing of much of the debate about AI is narrow and overlooks the potential for multi-intelligence (MI).
    [Show full text]
  • Fmicb-05-00379
    UvA-DARE (Digital Academic Repository) Macromolecular networks and intelligence in microorganisms Westerhoff, H.V.; Brooks, A.N.; Simeonidis, E.; García-Contreras, R.; He, F.; Boogerd, F.C.; Jackson, V.J.; Goncharuk, V.; Kolodkin, A. DOI 10.3389/fmicb.2014.00379 Publication date 2014 Document Version Final published version Published in Frontiers in Microbiology License CC BY Link to publication Citation for published version (APA): Westerhoff, H. V., Brooks, A. N., Simeonidis, E., García-Contreras, R., He, F., Boogerd, F. C., Jackson, V. J., Goncharuk, V., & Kolodkin, A. (2014). Macromolecular networks and intelligence in microorganisms. Frontiers in Microbiology, 5, [379]. https://doi.org/10.3389/fmicb.2014.00379 General rights It is not permitted to download or to forward/distribute the text or part of it without the consent of the author(s) and/or copyright holder(s), other than for strictly personal, individual use, unless the work is under an open content license (like Creative Commons). Disclaimer/Complaints regulations If you believe that digital publication of certain material infringes any of your rights or (privacy) interests, please let the Library know, stating your reasons. In case of a legitimate complaint, the Library will make the material inaccessible and/or remove it from the website. Please Ask the Library: https://uba.uva.nl/en/contact, or a letter to: Library of the University of Amsterdam, Secretariat, Singel 425, 1012 WP Amsterdam, The Netherlands. You will be contacted as soon as possible. UvA-DARE is a service provided by the library of the University of Amsterdam (https://dare.uva.nl) Download date:29 Sep 2021 HYPOTHESIS AND THEORY ARTICLE published: 22 July 2014 doi: 10.3389/fmicb.2014.00379 Macromolecular networks and intelligence in microorganisms Hans V.
    [Show full text]
  • Perelandra Microbial Balancing Program Manual Revised and User-Friendly Machaelle Wright Copyright © 1996 by Machaelle Wright SECOND EDITION 2004 All Rights Reserved
    Click here to read more or order this book. Perelandra Microbial Balancing Program Manual Revised and User-Friendly Machaelle Wright Copyright © 1996 by Machaelle Wright SECOND EDITION 2004 All rights reserved. No part of this book may be used or reproduced in any manner whatsoever without written permission except in the case of brief quotations embodied in critical articles and reviews. For information, write Perelandra, Ltd. Without limiting the rights under copyright reserved above, no part of this publication may be reproduced, stored in or introduced into a retrieval system, or transmitted, in any form or by any means (electronic, mechanical, photocopying, recording or otherwise), without the prior written permission of both the copyright owner and the above publisher of this book. The scanning, uploading and distribution of this book via the Internet or via any other means without the permission of the publisher is illegal and punishable by law. Please pur- chase only authorized electronic editions and do not participate in or encourage electronic piracy of copyrightable materials. Your support of the author’s rights is appreciated. This book is manufactured in the United States of America. Designed by James F. Brisson and Machaelle Wright Cover design by James F. Brisson, Williamsville, VT 05362 Front cover image copyright © Dennis Kunkel Microscopy, Inc. Chapter title and text box wallpapers: Dennis Kunkel Microscopy, Inc. Copyediting and editing: Elizabeth McHale, Readsboro, VT 05350 Photos and computer drawings: Jenny Durrant
    [Show full text]
  • Metabolic Architectures Meet Intelligent Guerrilla Beehives
    Dialectics of Nature: Metabolic Architectures meet Intelligent Guerrilla Beehives DENNIS DOLLENS AND ANNEMARIE MAES Between realms of cellular life, city occupation, and patterns of assessment that cognitively and technology AnneMarie Maes’s Intelligent Guerrilla technologically underwrite an expanded Beehive project and Dennis Dollens’s Metabolic conceptualization of life, urban occupation, and Architectures share a theoretical lineage and form- environmental justice. We task those assessments to finding curiosity subscribing to the view that species’ hybridize theory, installations, sculpture, and intelligence and their built environments have architecture. contributions to make to experimental art and In consequence our work approach identifies species architecture. Microbe, plant, animal, and machine intelligence with social justice to underpin forms of intelligences then root our research considering bees, artistic expression and expand our understanding of microbes, and computational simulation as participants organisms, matter, and natural forces through in generative design and technological research-by-design. That approach is encapsulated communication, AI, and community. In this paper we in artist production interlacing biological and discuss sculptural, architectural, and theoretical technological theories indexed in relation to logic/design as it draws from nature to hybridize types philosophy and biocomputation. To instigate of intelligences spanning matter, phenomena, and life. methods of biological input for technological art and architecture (Figs. 1, 2), we identify metabolic and synthetic intelligences communicating in wild and Introduction urban environments. Those intelligences inaugurate dialogue between microbial life, botanic The philosophical lessons of civil disobedience from communities, signaling (as in the dance of bees) [3 ], Thoreau, the Civil Rights Movement, Paris ’68, Viet or in AI’s increasing potential to learn on its own [4 ].
    [Show full text]
  • CRISPR-Cas9/Cas12a Biotechnology and Application in Bacteria
    Synthetic and Systems Biotechnology 3 (2018) 135–149 Contents lists available at ScienceDirect Synthetic and Systems Biotechnology journal homepage: http://www.keaipublishing.com/synbio CRISPR-Cas9/Cas12a biotechnology and application in bacteria T ∗ Ruilian Yaoa,1, Di Liub,1, Xiao Jiaa, Yuan Zhenga, Wei Liua, Yi Xiaoa, a State Key Laboratory of Microbial Metabolism, School of Life Sciences and Biotechnology, Shanghai Jiao Tong University, Shanghai, 200240, China b Department of Biomass Science and Conversion Technology, Sandia National Laboratories, Livermore, CA 94551, USA ARTICLE INFO ABSTRACT Keywords: CRISPR-Cas technologies have greatly reshaped the biology field. In this review, we discuss the CRISPR-Cas with Cas9 a particular focus on the associated technologies and applications of CRISPR-Cas9 and CRISPR-Cas12a, which Cas12a (Cpf1) have been most widely studied and used. We discuss the biological mechanisms of CRISPR-Cas as immune Cas13 defense systems, recently-discovered anti-CRISPR-Cas systems, and the emerging Cas variants (such as xCas9 and Base editing Cas13) with unique characteristics. Then, we highlight various CRISPR-Cas biotechnologies, including nuclease- DNA/RNA detection dependent genome editing, CRISPR gene regulation (including CRISPR interference/activation), DNA/RNA base editing, and nucleic acid detection. Last, we summarize up-to-date applications of the biotechnologies for syn- thetic biology and metabolic engineering in various bacterial species. 1. Introduction genes of interest without manipulating the genomic sequence. Further, new technologies based on CRISPR-Cas are constantly being developed. CRISPR-Cas (Clustered Regularly Interspaced Short Palindromic For example, by fusion of deaminases to dCas, CRISPR-Cas systems can Repeats-CRISPR associated) technologies have greatly advanced our be adapted to enable base editing on DNA and RNA, without require- genetic engineering capabilities in the past few years.
    [Show full text]
  • Open Final Thesis Chaitanya.Pdf
    The Pennsylvania State University The Graduate School College of Engineering AN AGENT BASED AND ANT COLONY METAHEURISTIC APPROACH TO THE LAST MILE LOGISTICS PROBLEM A Thesis in Industrial Engineering by Chaitanya Kaul © 2018 Chaitanya Kaul Submitted in Partial Fulfillment of the Requirements for the Degree of Master of Science August 2018 ii The thesis of Chaitanya Kaul was reviewed and approved * by the following: Terry Harrison Professor of Supply Chain and Information Systems Daniel Finke Assistant Research Professor Thesis Adviser Applied Research Laboratory, Pennsylvania State University Robert Voigt Professor of Industrial and Manufacturing Engineering Graduate Program Coordinator, Department of Industrial and Manufacturing Engineering *Signatures are on file in the Graduate School. iii ABSTRACT The last mile logistics refers to the last leg of delivery in a supply-chain transportation network. More transporters and delivery runs are required to fulfill this demand and hence make the last- mile logistic a highly inefficient and time-consuming segment of a supply chain. In this thesis, the formulation of the last mile logistics problem has been presented as an optimization problem and is solved by a modified meta-heuristic algorithm and an agent-based simulation technique. For the last-mile logistics problem, the widely studied vehicle routing problem with time windows transportation model was considered, as it abstracts the salient features of numerous logistics and transportation related real-world problems. The ant colony metaheuristic was then modified to find global minimum in case of the last mile problem. In this work, the last mile logistics problem was then also solved as an agent-based simulation model.
    [Show full text]