Adaptive Memory Networks

Total Page:16

File Type:pdf, Size:1020Kb

Adaptive Memory Networks Adaptive Memory Networks Daniel Li 1 Asim Kadav 2 Abstract APIs are wrapped around hard-timeouts of 8 seconds which includes the time to transliterate the question to text on Ama- We present Adaptive Memory Networks (AMN) zon’s servers and the round-trip transfer time of question that processes input-question pairs to dynamically and the answer from the remote service, and sending the construct a network architecture optimized for response back to the device. Furthermore, developers are en- lower inference times for Question Answering couraged to provide a list of questions (“utterances”) apriori (QA) tasks. AMN processes the input story to at each processing step to assist QA processing (Amazon, extract entities and stores them in memory banks. 2017). We propose that apart from helping transliteration Starting from a single bank, as the number of in- these questions can also provide hints for reducing inference put entities increases, AMN learns to create new times for QA tasks based on large knowledge bases. banks as the entropy in a single bank becomes too high. Hence, after processing an input-question(s) Modeling QA tasks with LSTMs can be computationally pair, the resulting network represents a hierarchi- expensive which is undesirable during inference. Memory cal structure where entities are stored in different networks, a class of deep networks with explicit addressable banks, distanced by question relevance. At in- memory, have recently been used to achieve state of the ference, one or few banks are used, creating a art results on many QA tasks. Unlike LSTMs, where the tradeoff between accuracy and performance. number of parameters grows exponentially with the size of memory, memory networks are comparably parameter AMN is enabled by dynamic networks that allow efficient and can learn over longer input sequences. How- input dependent network creation and efficiency ever, they often require accessing all intermediate memory in dynamic mini-batching as well as our novel to answer a question. Furthermore, using focus of attention bank controller that allows learning discrete deci- over the intermediate state using a list of questions does sion making with high accuracy. In our results, we not address this problem. Soft attention based models com- demonstrate that AMN learns to create variable pute a softmax over all states and hard attention models are depth networks depending on task complexity and not differentiable and can be difficult to train over a large reduces inference times for QA tasks. state space. Previous work on improving inference over memory networks has focused on using unsupervised clus- tering methods to reduce the search space (Chandar et al., 1. Introduction 2016; Rae et al., 2016). Here, the memory importance is Question Answering (QA) tasks are gaining significance not learned and the performance of nearest-neighbor style due to their widespread applicability to recent commercial algorithms is often comparable to a softmax operation over applications such as chatbots, voice assistants and even med- memories. arXiv:1802.00510v1 [cs.AI] 1 Feb 2018 ical diagnosis (Goodwin & Harabagiu, 2016). Furthermore, To provide faster inference for long sequence-based inputs, many existing natural language tasks can also be re-phrased we present Adaptive Memory Networks (AMN), that con- as QA tasks. Providing faster inference times for QA tasks structs a memory network on-the-fly based on the input. is crucial. Consumer device based question-answer services Like past approaches to addressing external memory, AMN have hard timeouts for answering questions. For example, constructs the memory entity nodes dynamically. However, Amazon Alexa, a popular QA voice assistant, allows devel- distinct from past approaches, AMN stores the entities from opers to extend the QA capabilities by adding new “Skills” the input story in variable number of memory banks. The as remote services (Amazon, 2017). However, these service entities represent the hidden state of each word in the story 1University of California-Berkeley, Berkeley, USA, Work done while a memory bank is a collection of entities that are as a NEC Labs Intern. 2NEC Laboratories America, Princeton, similar w.r.t the question. As the number of entities grow, USA. Correspondence to: Daniel Li <[email protected]>, and the entropy within a single bank becomes too high, our Asim Kadav <[email protected]>. network learns to construct new memory banks and copies entities that are more relevant towards a single bank. Hence, Adaptive Memory Networks by limiting the decoding step to a dynamic number of rele- limits access during inference to specific entities reducing vant memory banks, AMN achieves lower inference times. inference times. AMN is an end-to-end trained model with dynamic learned Graph-based networks, (GG-NNs (Li et al., 2015) and GGT- parameters for memory bank creation and movement of NNs (Johnson, 2017)) use nodes with tied weights that are entities. updated based on gated-graph state updates with shared Figure1 demonstrates a simple QA task where AMN con- weights over edges. However, unlike AMN, they require structs two memory banks based on the input. During in- strong supervision over the input and teacher forcing to ference only the entities in the left bank are considered learn the graph structure. Furthermore, the cost of building reducing inference times. To realize its goals, AMN intro- and training these models is expensive and if every edge is duces a novel bank controller that uses reparameterization considered at every time-step the amount of computation trick to make discrete decisions with high accuracy while grows at the order of O(N 3) where N represents the num- maintaining differentiability. Finally, AMN also models ber of nodes/entities. AMN does not use strong supervision sentence structures on-the-fly and propagates update infor- but can solve tasks that require transitive logic by model- mation for all entities that allows it to solve all 20 bAbI ing sentence walks on the fly. EntNet constructs dynamic tasks. networks based on entities with tied weights for each en- tity (Henaff et al., 2017). A key-value update system allows 2. Related Work it to update relevant (learned) entities. However, Entnet uses soft-attention during inference to attend to all entities that Memory Networks: Memory networks store the entire incur high inference costs. To summarize, majority of the input sequence in memory and perform a softmax over hid- past work on memory networks uses softmax over memory den states to update the controller (Weston et al., 2014; nodes, where each node may represent input or an entity. Sukhbaatar et al., 2015). DMN+ connects memory to input In contrast, AMN learns to organize memory into various tokens and updates them sequentially (Xiong et al., 2016). memory banks and performs decode over fewer entities For inputs that consist of large number of tokens or en- reducing inference times. tities, these methods can be expensive during inference. AMN stores entities with tied weights in different mem- Conditional Computation & Efficient Inference: ory banks. By controlling the number of memory banks, AMN is also related to the work on conditional computation AMN achieves low inference times with reasonable accu- which allows part of networks to be active during inference racy. Nearest neighbor methods have also been explored improving computational efficiency (Bengio et al., 2015). over memory networks. For example, Hierarchical Memory Recently, this has been often accomplished using a gated Networks separates the input memory into groups using mixture of experts (Eigen et al., 2013; Shazeer et al., 2017). the MIPS algorithm (Chandar et al., 2016). However, us- AMN conditionally attends to entities in initial banks during ing MIPS is as slow as a softmax operation, so the authors inference improving performance. For faster inference propose using an approximate MIPS that gives inferior per- using CNNs, pruning (Le Cun et al., 1989; Han et al., 2016), formance. In contrast, AMN is end to end differentiable, low rank approximations (Denton et al., 2014), quantization and reasons which entities are important and constructs a and binarization (Rastegari et al., 2016) and other tricks network with dynamic depth. to improve GEMM performance (Vanhoucke et al., 2011) Neural Turing Machine (NTM) consists of a memory bank have been explored. For sequence based inputs, pruning and a differentiable controller that learns to read and write to and compression has been explored (Giles & Omlin, 1994; specific locations (Graves et al., 2014). In contrast to NTMs, See et al., 2016). However, compression results in irregular AMN memory bank controller is more coarse grained and sparsity that reduces memory costs but may not reduce the network learns to store entities in memory banks instead computation costs. Adaptive computation time (Graves, of specific locations. AMN uses a discrete bank controller 2016) learns the number of steps required for inferring that gives improved performance for bank controller actions the output and this can also be used to reduce inference over NTM’s mechanisms. However, our design is consistent times (Figurnov et al., 2016). AMN uses memory networks with the modeling studies of working memory by (Hazy with dynamic number of banks to reduce computation costs. et al., 2006) where the brain performs robust memory main- tenance and may maintain multiple working representations Dynamic networks: Dynamic neural networks that for individual working tasks. Sparse access memory uses change structure during inference have recently been possi- approximate nearest neighbors (ANN) to reduce memory ble due to newer frameworks such as Dynet and PyTorch. usage in NTMs (Rae et al., 2016). However, ANNs are Existing work on pruning can be implemented using these not differentiable. AMN, uses a input specific memory frameworks to reduce inference times dynamically like dy- organization that does not create sparse structures. This namic deep network demonstrates (Liu & Deng, 2017). Adaptive Memory Networks Mary moved to the bathroom.
Recommended publications
  • Adaptive Memory Programming for Global Optimization
    Hybrid Scatter Tabu Search for Unconstrained Global Optimization ABRAHAM DUARTE Departamento de Ciencias de la Computación, Universidad Rey Juan Carlos, Spain. [email protected] RAFAEL MARTÍ Departamento de Estadística e Investigación Operativa, Universidad de Valencia, Spain [email protected] FRED GLOVER University of Colorado, Boulder, and OptTek Systems, Inc. [email protected] ORIGINAL VERSION: OCTOBER 6, 2007 FIRST REVISION: MAY 14, 2008 SECOND REVISION: JAN 14, 2009 Abstract The problem of finding a global optimum of an unconstrained multimodal function has been the subject of intensive study in recent years, giving rise to valuable advances in solution methods. We examine this problem within the framework of adaptive memory programming (AMP), focusing particularly on AMP strategies that derive from an integration of Scatter Search and Tabu Search. Computational comparisons involving 16 leading methods for multimodal function optimization, performed on a testbed of 64 problems widely used to calibrate the performance of such methods, disclose that our new Scatter Tabu Search (STS) procedure is competitive with the state-of-the-art methods in terms of the average optimality gap achieved. Key words: Adaptive Memory Programming, Metaheuristics, Hybridization. Hybrid STS for Global Optimization / 2 1. Introduction The unconstrained continuous global optimization problem may be formulated as follows: (P) Minimize f(x) subject to l ≤ x ≤ u , x ∈ℜn , where f(x) is a nonlinear function and x is a vector of continuous and bounded variables. We investigate Adaptive Memory Programming (AMP) methods for P based on the Scatter Search (SS) and Tabu Search (TS) methodologies, and perform comparative computational testing against currently leading methods for unconstrained global optimization on a widely used benchmark set of problems for which global optima are known.
    [Show full text]
  • The Adaptive Nature of Memory
    2.15 The Adaptive Nature of Memory Lael J Schooler, Syracuse University, Syracuse, NY, United States John R Anderson, Carnegie Mellon University, Pittsburgh, PA, United States Ó 2017 Elsevier Ltd. All rights reserved. Adapted from Anderson, John R., Schooler, Lael J., 2000. Tulving, Endel, Craik, Fergus I. M. (Eds.), The Oxford Handbook of Memory, (pp. 557–570). New York, NY, USA: Oxford University Press, vol. xiv, 700 pp. 2.15.1 Introduction 265 2.15.2 The Analysis of Need Probability 266 2.15.2.1 The History Factor 267 2.15.2.1.1 Speech to Children 268 2.15.2.1.2 New York Times 268 2.15.2.1.3 Authors of Electronic Mail 268 2.15.2.2 The Rational Analysis of Primate Memory 272 2.15.2.3 The Contextual Factor 272 2.15.3 Effects of Content 273 2.15.4 Conclusions 276 References 277 2.15.1 Introduction Most research on the human memory has focused on the question of understanding what memory does and not on why memory does what it does. However, we may be able to gain insights into human memory by considering the functions of memory and how memory achieves those functions. Neisser (1976, 1978, 1982) argued that the field should adopt an “ecological approach” to memory and study how memory is used in the real world. He suggested that the principles of memory in the real world might be different than the ones uncovered in the laboratory. Bruce (1985) made a serious effort to define what such an ecological approach would amount to.
    [Show full text]
  • Hippocampus Guides Adaptive Learning During Dynamic Social Interactions
    Research Articles: Behavioral/Cognitive Hippocampus guides adaptive learning during dynamic social interactions https://doi.org/10.1523/JNEUROSCI.0873-20.2020 Cite as: J. Neurosci 2020; 10.1523/JNEUROSCI.0873-20.2020 Received: 16 April 2020 Revised: 2 December 2020 Accepted: 7 December 2020 This Early Release article has been peer-reviewed and accepted, but has not been through the composition and copyediting processes. The final version may differ slightly in style or formatting and will contain links to any extended data. Alerts: Sign up at www.jneurosci.org/alerts to receive customized email alerts when the fully formatted version of this article is published. Copyright © 2020 the authors 1 Hippocampus guides adaptive learning during dynamic social interactions 2 3 Running Title: Hippocampus and adaptive social decision-making 4 5 Oriel FeldmanHall1,2, David F. Montez3, Elizabeth A. Phelps4, Lila Davachi5, Vishnu P. Murty6 6 7 1. Department of Cognitive, Linguistic, & Psychological Sciences, Brown University, Providence, RI, 8 02912, USA 9 2. Carney Institute of Brain Science, Brown University, Providence, RI 02912, USA 10 3. Department of Neurology, Washington University of St. Louis, St. Louis, MO, 63110, USA 11 4. Department of Psychology, Harvard University, Cambridge, MA, 02138, USA 12 5. Department of Psychology, Columbia University, New York City, NY, 10027, USA 13 6. Department of Psychology, Temple University, Philadelphia, PA, 19122, USA 14 15 Corresponding Authors: 16 Oriel FeldmanHall 17 Brown University 18 Department of Cognitive, Linguistic, & Psychological Science 19 e: [email protected] 20 21 Vishnu Murty 22 Temple University 23 Department of Psychology 24 e: [email protected] 25 26 Introduction Word Count: 650 27 Discussion Word Count: 1495 28 Figures: 6 29 Table: 3 30 31 Acknowledgements: The research was funded by internal grants from New York University’s 32 neuroimaging center.
    [Show full text]
  • 1 Spatial Memory and Cognitive Flexibility Trade-Offs: to Be Or Not to Be Flexible, That Is The
    View metadata, citation and similar papers at core.ac.uk brought to you by CORE provided by St Andrews Research Repository 1 Spatial memory and cognitive flexibility trade-offs: to be or not to be flexible, that is the 2 question 3 4 Maria Cristina Tello-Ramos1, Carrie L Branch2, Dovid Y Kozlovsky2, Angela M Pitera2, 5 and Vladimir V Pravosudov1 6 7 8 Department of Biology and Graduate Program in Ecology, Evolution, and Conservation 9 Biology 10 University of Nevada, Reno 11 Reno, NV 89557 12 13 14 15 1Corresponding authors 16 Email: [email protected]; [email protected] 17 2Equal contribution 18 19 Word count: 5,833 20 1 21 Abstract 22 Cognitive flexibility allows animals to readily acquire new information even when learning 23 contingencies may rapidly change, as is the case in highly variable, but predictable 24 environments. While cognitive flexibility is broadly thought to be beneficial, animals 25 exhibit inter- and intra-specific variation, with higher levels of flexibility associated with 26 reduced memory retention and vice versa. In this review, we discuss when and why such 27 variation may exist and focus specifically on memory and memory flexibility. We argue 28 that retained memories may negatively affect the acquisition of new information, most 29 likely via proactive interference, and available data suggest that there may be a trade-off 30 between memory retention and acquiring new memories. We discuss neurogenesis- 31 mediated forgetting as the mechanism reducing memory interference, as new neurons 32 enhance learning new information, but also cause forgetting of older memories.
    [Show full text]
  • Adaptive Memory Distortions Are Predicted by Feature Representations in Parietal Cortex
    Research Articles: Behavioral/Cognitive Adaptive memory distortions are predicted by feature representations in parietal cortex https://doi.org/10.1523/JNEUROSCI.2875-20.2021 Cite as: J. Neurosci 2021; 10.1523/JNEUROSCI.2875-20.2021 Received: 12 November 2020 Revised: 26 January 2021 Accepted: 27 January 2021 This Early Release article has been peer-reviewed and accepted, but has not been through the composition and copyediting processes. The final version may differ slightly in style or formatting and will contain links to any extended data. Alerts: Sign up at www.jneurosci.org/alerts to receive customized email alerts when the fully formatted version of this article is published. Copyright © 2021 the authors 1 Adaptive memory distortions are predicted by 2 feature representations in parietal cortex 3 4 Yufei Zhao (赵雨菲)1, Avi J. H. Chanales2, & Brice A. Kuhl1 5 Department of Psychology, University of Oregon1, 97401 6 Department of Psychology, New York University2, 10016 7 1 8 Abbreviated title: Memory distortions in parietal cortex 9 Corresponding author email address: Yufei Zhao ([email protected]) or Brice Kuhl 10 ([email protected]) 11 Pages: 35 12 Figures: 4 13 Tables: 1 14 Number of words: Abstract (152), Introduction (696), discussion (1448) 15 16 Acknowledgements: This work was supported by NIH grant NINDS R01-NS107727 and NSF CAREER 17 Award BCS-1752921 to B.A.K. 18 19 20 21 22 23 24 1 The authors declare no competing financial interests. 1 25 ABSTRACT 26 27 Similarity between memories is a primary cause of interference and forgetting. Exaggerating subtle 28 differences between memories is therefore a potential mechanism for reducing interference.
    [Show full text]
  • Consolidation of Associative and Item Memory Is Related To
    7326 • The Journal of Neuroscience, May 13, 2015 • 35(19):7326–7331 Brief Communications Consolidation of Associative and Item Memory Is Related to Post-Encoding Functional Connectivity between the Ventral Tegmental Area and Different Medial Temporal Lobe Subregions during an Unrelated Task Alexa Tompary,1* Katherine Duncan,3* and Lila Davachi1,2 1Department of Psychology and 2Center for Neural Science, New York University, New York, New York 10003 and 3Department of Psychology, Columbia University, New York, New York 10027 It is well established that the hippocampus and perirhinal cortex (PrC) encode associative and item representations, respectively. However, less is known about how item and associative memories are consolidated. We used high-resolution fMRI in humans to measure how functional connectivity between these distinct medial temporal lobe regions with the ventral tegmental area (VTA) after a paired associate encoding task is related to both immediate and 24 h item and associative memory performance. We found that the strength of post-encoding functional connectivity between the VTA and CA1 selectively correlated with long-term associative memory, despite subjects actively engaging in an unrelated task during this period. Conversely, VTA–PrC functional connectivity during the same period correlated with long-term item memory. Critically, connectivity between VTA and these MTL regions were only related to memory tested at a 24 h delay, implicating midbrain connectivity in the consolidation of distinct forms of memory. Key words: consolidation; functional connectivity; high-resolution fMRI; medial temporal lobe; VTA Introduction spectively (Staresina et al., 2013; Tambini and Davachi, 2013). Some elements of our rich experiences persist as long-term mem- However, it remains unclear how post-encoding processes relate ories, whereas others are forgotten.
    [Show full text]
  • Adaptive Memory: Independent Effects of Survival Processing and Reward Motivation on Memory
    ORIGINAL RESEARCH published: 10 December 2020 doi: 10.3389/fnhum.2020.588100 Adaptive Memory: Independent Effects of Survival Processing and Reward Motivation on Memory Glen Forester 1*, Meike Kroneisen 2,3, Edgar Erdfelder 3 and Siri-Maria Kamp 1 1Department of Psychology, University of Trier, Trier, Germany, 2Department of Psychology, University of Koblenz-Landau, Landau, Germany, 3Department of Psychology, University of Mannheim, Mannheim, Germany Humans preferentially remember information processed for their survival relevance, a memorial benefit known as the survival processing effect. Memory is also biased towards information associated with the prospect of reward. Given the adaptiveness of these effects, they may depend on similar mechanisms. We tested whether motivation drives both effects, with reward incentives that are known to boost extrinsic motivation and survival processing perhaps stimulating intrinsic motivation. Accordingly, we manipulated survival processing and reward incentive independently during an incidental-encoding task in which participants chose between pairs of words concerning their relevance for a scenario, and examined the effects on encoding event-related potentials (ERP) activity and later performance on a surprise recall test. We hypothesized that if Edited by: Praveen K. Pilly, survival processing fosters intrinsic motivation, it should reduce the beneficial effects HRL Laboratories, United States of extrinsic motivation (reward incentive). In contrast to this prediction, we found that Reviewed by: reward incentive and survival processing independently improved memory and that the Michael Serra, P300, a measure of lower-level cognitive resource allocation, was increased by reward Texas Tech University, United States Josefa N. S. Pandeirada, incentive independent of survival processing. Further, survival processing and reward University of Aveiro, Portugal incentive independently increased the frontal slow wave (FSW), a measure of higher- Haiyan Wu, University of Macau, China level elaboration.
    [Show full text]
  • Human Spatial Memory Implicitly Prioritizes High-Calorie Foods
    www.nature.com/scientificreports OPEN Human spatial memory implicitly prioritizes high‑calorie foods Rachelle de Vries1,2,4*, Paulina Morquecho‑Campos1,4, Emely de Vet2, Marielle de Rijk1, Elbrich Postma1, Kees de Graaf1, Bas Engel3 & Sanne Boesveldt1 All species face the important adaptive problem of efciently locating high‑quality nutritional resources. We explored whether human spatial cognition is enhanced for high‑calorie foods, in a large multisensory experiment that covertly tested the location memory of people who navigated a maze‑ like food setting. We found that individuals incidentally learned and more accurately recalled locations of high‑calorie foods – regardless of explicit hedonic valuations or personal familiarity with foods. In addition, the high‑calorie bias in human spatial memory already became evident within a limited sensory environment, where solely odor information was available. These results suggest that human minds continue to house a cognitive system optimized for energy‑efcient foraging within erratic food habitats of the past, and highlight the often underestimated capabilities of the human olfactory sense. A recurring ftness-relevant task faced by all species is the efcient pursuit of nutritional resources1. A central theorem of optimal foraging theory is that an individual’s ftness is a direct function of the efciency with which one acquires energy, and natural selection pressures favour foraging traits that maximize the net rate of energy gain 1,2. Although this theory has been extensively referenced in relation to the foraging strategies of other animals2, the question of whether humans also inherently carry adaptations geared toward energy-efcient foraging has not been thoroughly assessed to date.
    [Show full text]
  • Adaptive Constructive Processes and the Future of Memory
    Adaptive constructive processes and the future of memory The Harvard community has made this article openly available. Please share how this access benefits you. Your story matters Citation Schacter, Daniel L. 2012. “Adaptive constructive processes and the future of memory.” American Psychologist 67 (8): 603-613. doi:10.1037/a0029869. http://dx.doi.org/10.1037/a0029869. Published Version doi:10.1037/a0029869 Citable link http://nrs.harvard.edu/urn-3:HUL.InstRepos:11688794 Terms of Use This article was downloaded from Harvard University’s DASH repository, and is made available under the terms and conditions applicable to Open Access Policy Articles, as set forth at http:// nrs.harvard.edu/urn-3:HUL.InstRepos:dash.current.terms-of- use#OAP Adaptive constructive processes 1 Schacter, D.L. (2012). Adaptive constructive processes and the future of memory. American Psychologist, 67, 603-613. Adaptive constructive processes and the future of memory Daniel L. Schacter Department of Psychology, Harvard University, Cambridge, MA 02138 Address correspondence to: Daniel L. Schacter Department of Psychology Harvard University Cambridge, Massachusetts 02138 phone: (617) 495-3856 fax: (617) 496-3122 e-mail: [email protected] Adaptive constructive processes 2 Abstract Memory serves critical functions in everyday life, but is also prone to error. This article examines adaptive constructive processes, which play a functional role in memory and cognition but can also produce distortions, errors, or illusions. The article describes several types of memory errors that are produced by adaptive constructive processes, and focuses in particular on the process of imagining or simulating events that might occur in one’s personal future.
    [Show full text]
  • Mechanisms for Widespread Hippocampal Involvement in Cognition
    Journal of Experimental Psychology: General © 2013 American Psychological Association 2013, Vol. 142, No. 4, 1159–1170 0096-3445/13/$12.00 DOI: 10.1037/a0034461 THEORETICAL REVIEW Mechanisms for Widespread Hippocampal Involvement in Cognition Daphna Shohamy Nicholas B. Turk-Browne Columbia University Princeton University The quintessential memory system in the human brain—the hippocampus and surrounding medial temporal lobe—is often treated as a module for the formation of conscious, or declarative, memories. However, growing evidence suggests that the hippocampus plays a broader role in memory and cognition and that theories organizing memory into strictly dedicated systems may need to be updated. We first consider the historical evidence for the specialized role of the hippocampus in declarative memory. Then, we describe the serendipitous encounter that motivated the special section in this issue, based on parallel research from our labs that suggested a more pervasive contribution of the hippocampus to cognition beyond declarative memory. Finally, we develop a theoretical framework that describes 2 general mechanisms for how the hippocampus interacts with other brain systems and cognitive processes: the memory modulation hypothesis, in which mnemonic representations in the hippocampus modulate the operation of other systems, and the adaptive function hypothesis, in which specialized computations in the hippocampus are recruited as a component of both mnemonic and nonmnemonic functions. This framework is consistent with an emerging view that the most fertile ground for discovery in cognitive psychology and neuroscience lies at the interface between parts of the mind and brain that have traditionally been studied in isolation. Keywords: memory, hippocampus, perception, learning, decision making Memory, in all its forms, is what enables cognition.
    [Show full text]
  • 24Th Annual International Conference on Comparative Cognition
    24th Annual International Conference on Comparative Cognition Sponsored by the Comparative Cognition Society April 19th to 22nd, 2017 Radisson Hotel Melbourne Beach, Florida CO3 - 2017 Program Summary Time Page Wednesday Welcome Reception and Check-In 3:30 2 Opening Remarks – Olga Lazareva, CCS President 7:00 2 Canine Cognition 7:05 2 Temporal Processing 8:04 3 Communication 8:32 4 Numerosity 9:17 5 Thursday CO3 Mentoring Program – Manatee Room 10:30 6 Ron Weisman Outstanding Student Presentation Competition 12:00 7 Choice 12:35 8 Cognitive Processes I 1:41 9 Serial Processes 2:23 10 Cognitive Processes II 3:35 11 Symposium in Honor of Stan Kuczaj 4:36 13 Poster Session I 8:30-11:00 27 Friday Workshop: Multilevel Modeling for Repeated Measures Analysis – Michael Young 9:00-11:00 14 Social Learning I 12:00 15 Spatial Cognition 1:29 16 Song 1:57 17 Memory 2:16 18 In Honor of the Contributions of Ralph Miller 3:30 18 Master Lecture: A Taxonomy of Forgetting and the Fates of Forgotten Memories – Ralph Miller 6:00 20 Group Photo Shoot 7:00 Banquet 7:30 Saturday Associative Learning 7:30 21 Social Learning II 8:40 22 Perception 9:25 23 Cognitive Processes III 10:28 24 Closing Remarks – Olga Lazareva, CCS President 11:31 25 Comparative Cognition Society Business Meeting 8:00 Poster Session II 8:30-11:00 36 PROGRAM NOTE Five-minute talks are designated by a Talk Number with a grey background. They are five minutes in duration followed by two minutes for discussion.
    [Show full text]
  • Human Memory Jeffrey D
    Human Memory Jeffrey D. Karpicke, Melissa Lehman Introduction “Memory,” broadly defined, is the ability to use the past in the service of the present. Memory can manifest itself in a variety of ways. When people tie their shoelaces or ride bicycles, they rely on past experiences to execute sequences of motor behaviors that accomplish those tasks. Such skills are often considered examples of procedural memory. When people identify objects in the environment (e.g., knowing that a thing is a plant or an animal) or when they give the answer to a factual question, they draw upon stores of general knowledge about the world accumulated over time. This type of memory is often referred to as semantic memory. When people remember events, they must attempt to recollect the details of what occurred at a particular place and time. This type of memory, called episodic memory, has been the focus of a wealth of research and will receive most of the attention in this article. Cognitive psychologists have devised numerous ways to study memory. Many methods involve giving a person various materials (often lists of words in laboratory experiments) during a study episode and then assessing that person’s ability to remember the materials on a memory test. Consider the difference between episodic and semantic memory in this context. If the word “tiger” occurs on a list in a study episode, and a person in the experiment fails to remember it on a memory test, he or she did not momentarily forget that a tiger is a large cat with stripes and big teeth.
    [Show full text]