Texture Generation with Neural Cellular Automata

Total Page:16

File Type:pdf, Size:1020Kb

Texture Generation with Neural Cellular Automata Texture Generation with Neural Cellular Automata Alexander Mordvintsev* Eyvind Niklasson* Ettore Randazzo Google Research fmoralex, eyvind, [email protected] Abstract derlying state manifold. Furthermore, we investigate prop- erties of the learned models that are both useful and in- Neural Cellular Automata (NCA1) have shown a remark- teresting, such as non-stationary dynamics and an inherent able ability to learn the required rules to ”grow” images robustness to damage. Finally, we make qualitative claims [20], classify morphologies [26] and segment images [28], that the behaviour exhibited by the NCA model is a learned, as well as to do general computation such as path-finding distributed, local algorithm to generate a texture, setting [10]. We believe the inductive prior they introduce lends our method apart from existing work on texture generation. arXiv:2105.07299v1 [cs.AI] 15 May 2021 itself to the generation of textures. Textures in the natural We discuss the advantages of such a paradigm. world are often generated by variants of locally interact- ing reaction-diffusion systems. Human-made textures are likewise often generated in a local manner (textile weaving, 1. Introduction for instance) or using rules with local dependencies (reg- Texture synthesis is an actively studied problem of com- ular grids or geometric patterns). We demonstrate learn- puter graphics and image processing. Most of the work in ing a texture generator from a single template image, with this area is focused on creating new images of a texture the generation method being embarrassingly parallel, ex- specified by the provided image pattern [8, 17]. These im- hibiting quick convergence and high fidelity of output, and ages should give the impression, to a human observer, that requiring only some minimal assumptions around the un- they are generated by the same stochastic process that gen- erated the provided sample. An alternative formulation of * Contributed equally. 1We use NCA to mean both Neural Cellular Automata and Neural Cel- the texture synthesis problem is searching for a stochastic lular Automaton in this work. process that allows efficient sampling from the texture im- 1 age distribution defined by the input image. With the advent example. rxs denotes a matrix of per-component gradients 2 2 of deep neural networks, feed-forward convolutional gener- over x, and rxs is a vector of laplacians . The evolution ators have been proposed that transform latent vectors of of the system starts with some initial state s0 and is guided random i.i.d. values into texture image samples [35]. by a space-time uniform rule of f. We don’t imply the exis- Many texture patterns observed in nature result from lo- tence of a static final state of the pattern evolution, but just cal interactions between tiny particles, cells or molecules, want the system to produce an input-like texture as early as which lead to the formation of larger structures. This dis- possible, and perpetually maintain this similarity . tributed process of pattern formation is often referred to as self-organisation. Typical computational models of such 2.2. From PDEs to Cellular Automata systems are systems of PDEs [34,4], cellular automata, In order to evaluate the behaviour of a PDE system on multi-agent or particle systems. a digital computer, one must discretize the spatio-temporal In this work, we use the recently proposed Neural Cel- domain, provide the discrete versions of gradient and Lapla- lular Automata (NCA) [20, 26, 28] as a biologically plausi- cian operators, and specify the integration algorithm. Dur- ble model of distributed texture pattern formation. The im- ing training we use a uniform Cartesian raster 2D grid with age generation process is modelled as an asynchronous, re- torus topology (i.e. wrap-around boundary conditions). current computation, performed by a population of locally- Note that the system now closely mirrors that of a Cellular communicating cells arranged in a regular 2D grid. All cells Automata - there is a uniform raster grid, with each point share the same differentiable update rule. We use backprop- undergoing time evolution dependant only on the neigh- agation through time and a grid-wide differentiable objec- bouring cells. The evolution of the CA state st(x; y), where tive function to train the update rule, which is able to syn- x and y are integer cell coordinates, is now given by thesise a pattern similar to a provided example. The proposed approach achieves a very organic-looking pt = concat(st;Kx ∗ st;Ky ∗ st;Klap ∗ st) dynamic of progressive texture synthesis through local s = s + f(p )δ communication and allows great flexibility in post-training t+1 t t x;y;t adaptation. The decentralized, homogeneous nature of the Discrete approximations of gradient and Laplacian opera- computation performed by the learned synthesis algorithm tors are provided by linear convolutions with a set of 3x3 potentially allows the embedding of their implementations kernels K , K and K . We use Sobel filters [31] and a in future media, such as smart fabric displays or electronic x y lap 9-point variant of the discrete Laplacian: decorative tiles. 2−1 0 13 2−1 −2 −13 21 2 13 2. Neural CA image generator 4−2 0 25 4 0 0 0 5 42 −12 25 −1 0 1 1 2 1 1 2 1 We base our image generator on the Neural Cellular Au- Kx Ky Klap tomata model [20]. Here we summarize the key elements of the model and place them in the context of PDEs, cel- We call p a perception vector, as it gathers information lular automata, and neural networks to highlight different about the neighborhood of each cell through convolution features of the model. kernels. The function f is the per-cell learned update rule that we obtain using the optimisation process, described 2.1. Pattern-generating PDE systems later. The separation between perception and update rules Systems of partial differential equations (PDEs) have allows us to transfer learned rules to different grid struc- been used to model natural pattern formation processes for a tures and topologies, as long as the gradient and Laplacian long time. Well known examples include the seminal work operators are provided (see section 4.4). by Turing [34], or the Grey-Scott reaction diffusion patterns [22]. It seems quite natural to use PDEs for texture synthe- Stochastic updates The cell update rate is denoted by sis. Specifically, given a texture image sample, we are look- δ . In the case of the uniform update rate (δ = c), the ing for a function f that defines the evolution of a vector x;y;t x;y;t above rule can be interpreted as a step of the explicit Euler function s(x; t), defined on a two-dimensional manifold x: integration method. If all cells are updated synchronously, @s initial conditions s0 have to vary from cell-to-cell in order = f(s; r s; r2 s) @t x x to break the symmetry. This can be achieved by initializ- ing the grid with random noise. The physical implemen- where s represents a k dimensional vector, whose first three tation of the synchronous model would require existence components correspond to the visible RGB color channels: 0 1 2 3 k−1 s = (s = R; s = G; s = B; s ; :::; s ). The RGB 2We added the Lapacian kernel to make the system general enough to channels should form the texture, similar to the provided reproduce the Gray-Scott reaction-diffusion system. 2 with learned NCA models in real time. We refer readers to 4 the supplemental materials and the code release . Parameters The cell-state vector size (including visi- 12 ble RGB) is st 2 . Perception vector size is 4 ∗ 12; R p 2 R48. The hidden layer size is 96. Thus, matrices W0;W1 have dimensions 48x96 and 96x12. Total number of CA parameters is 5868. Figure 1. Texture NCA model architecture. 3. Training the Neural CA 3.1. Objective of a global clock, shared by all cells. In the spirit of self- In order to train a NCA we need to define differentiable organisation, we tried to decouple the cell updates. Fol- objective (loss) functions, that measure the current perfor- 3 lowing the [20], we emulate the asynchronous cell updates mance of the system, and provide a useful gradient to im- by independently sampling δx;y;t from f0; 1g for each cell prove it. We experiment with two objectives - a VGG- at each step, with Pr(δx;y;t = 1) = 0:5. Asynchronous based texture synthesis loss [11] and an Inception-based updates allow to CA to break the symmetry even for the feature visualisation loss [23]. Hereinafter, we refer to these uniform initial state s0. as ”texture-loss” and ”inception-loss”, respectively. These losses are applied to the snapshots of CA grid state s, and 2.3. From CA to Neural Networks are only affected by the first three values of state vectors, The last component that we have to define is the update that are treated as RGB-color channels. function. We use f(p) = relu(pW0 + b0)W1 + b1, where p is a perception vector, and W0;1, b0;1 are the learned pa- Texture Loss Style transfer is an extensively studied ap- rameters. If we look at the resulting system from the dif- plication of deep neural networks. L. Gatys et al. [11] in- ferentiable programming perspective, we can see that the troduced the approach common to almost all work since - whole CA image generator can be represented by a recur- recording and matching neuronal activations in certain lay- rent convolutional neural network (Fig.1), that can be built ers of an ”observer” network - a network trained to com- from standard components, available in modern deep learn- plete a different task entirely whose internal representations ing frameworks.
Recommended publications
  • Self-Organization Principles of Intracellular Pattern Formation
    Self-organization principles of intracellular pattern formation J. Halatek. F. Brauns, and E. Frey∗ Arnold{Sommerfeld{Center for Theoretical Physics and Center for NanoScience, Department of Physics, Ludwig-Maximilians-Universit¨atM¨unchen, Theresienstraße 37, D-80333 M¨unchen,Germany (Dated: February 21, 2018) Abstract Dynamic patterning of specific proteins is essential for the spatiotemporal regulation of many important intracellular processes in procaryotes, eucaryotes, and multicellular organisms. The emergence of patterns generated by interactions of diffusing proteins is a paradigmatic example for self-organization. In this article we review quantitative models for intracellular Min protein patterns in E. coli, Cdc42 polarization in S. cerevisiae, and the bipolar PAR protein patterns found in C. elegans. By analyzing the molecular processes driving these systems we derive a theoretical perspective on general principles underlying self-organized pattern formation. We argue that intracellular pattern formation is not captured by concepts such as \activators", \inhibitors", or \substrate-depletion". Instead, intracellular pattern formation is based on the redistribution of proteins by cytosolic diffusion, and the cycling of proteins between distinct conformational states. Therefore, mass-conserving reaction-diffusion equations provide the most appropriate framework to study intracellular pattern formation. We conclude that directed transport, e.g. cytosolic diffusion along an actively maintained cytosolic gradient, is the key process underlying pattern formation. Thus the basic principle of self-organization is the establishment and maintenance of directed transport by intracellular protein dynamics. Keywords: self-organization; pattern formation; intracellular patterns; reaction-diffusion; cell polarity; arXiv:1802.07169v1 [physics.bio-ph] 20 Feb 2018 NTPases 1 INTRODUCTION In biological systems self-organization refers to the emergence of spatial and temporal structure.
    [Show full text]
  • Guiding Self-Organized Pattern Formation in Cell Polarity Establishment
    ARTICLES https://doi.org/10.1038/s41567-018-0358-7 Guiding self-organized pattern formation in cell polarity establishment Peter Gross1,2,3,8, K. Vijay Kumar" "3,4,8, Nathan W. Goehring" "5,6, Justin S. Bois" "7, Carsten Hoege2, Frank Jülicher3 and Stephan W. Grill" "1,2,3* Spontaneous pattern formation in Turing systems relies on feedback. But patterns in cells and tissues seldom form spontane- ously—instead they are controlled by regulatory biochemical interactions that provide molecular guiding cues. The relationship between these guiding cues and feedback in controlled biological pattern formation remains unclear. Here, we explore this relationship during cell-polarity establishment in the one-cell-stage Caenorhabditis elegans embryo. We quantify the strength of two feedback systems that operate during polarity establishment: feedback between polarity proteins and the actomyosin cortex, and mutual antagonism among polarity proteins. We characterize how these feedback systems are modulated by guid- ing cues from the centrosome, an organelle regulating cell cycle progression. By coupling a mass-conserved Turing-like reac- tion–diffusion system for polarity proteins to an active-gel description of the actomyosin cortex, we reveal a transition point beyond which feedback ensures self-organized polarization, even when cues are removed. Notably, the system switches from a guide-dominated to a feedback-dominated regime well beyond this transition point, which ensures robustness. Together, these results reveal a general criterion for controlling biological pattern-forming systems: feedback remains subcritical to avoid unstable behaviour, and molecular guiding cues drive the system beyond a transition point for pattern formation. ell polarity establishment in Caenorhabditis elegans zygotes phase where myosin appears to reach a steady state (Supplementary is a prototypical example for cellular pattern formation that Fig.
    [Show full text]
  • Pattern Formation, Social Forces, and Diffusion Instability in Games
    EPJ manuscript No. (will be inserted by the editor) Pattern Formation, Social Forces, and Diffusion Instability in Games with Success-Driven Motion Dirk Helbing ETH Zurich, UNO D11, Universit¨atstr.41, 8092 Zurich, Switzerland Received: date / Revised version: date Abstract. A local agglomeration of cooperators can support the survival or spreading of cooperation, even when cooperation is predicted to die out according to the replicator equation, which is often used in evolutionary game theory to study the spreading and disappearance of strategies. In this paper, it is shown that success-driven motion can trigger such local agglomeration and may, therefore, be used to supplement other mechanisms supporting cooperation, like reputation or punishment. Success-driven motion is formulated here as a function of the game-theoretical payoffs. It can change the outcome and dynamics of spatial games dramatically, in particular as it causes attractive or repulsive interaction forces. These forces act when the spatial distributions of strategies are inhomogeneous. However, even when starting with homogeneous initial conditions, small perturbations can trigger large inhomogeneities by a pattern-formation instability, when certain conditions are fulfilled. Here, these instability conditions are studied for the prisoner's dilemma and the snowdrift game. Furthermore, it is demonstrated that asymmetrical diffusion can drive social, economic, and biological systems into the unstable regime, if these would be stable without diffusion. PACS. 02.50.Le Decision theory and game theory { 87.23.Ge Dynamics of social systems { 82.40.Ck Pattern formation in reactions with diffusion, flow and heat transfer { 87.23.Cc Population dynamics and ecological pattern formation 1 Introduction tions [17,18], which agree with replicator equations for the fitness-dependent reproduction of individuals in biology Game theory is a well-established theory of individual [19,20,21].
    [Show full text]
  • On Demand Solid Texture Synthesis Using Deep 3D Networks
    On Demand Solid Texture Synthesis Using Deep 3D Networks J. Gutierrez1 J. Rabin2 B. Galerne3 T. Hurtut1 1Polytechnique Montréal, Canada 2Normandie Univ. UniCaen, ENSICAEN, CNRS, GREYC, France 3Institut Denis Poisson, Université d’Orléans, Université de Tours, CNRS, France Abstract This paper describes a novel approach for on demand volumetric texture synthesis based on a deep learning framework that allows for the generation of high quality 3D data at interactive rates. Based on a few example images of textures, a generative network is trained to synthesize coherent portions of solid textures of arbitrary sizes that reproduce the visual characteristics of the examples along some directions. To cope with memory limitations and computation complexity that are inherent to both high resolution and 3D processing on the GPU, only 2D textures referred to as “slices” are generated during the training stage. These synthetic textures are compared to exemplar images via a perceptual loss function based on a pre-trained deep network. The proposed network is very light (less than 100k parameters), therefore it only requires sustainable training (i.e. few hours) and is capable of very fast generation (around a second for 2563 voxels) on a single GPU. Integrated with a spatially seeded PRNG the proposed generator network directly returns an RGB value given a set of 3D coordinates. The synthesized volumes have good visual results that are at least equivalent to the state-of-the-art patch based approaches. They are naturally seamlessly tileable and can be fully generated in parallel. Keywords : Solid texture; On demand texture synthesis; Generative networks; Deep learning; 1.
    [Show full text]
  • Using Neural Networks for Pattern Association for the Online Purchase
    View metadata, citation and similar papers at core.ac.uk brought to you by CORE provided by AIS Electronic Library (AISeL) Association for Information Systems AIS Electronic Library (AISeL) All Sprouts Content Sprouts 7-26-2009 Using Neural Networks for Pattern Association for the Online Purchase of Products Arpan Kumar Kar XLRI School of Business & Human Resources, [email protected] Supriyo Kumar De XLRI School of Business & Human Resources, [email protected] Follow this and additional works at: http://aisel.aisnet.org/sprouts_all Recommended Citation Kar, Arpan Kumar and De, Supriyo Kumar, " Using Neural Networks for Pattern Association for the Online Purchase of Products" (2009). All Sprouts Content. 281. http://aisel.aisnet.org/sprouts_all/281 This material is brought to you by the Sprouts at AIS Electronic Library (AISeL). It has been accepted for inclusion in All Sprouts Content by an authorized administrator of AIS Electronic Library (AISeL). For more information, please contact [email protected]. Working Papers on Information Systems ISSN 1535-6078 Using Neural Networks for Pattern Association for the Online Purchase of Products Arpan Kumar Kar XLRI School of Business & Human Resources, India Supriyo Kumar De XLRI School of Business & Human Resources, India Abstract Abstract: Today, a huge percentage of all the business transactions that take place in the domain of e-commerce are dominated by online shopping after the "virtual market" conceptualization of the business. This paper focuses on how pattern association rules may be obtained from the dynamic databases generated during purchases in an e-Store to maximize the profit of the marketer.
    [Show full text]
  • Evolutionary Game Theory: Theoretical Concepts and Applications To
    Physica A 389 (2010) 4265–4298 Contents lists available at ScienceDirect Physica A journal homepage: www.elsevier.com/locate/physa Evolutionary game theory: Theoretical concepts and applications to microbial communities Erwin Frey ∗ Ludwig-Maximilians-Universität München, Arnold Sommerfeld Center for Theoretical Physics and Center for NanoScience, Theresienstrasse 37, D-80333 Munich, Germany article info a b s t r a c t Article history: Ecological systems are complex assemblies of large numbers of individuals, interacting Received 30 January 2010 competitively under multifaceted environmental conditions. Recent studies using Available online 4 March 2010 microbial laboratory communities have revealed some of the self-organization principles underneath the complexity of these systems. A major role of the inherent stochasticity of its Keywords: dynamics and the spatial segregation of different interacting species into distinct patterns Population dynamics has thereby been established. It ensures the viability of microbial colonies by allowing for Game theory species diversity, cooperative behavior and other kinds of ``social'' behavior. Evolution Stochastic processes A synthesis of evolutionary game theory, nonlinear dynamics, and the theory of Nonlinear dynamics stochastic processes provides the mathematical tools and a conceptual framework for a Pattern formation deeper understanding of these ecological systems. We give an introduction into the modern formulation of these theories and illustrate their effectiveness focussing on selected examples of microbial systems. Intrinsic fluctuations, stemming from the discreteness of individuals, are ubiquitous, and can have an important impact on the stability of ecosystems. In the absence of speciation, extinction of species is unavoidable. It may, however, take very long times. We provide a general concept for defining survival and extinction on ecological time-scales.
    [Show full text]
  • Exploring Reaction-Diffusion and Pattern Formation
    Exploring Reaction-Diffusion and Pattern Formation Ramona Behravan1, Peter J. Bentley1, Robin Carlisle2 1 Department of Computer Science, University College London, Gower Street, London, WC1E 6BT, England 2 Glassworks Ltd., 34 Great Pulteney Street, London W1F 9NP, England Abstract. This article reviews the development of the concept of reaction- diffusion leading to pattern formation in living organisms. The article com- mences with an historical background and then describes biological develop- ment, and ideas of the formation of patterns using dynamic activator inhibitor systems. In addition to this, different models to represent such systems and their computer simulations are discussed. 1 Introduction The first steps toward the sciences arose out of the recognition of patterns and struc- tures. Patterns are all around us in the living and the non-living world. Formation of galaxies, mountains, rivers, crystals, zebra stripes, flower petals and butterfly wings are all examples of ordered structures and regular patterns. While it seems likely that evolution plays the major role in creating, selecting and exploiting features in living organisms, there can be no denying the role of physics in nature. Physical structures can emerge naturally without the selection pressure of natural evolution: sand dunes, snow flakes, clouds and cracks in the ground can all self-organise into ordered and re- petitive forms with clearly defined patterns. The existence of such natural pattern has led many researchers to hypothesise that in some of the features of life, natural evolution has exploited the automatic pattern- formation machinery provided by physics instead of creating her own from scratch. In this article we focus on this class of patterns, namely pattern formation of living or- ganisms.
    [Show full text]
  • Style & Content Analysis
    !"#$%&'&()*"%*"&+*,$#-.- Style & Content Analysis § What is content, what is style in an image? § What are the methods of classification for each? § With computation-generated images, how can the distinction be defined between style and content? § What if the style is the content? -- § Visual Modality – the ability to see: How to evaluate the degree to which pictorial expression through color, detail, depth, tonal shades are used? !"#$%&'()*+,%(&-.)"#+/ 0&1%2()$&0$34(5"67&4,&0("5+"58&!"#$% !"#$%&'%()*+,- &."/)$0"1%2'%345"1- 6)**78),% 9"*7:" ;<=>?@ A$%B8$"%)1*-%",C"48)..+%C)8$*8$:-%7DE)$,%7)F"% E),*"1"0%*7"%,58..%*#%41")*"%D$8GD"%F8,D).% "/C"18"$4",%*71#D:7%4#EC#,8$:%)%4#EC."/% 8$*"1C.)+%H"*I""$%*7"%4#$*"$*%)$0%,*+."%#B%)$% 8E):"'%J7D,%B)1%*7"%).:#18*7E84%H),8,%#B%*78,% C1#4",,%8,%D$5$#I$%)$0%*7"1"%"/8,*,%$#%)1*8B848).% ,+,*"E%I8*7%,8E8.)1%4)C)H8.8*8",'%K#I"F"1-%8$% #*7"1%5"+%)1"),%#B%F8,D).%C"14"C*8#$%,D47%),% #HL"4*%)$0%B)4"%1"4#:$8*8#$%$")1M7DE)$% C"1B#1E)$4"%I),%1"4"$*.+%0"E#$,*1)*"0%H+%)% 4.),,%#B%H8#.#:84)..+%8$,C81"0%F8,8#$%E#0".,%4).."0% N""C%O"D1).%O"*I#15,'% K"1"%I"%8$*1#0D4"%)$%)1*8B848).%,+,*"E%H),"0%#$%)% N""C%O"D1).%O"*I#15%*7)*%41")*",%)1*8,*84%8E):",% #B%78:7%C"14"C*D).%GD).8*+'%J7"%,+,*"E%D,",% $"D1).%1"C1","$*)*8#$,%*#%,"C)1)*"%)$0% 1"4#EH8$"%4#$*"$*%)$0%,*+."%#B%)1H8*1)1+%8E):",-% C1#F808$:%)%$"D1).%).:#18*7E%B#1%*7"%41")*8#$%#B% )1*8,*84%8E):",'%6#1"#F"1-%8$%.8:7*%#B%*7"%,*1858$:% ,8E8.)18*8",%H"*I""$%C"1B#1E)$4"M#C*8E8,"0 )1*8B848).%$"D1).%$"*I#15,%)$0%H8#.#:84).%F8,8#$-% #D1%I#15%#BB"1,%)%C)*7%B#1I)10%*#%)$%).:#18*7E84%
    [Show full text]
  • Pattern Formation in Reaction-Diffusion System on Membrane with Mechanochemical Feedback
    Pattern Formation in Reaction-Diffusion System on Membrane with Mechanochemical Feedback Naoki Tamemoto and Hiroshi Noguchi* Institute for Solid State Physics, University of Tokyo, Kashiwa, Chiba 277-8581, Japan Correspondence and requests for materials should be addressed to H.N. ([email protected] tokyo.ac.jp). 1 ABSTRACT Shapes of biological membranes are dynamically regulated in living cells. Although membrane shape deformation by proteins at thermal equilibrium has been extensively studied, nonequilibrium dynamics have been much less explored. Recently, chemical reaction propagation has been experimentally observed in plasma membranes. Thus, it is important to understand how the reaction-diffusion dynamics are modified on deformable curved membranes. Here, we investigated nonequilibrium pattern formation on vesicles induced by mechanochemical feedback between membrane deformation and chemical reactions, using dynamically triangulated membrane simulations combined with the Brusselator model. We found that membrane deformation changes stable patterns relative to those that occur on a non- deformable curved surface, as determined by linear stability analysis. We further found that budding and multi-spindle shapes are induced by Turing patterns, and we also observed the transition from oscillation patterns to stable spot patterns. Our results demonstrate the importance of mechanochemical feedback in pattern formation on deforming membranes. 2 INTRODUCTION Membrane deformation is a fundamental biological process involved in many cellular functions such as vesicular transport1, cell division2, and cell motility3. To understand these phenomena, the mechanism of membrane deformation by intracellular proteins has been investigated in detail4–8. Recently, it has been shown that the deformation of biological membranes is not just a passive phenomenon but also plays physiological roles8–15.
    [Show full text]
  • A Review: Pattern Formation and Adaptation in Multi-Robot Systems
    A Review: Pattern Formation and Adaptation in Multi-Robot Systems Erkin Bahc¸eci, Onur Soysal and Erol S¸ahin CMU-RI-TR-03-43 October 2003 Robotics Institute Carnegie Mellon University Pittsburgh, Pennsylvania 15213 c Carnegie Mellon University Abstract Recent advances in robotics have started making it feasible to deploy large numbers of inexpensive robots for tasks such as surveillance and search. However, coordination of multiple robots to accomplish such tasks remains a challenging problem. This report reviews some of the recent literature in multi-robot systems. It consists of two parts. In the first part, we reviewed the studies on the pattern formation problem, that is how can a group of robots be controlled to get into and maintain a formation. The second part reviews the studies that used adaptation strategies in controlling multi- robot systems. Specifically we have investigated (1) how learning (life-long adaptation) is used to make multi-robot systems respond to changes in the environment as well in the capabilities of individual robots, and (2) how evolution is used to generate group behaviors. I Contents 1 Introduction 1 2 Pattern formation in multi-robot systems 1 2.1 Centralized pattern formation . 1 2.2 Decentralized pattern formation . 2 3 Adaptation in multi-robot systems 5 3.1 Individual level adaptation . 5 3.2 Group level adaptation . 7 4 Conclusion 9 5 Acknowledgements 9 III 1 Introduction Recent advances in robotics have started making it feasible to deploy large numbers of inexpensive robots for tasks such as surveillance and search. However, coordination of multiple robots to accomplish such tasks remains a challenging problem.
    [Show full text]
  • Pattern Formation Models and Developmental Constraints GEORGE F
    THE JOURNAL OF EXPERIMENTAL ZOOLOGY 251:186-202 (1989) Pattern Formation Models and Developmental Constraints GEORGE F. OSTER AND JAMES D. MURRAY Departments of Biophysics, Entomology, and Zoology, University of California, Berkeley, California 94720 (G.F.0.); Centre for Mathematical Biology, Mathematical Institute, Oxford, OX1 3LB, England (J.D.M.) ABSTRACT Most schemes for embryonic pattern formation are built around the notion of lateral inhibition. Models of this type arise in many settings, and all share some common character- istics. In this paper we examine a number of pattern formation models and show how the phenome- non of lateral inhibition constrains the possible geometries that can arise. Morphogenetic models have provided embry- how the chemical prepattern is laid down. This ologists with insight into how embryonic patterns can be modeled in one of two ways. 1) Simple may be laid down. In this chapter we shall illus- chemical gradients are established across tissues, trate the basic pattern-forming principles of these assuming that certain cells act as sources or sinks models using as an example the formation of for the chemicals, which diffuse from cell to cell bones in the vertebrate limb. The physics of the via junctions, or through the intercellular space. pattern forming process imposes constraints on 2) A chemical prepattern can arise by means of the possible cartilage patterns the limb may ex- “diffusion-driven instabilities,” a notion first pro- hibit. These constraints are reflected in the gen- posed by Turing (’52), and subsequently elabo- eral similarity one observes amongst all tretrapod rated and applied by numerous authors to a va- limbs.
    [Show full text]
  • Inductive Pattern Formation
    INDUCTIVE PATTERN FORMATION A Dissertation by RAYMOND CHARLES MULLICAN Submitted to the Office of Graduate and Professional Studies of Texas A&M University in partial fulfillment of the requirements for the degree of DOCTOR OF PHILOSOPHY Chair of the Committee, Gabriela Campagnol Co-Chair of the Committee, Mardelle M. Shepley Committee Members, Jay R. Walton Robert K. Popp Head of Department, Robert Warden December 2017 Major Subject: Architecture Copyright 2017 Raymond Charles Mullican ABSTRACT With the extended computational limits of algorithmic recursion, scientific investigation is transitioning away from computationally decidable problems and beginning to address computationally undecidable complexity. The analysis of deductive inference in structure-property models are yielding to the synthesis of inductive inference in process-structure simulations. Process-structure modeling has examined external order parameters of inductive pattern formation, but investigation of the internal order parameters of self-organization have been hampered by the lack of a mathematical formalism with the ability to quantitatively define a specific configuration of points. This investigation addressed this issue of quantitative synthesis. Local space was developed by the Poincare inflation of a set of points to construct neighborhood intersections, defining topological distance and introducing situated Boolean topology as a local replacement for point-set topology. Parallel development of the local semi-metric topological space, the local semi-metric
    [Show full text]