Latent Space Based Text Generation Using Attention Models

Size: px
Start display at page:

Download "Latent Space Based Text Generation Using Attention Models"

Transcription

1 Latent Space Based Text Generation Using Attention Models Jules Gagnon-Marchand Prepared for NLP Workshop for MILA Aug. 31, 2018

2 Introduction: Motivation Text Generation is important: Any AI based task with a linguistic output: Translation Question Answering Conversational Agents Text summarization Smart chat/ answer suggestion More that we will soon invent In all of these tasks, you want nice, human sounding text. Page 2

3 Introduction: Attention Models Attention-only models are recent v Introduced by Decomposable Attention Models for Natural Language Inference by Parikh et al., 2016 v Made really famous by Transformer, by Vaswani et al., àcomplete perceptual field for each layer à Trained much more quickly: Compared to RNN-models, with input feeding, no sequential structure at training time, making it much easier to parallelize à Transformer for example, takes 2 or 3 days on 8 GPUs, versus weeks for GNMT Page 3

4 Advantages of Attention Models Recently, at the top of a large number of very tasks in NLP : Neural Machine Translation: Google s Transformer & recently, Google s Universal Transformer, Harvard s Variational Transformer Question Answering: Allen Institute s Bidirectional Attentive Flow and Stanford s QANets Large number of Natural Language Understanding tasks: Open AI s fine tuned Transformer LM. Language Modelling: Decoder-only transformer, 64 layers, character based (Google AI) Success in Non NLP fields: Self Attention GAN: Image generation, from Ian Goodfellow s group Non-Local Networks: Strong performance in Video tasks. Graph Attention Networks (GAT): Deep learning to graph node classification Page 4

5

6 Introduction: Modern Attention Models à Translation: Transformer (Vaswani et al., 2017, Google Brain) Better performance Much smaller training costs Page 6

7 Background: Transformer Multi-Head Attention n Multi-head attention: Page 7

8 Background: Transformer Positional Encodings n Positional Encodings Self-attention doesn t know the positions, not even relative (CNNs know relative positions, RNNs know both) Related to CoordConv by Uber this year for CNNs They add an encoding to the word embeddings: with pos the position, i the dimension and d the number of dimensions They also experimented with learned encodings (positional embeddings), but the performance was similar. Chose to go with non-learned ones, as it generalizes to lengths not seen (or unfrequently seen) in training. Chose this function because in theory the model can learn to attend to relative positions, as PE pos + k can be represented as a linear function of PE pos + k Page 8

9 Introduction: Modern Attention Models à Graphs Networks: Graph Attention Networks (Velickovic et al., 2018, Cambridge + Univ. Autònoma de Barcelona + MILA) à Pure masked self-attention à Each node can do self-attention over it s neighbors. The other nodes are masked. Page 9

10 Introduction: Modern Attention Models à Conditional Image Generation : SAGAN (Zhang et al., 2018, Goodfellow s Group - Google Brain) à ResNet + Self-Attention Layer Page 10

11 Introduction: Modern Attention Models State of the Art for many NLU tasks: Improving Language Understanding with Unsupervised Learning (Radford et al., 2018, OpenAI) à 30 Layers deep Transformer model à All decoder layers à 1 month on 8 GPUs à Training in unsupervised fashion in Language model configuration: Predict the next word à Fine-tuned More details on the tasks: Page 11

12 Introduction: Modern Attention Models OpenAI s Transformer Fine-Tuning Process Page 12

13 Introduction: Modern Attention Models Page 13

14 Introduction: Modern Attention Models à Question Answering: QANet (Yu et al., 2018, CMU + Google Brain) Page 14

15 Background: Explaining the Attention Layer Page 15

16 Background: Neural Text Generation Different Families of Approaches for Neural Text Generation: We are here. (VAEs are also latentspace based) Page 16

17 Background: Neural Text Generation Page 17

18 Latent Space Based Methods ARAE: AAE: VAE: Page 18

19 Background : Adversarially Regularized Autoencoders (ARAE) Original ARAE: (Encoder + Generator) vs Discriminator Zhao et al., 2018 Modified ARAE: Generator vs (Discriminator + Encoder) Spinks et al., 2018 Page 19

20 Background: ARAE Decoder input noise Problem: The data (latent spaces) to generate is still close to discrete. Solution (still experimenting with): Decoder input noise. Page 20

21 Background: Adversarial Autoencoders Makhzani et al., 2015 Page 21

22 Background: Variational Autoencoders Evidence Lower Bound (ELBO): Page 22

23 n Proposed Solutions: Proposed Solutions: Improve on existing pure GAN and VAE methods: Attention models: Transformer Auto encoder Attention based generator and discriminator» Positional Encodings» Optional Multi-head attention Our Improved ARAE: State of the art in GAN stability: Spectral Normalization (widely accepted) Hinge Loss Our Improved AAE: Our Improved VAE: Page 23

24 Attention Generator and Discriminator Page 24

25 Results Numerical Values Quantitative Metrics using the Stanford Natural Language Inference Dataset: Reverse Perplexity Perplexity Real Data LM Samples Original ARAE Transformer ARAE Transformer AAE Lower is better. Page 25

26 Solutions n ARAE: Full codes Transformer Auto-Encoder Self-Attention based generators and discriminators Spectral Normalization (GAN) Positional Encodings Optional Multi-head attention Fixed Size Code Transformer Transformer Block Generator And Discriminator Page 26

27 Our Improved ARAE a man from the bus stop line up to board his delivery from the bus. a woman is looking at herself in her kitchen looking at framed photos. a man is watching the water practice. a man has his face met before sticking his tongue out. a woman is working on her baby. the woman is a the musician in the wedding. a man is carrying the counter of various items. the man in the shopping center is also in the car. the men are running from the parade. a lady is outside with a cat in a red jacket. the dogs are running through the water and the last lady in the comfort of the birds. the man is wearing a white shirt the lady and child are building some store items. a woman is speaking in front of a crowd at an overhead wall. two children are running for free falling leaves. a man on the train has a big green horse. a man is cleaning a boat of firefighters. a choir in a musical is in a half crowded auditorium. the couple is a performer on the cheek. a young person holds the flag, a dress from the bar. the man is sweeping the bathroom. the baby girl is at the baby-themed pool Experimental details: - Dataset: Google Sentence Compression (as in Cifka et al.) - Tokenizer: Google SentencePiece, BPE mode, vocabulary size of 16k subtokens (as in Cifka et al.) - Sentence Length: 20 BPE subtokens - Code depth: 304 (Cifka et al. use 300. Transformer s multi-head attention requires multiples of the number of heads, is the closest multiple of 8 to 300.) - Z dim: 100 (as in Cifka et al.) - Loss: ARAE, gradient l2 normalized to 1 as in Cifka et al., and then multiplied by the lambda - ARAE Lambda: Spectral Normalization: On GAN (not AE) - Encoder Output: - Full codes (no pooling) - Spherical normalization - Decoder Input: Addition of Gaussian noise of stddev Transformer - Number of attention heads: 8 - Transformer - Number of layers: (Blocks are as per the original paper) - 3 Encoder Blocks (Self-Attention -> Element-wise feedforward) - 3 Decoder Blocks (Masked Self-Attention -> Encoder-Decoder Attention -> Element-wise feedforward) Page 27

28 Solutions - Models n Our improved VAE: Transformer Auto-Encoder Average pooling or attention bottleneck Global average pooled Transformer Page 28

29 Comparison and Experiments: VAE Our improved VAE: The two young man and child are getting ready to eat. Two men walking on a red shore. The dog is walking with a bright train. A guy holds his head in the yard. A few people are getting ready off of her house. The two men are having a haircut. A girl is standing in the crowd with her bed. An old woman sits on a snowy hill. A man is taking a race during the park A young girl is looking at his stuff in a church. A woman is getting ready for her shoes. There are a young boy in the beautiful car. The people are performing in the snow. A child is running through the beach. Three men play underneath a big ball. The two men are walking through an office. The son were going to catch a video games. Experimental details: - Dataset: SNLI (as in Cifka et al.) - Tokenizer: Google SentencePiece, BPE mode, vocabulary size of 16k subtokens (as in Cifka et al.) - Sentence Length: 30 BPE subtokens - Code depth: 304 (Cifka et al. use 300. Transformer s multi-head attention requires multiples of the number of heads, is the closest multiple of 8 to 300.) - Loss: Original VAE loss - VAE Lambda: Encoder Output: - Attention Pooling to single 304 wide vector. - Transformer - Number of attention heads: 8 - Transformer - Number of layers: - 3 Encoder Blocks (Self-Attention -> Element-wise feedforward) - 3 Decoder Blocks (Masked Self- Attention -> Encoder-Decoder Attention -> Element-wise feedforward) Page 29

30 Solutions: Models n AAE: Transformer Auto-Encoder Self-Attention based discriminator (full codes) Average pooling or attention bottleneck otherwise Spectral Normalization Full Fix Sized Code Transformer Transformer Block Discriminator Page 30

31 Comparison and Experiments: AAE Our Improved AAE: a man is hanging from a cart. the two boys are not enjoying the scenery of the nearby mountains. a person has a bag around their head. a big party with two men and one woman. a woman uses a man as a teenage girl. a man in a white shirt playing a trumpet. a man is strumming on his guitar. two men and a woman are at a playground. the man is walking away from the camera. a young child is playing the piano. a man is browsing a business with a newspaper. the family is playing on the floor. a boy in a blue shirt and blue jeans is walking down a path. two men sitting on the floor in the summer. a young girl is looking at a horse. a boy wearing a shirt is raking leaves. the group of people are holding their hands across the field. the woman is wearing a black shirt while playing with a child. two men are outside and the girl is in her home. a man is training his dog to surf. a group of children riding scooters together down the road. a man in a chef's shirt is on the side of a counter. the man is cleaning the gutters from the older woman. a man in a hat is reading something on a bench. a woman in a black hoodie cleaning a window. woman drinking a beer men in orange vests and black pants push a yellow bus. the quarterback is preparing to throw a ball during a game. two people are standing in a crowd as they look out a window. a boy is swimming in the ocean. Experimental details: Dataset: SNLI Decoder input noise: 0.5 Bottleneck: Full encoder codes Discriminator: Self-Attention Num. Layers Discriminator: - 2 simplified transformer blocks - Global avg. pooling layer - Fully connected Sentence length: 30 BPE Code depth: 304 Num. of transformer layers: - 3 blocks for encoder - 3 blocks for decoder Page 31

32 Thank You! Jules Gagnon-Marchand Prepared for NLP Workshop for MILA Aug. 31, 2018

The University of Tokyo, NVAIL Partner Yoshitaka Ushiku

The University of Tokyo, NVAIL Partner Yoshitaka Ushiku Recognize, Describe, and Generate: Introduction of Recent Work at MIL The University of Tokyo, NVAIL Partner Yoshitaka Ushiku MIL: Machine Intelligence Laboratory Beyond Human Intelligence Based on Cyber-Physical

More information

Learning to Disambiguate by Asking Discriminative Questions Supplementary Material

Learning to Disambiguate by Asking Discriminative Questions Supplementary Material Learning to Disambiguate by Asking Discriminative Questions Supplementary Material Yining Li 1 Chen Huang 2 Xiaoou Tang 1 Chen Change Loy 1 1 Department of Information Engineering, The Chinese University

More information

The story of Snow White is a beautiful fairytale with princesses, princes and

The story of Snow White is a beautiful fairytale with princesses, princes and The story of Snow White is a beautiful fairytale with princesses, princes and dwarfs. The fairytale is about a queen who has a very pretty daughter with black hair, snow-white face and red lips. 1. What

More information

3 RD FORM EXTRA PRACTICE 7 HEALTH PROBLEMS

3 RD FORM EXTRA PRACTICE 7 HEALTH PROBLEMS 3 RD FORM EXTRA PRACTICE 7 HEALTH PROBLEMS http://www.englishexercises.org/makeagame/viewgame.asp?id=7131 http://www.englishexercises.org/makeagame/viewgame.asp?id=5978 1- Complete the crossword puzzle.

More information

Stereotyping and Bias in the Flickr30k Dataset

Stereotyping and Bias in the Flickr30k Dataset Stereotyping and Bias in the Flickr30k Dataset Emiel van Miltenburg Vrije Universiteit Amsterdam Multimodal Corpora: Computer vision and language processing (MMC 2016) Background Automatic image description

More information

Kai-Wei Chang UCLA. What It Takes to Control Societal Bias in Natural Language Processing. References:

Kai-Wei Chang UCLA. What It Takes to Control Societal Bias in Natural Language Processing. References: What It Takes to Control Societal Bias in Natural Language Processing Kai-Wei Chang UCLA References: http://kwchang.net Kai-Wei Chang (kwchang.net/talks/sp.html) 1 A father and son get in a car crash and

More information

Be Physically Active. Key #7. It s Never Too Late to Start! Why Should You Be Active? Exercise Safely

Be Physically Active. Key #7. It s Never Too Late to Start! Why Should You Be Active? Exercise Safely Key #7 Be Physically Active It s Never Too Late to Start! Regular physical activity is an important component in healthy aging. It has been proven that regular activity is very beneficial to our health

More information

Fear Ladder (Example)

Fear Ladder (Example) Specific Phobia (dogs): Cassandra s Story Cassandra is afraid of dogs. She refuses to walk around the neighborhood without her husband for fear of being attacked by a dog. She tends to avoid places where

More information

Start ASL The Fun Way to Learn American Sign Language for free!

Start ASL The Fun Way to Learn American Sign Language for free! Start ASL The Fun Way to Learn American Sign Language for free! ASL 3 WORKBOOK Table of Contents Unit 1... 3 Conversation Review 1.1... 3 Role Shifting Practice 1.2... 3 Unit 2... 4 Role Shifting with

More information

Image Captioning using Reinforcement Learning. Presentation by: Samarth Gupta

Image Captioning using Reinforcement Learning. Presentation by: Samarth Gupta Image Captioning using Reinforcement Learning Presentation by: Samarth Gupta 1 Introduction Summary Supervised Models Image captioning as RL problem Actor Critic Architecture Policy Gradient architecture

More information

Keyword-driven Image Captioning via Context-dependent Bilateral LSTM

Keyword-driven Image Captioning via Context-dependent Bilateral LSTM Keyword-driven Image Captioning via Context-dependent Bilateral LSTM Xiaodan Zhang 1,2, Shuqiang Jiang 2, Qixiang Ye 2, Jianbin Jiao 2, Rynson W.H. Lau 1 1 City University of Hong Kong 2 University of

More information

Discriminability objective for training descriptive image captions

Discriminability objective for training descriptive image captions Discriminability objective for training descriptive image captions Ruotian Luo TTI-Chicago Joint work with Brian Price Scott Cohen Greg Shakhnarovich (Adobe) (Adobe) (TTIC) Discriminability objective for

More information

AgePage. Exercise: Getting Fit For Life. Four Types of Exercise

AgePage. Exercise: Getting Fit For Life. Four Types of Exercise National Institute on Aging AgePage Exercise: Getting Fit For Life I don t have time. I m too old I might hurt myself. I d be too embarrassed at a gym with all those fit young people around. Sound familiar?

More information

Introduction. Help your students learn how to learn!

Introduction. Help your students learn how to learn! Introduction Help your students learn how to learn! Lay a strong foundation in listening skills, the ability to follow directions, and in the ability to remember what one sees and hears important skills

More information

COMP9444 Neural Networks and Deep Learning 5. Convolutional Networks

COMP9444 Neural Networks and Deep Learning 5. Convolutional Networks COMP9444 Neural Networks and Deep Learning 5. Convolutional Networks Textbook, Sections 6.2.2, 6.3, 7.9, 7.11-7.13, 9.1-9.5 COMP9444 17s2 Convolutional Networks 1 Outline Geometry of Hidden Unit Activations

More information

arxiv: v1 [stat.ml] 23 Jan 2017

arxiv: v1 [stat.ml] 23 Jan 2017 Learning what to look in chest X-rays with a recurrent visual attention model arxiv:1701.06452v1 [stat.ml] 23 Jan 2017 Petros-Pavlos Ypsilantis Department of Biomedical Engineering King s College London

More information

your ideal customer profile

your ideal customer profile your ideal customer profile find your people, make more sales 2 an introduction what is an ideal customer profile?vtt what goes into an ideal customer profile? A customer profile is a semi fictional representation

More information

Convolutional Neural Networks for Text Classification

Convolutional Neural Networks for Text Classification Convolutional Neural Networks for Text Classification Sebastian Sierra MindLab Research Group July 1, 2016 ebastian Sierra (MindLab Research Group) NLP Summer Class July 1, 2016 1 / 32 Outline 1 What is

More information

Adjusting Your Activity After Heart Surgery

Adjusting Your Activity After Heart Surgery Adjusting Your Activity After Heart Surgery Information for patients and families Read this booklet to learn: why it s important to adjust your activity when you get home what to watch for when you do

More information

Autism, my sibling, and me

Autism, my sibling, and me ORGANIZATION FOR AUTISM RESEARCH Autism, my sibling, and me Brothers and sisters come in all shapes and sizes. They have a lot in common, and they can be really different from each other. Some kids even

More information

An Artificial Neural Network Architecture Based on Context Transformations in Cortical Minicolumns

An Artificial Neural Network Architecture Based on Context Transformations in Cortical Minicolumns An Artificial Neural Network Architecture Based on Context Transformations in Cortical Minicolumns 1. Introduction Vasily Morzhakov, Alexey Redozubov morzhakovva@gmail.com, galdrd@gmail.com Abstract Cortical

More information

Fun and Fit Forever: Exercise. May 21, :00-7:30 p.m. All About Kids

Fun and Fit Forever: Exercise. May 21, :00-7:30 p.m. All About Kids Fun and Fit Forever: Exercise May 21, 2009 6:00-7:30 p.m. All About Kids The Florida Institute of Education at the University of North Florida 1 Standards, Outline and Materials Program Goal: To combat

More information

Psychology Perception

Psychology Perception Psychology 343 - Perception James R. Sawusch, 360 Park Hall jsawusch@buffalo.edu 645-0238 TA is Timothy Pruitt, 312 Park tapruitt@buffalo.edu Text is Sensation & Perception by Goldstein (8th edition) PSY

More information

Semi-Supervised Disentangling of Causal Factors. Sargur N. Srihari

Semi-Supervised Disentangling of Causal Factors. Sargur N. Srihari Semi-Supervised Disentangling of Causal Factors Sargur N. srihari@cedar.buffalo.edu 1 Topics in Representation Learning 1. Greedy Layer-Wise Unsupervised Pretraining 2. Transfer Learning and Domain Adaptation

More information

KEEP A BODY BUSY WITH 4-H!

KEEP A BODY BUSY WITH 4-H! KEEP A BODY BUSY WITH 4-H! On Your Mark, Get Set READ! Welcome! The following lessons are a few offerings for keeping bodies busy! They are meant to be paired with a book on fitness and activity. Our recommendation

More information

9.NPA.1 Analyze strategies using tools (MyPlate, Dietary Guidelines, Food Facts Label) to plan healthy nutrition and fitness.

9.NPA.1 Analyze strategies using tools (MyPlate, Dietary Guidelines, Food Facts Label) to plan healthy nutrition and fitness. Essential Standard 9.NPA.1 Analyze strategies using tools (MyPlate, Dietary Guidelines, Food Facts Label) to plan healthy nutrition and fitness. Clarifying Objective 9.NPA.1.1 Attribute the prevention

More information

Bottom-Up and Top-Down Attention for Image Captioning and Visual Question Answering

Bottom-Up and Top-Down Attention for Image Captioning and Visual Question Answering Bottom-Up and Top-Down Attention for Image Captioning and Visual Question Answering SUPPLEMENTARY MATERIALS 1. Implementation Details 1.1. Bottom-Up Attention Model Our bottom-up attention Faster R-CNN

More information

Lesson 1. Children have a role in eating, too. Children are responsible for: Deciding which foods to eat. Deciding how much to eat.

Lesson 1. Children have a role in eating, too. Children are responsible for: Deciding which foods to eat. Deciding how much to eat. Lesson 1 Welcome to Eating Smart and Moving More with Professor Popcorn! Over the next few weeks, I will be providing food and nutrition education to your child. Each week I will send you a newsletter

More information

Autism: Growing challenge 'It's time that people learn about it' mother. Sunday, February 8, By KIM BARTO - Bulletin Staff Writer

Autism: Growing challenge 'It's time that people learn about it' mother. Sunday, February 8, By KIM BARTO - Bulletin Staff Writer Autism: Growing challenge 'It's time that people learn about it' mother Sunday, February 8, 2009 By KIM BARTO - Bulletin Staff Writer (This is the first article in a series on autism. The series will look

More information

The Leeds Teaching Hospitals NHS Trust Total Hip Replacement A guide to your Rehabilitation

The Leeds Teaching Hospitals NHS Trust Total Hip Replacement A guide to your Rehabilitation n The Leeds Teaching Hospitals NHS Trust Total Hip Replacement A guide to your Rehabilitation Information for patients Your questions answered What are hip precautions? There are precautions to follow

More information

Building Evaluation Scales for NLP using Item Response Theory

Building Evaluation Scales for NLP using Item Response Theory Building Evaluation Scales for NLP using Item Response Theory John Lalor CICS, UMass Amherst Joint work with Hao Wu (BC) and Hong Yu (UMMS) Motivation Evaluation metrics for NLP have been mostly unchanged

More information

Sequential Predictions Recurrent Neural Networks

Sequential Predictions Recurrent Neural Networks CS 2770: Computer Vision Sequential Predictions Recurrent Neural Networks Prof. Adriana Kovashka University of Pittsburgh March 28, 2017 One Motivation: Descriptive Text for Images It was an arresting

More information

CSE Introduction to High-Perfomance Deep Learning ImageNet & VGG. Jihyung Kil

CSE Introduction to High-Perfomance Deep Learning ImageNet & VGG. Jihyung Kil CSE 5194.01 - Introduction to High-Perfomance Deep Learning ImageNet & VGG Jihyung Kil ImageNet Classification with Deep Convolutional Neural Networks Alex Krizhevsky, Ilya Sutskever, Geoffrey E. Hinton,

More information

NE LESSON GD Fit Families: Effortless Exercise

NE LESSON GD Fit Families: Effortless Exercise NE LESSON GD-000-06 Fit Families: Effortless Exercise LESSON DESCRIPTION In this video and activity lesson, class participants will learn strategies for incorporating physical activity into their daily

More information

Neuromorphic convolutional recurrent neural network for road safety or safety near the road

Neuromorphic convolutional recurrent neural network for road safety or safety near the road Neuromorphic convolutional recurrent neural network for road safety or safety near the road WOO-SUP HAN 1, IL SONG HAN 2 1 ODIGA, London, U.K. 2 Korea Advanced Institute of Science and Technology, Daejeon,

More information

ESL TOPICS: Grammar Question Cards Page 1 of 21. Simple Present Simple Present Simple Present. They in New York, but we live in London.

ESL TOPICS: Grammar Question Cards Page 1 of 21. Simple Present Simple Present Simple Present. They in New York, but we live in London. ESL TOPICS: Grammar Question Cards Page 1 of 21 Simple Present Simple Present Simple Present Simple Present My brother at a big company close to my home. They in New York, but we live in London. My friend

More information

Adding Activity to Your Lifestyle

Adding Activity to Your Lifestyle MINTO PREVENTION & REHABILITATION CENTRE CENTRE DE PREVENTION ET DE READAPTATION MINTO Adding Activity to Your Lifestyle About This Kit An important long-term goal of the Heart Institute Prevention and

More information

DQ2: HELPING STUDENTS EFFECTIVELY INTERACT WITH NEW KNOWLEDGE

DQ2: HELPING STUDENTS EFFECTIVELY INTERACT WITH NEW KNOWLEDGE DQ2: HELPING STUDENTS EFFECTIVELY INTERACT WITH NEW KNOWLEDGE Element 11 Strategies for Helping Students Elaborate on New Information General Inferential Questions Simply put, these are questions that

More information

First Grade Fitness Lesson Plan Page 1 of 7. Dear Educator,

First Grade Fitness Lesson Plan Page 1 of 7. Dear Educator, First Grade Fitness Lesson Plan Page 1 of 7 Dear Educator, As you know, physical activity is critical for optimal health. Unfortunately, many Americans do not get enough physical activity on a regular

More information

Recurrent Neural Networks

Recurrent Neural Networks CS 2750: Machine Learning Recurrent Neural Networks Prof. Adriana Kovashka University of Pittsburgh March 14, 2017 One Motivation: Descriptive Text for Images It was an arresting face, pointed of chin,

More information

A HMM-based Pre-training Approach for Sequential Data

A HMM-based Pre-training Approach for Sequential Data A HMM-based Pre-training Approach for Sequential Data Luca Pasa 1, Alberto Testolin 2, Alessandro Sperduti 1 1- Department of Mathematics 2- Department of Developmental Psychology and Socialisation University

More information

My Visit to A fun place where I can play and learn with my family

My Visit to A fun place where I can play and learn with my family My Visit to A fun place where I can play and learn with my family 300 Gleed Avenue East Aurora, NY 14052 Phone: (716) 655-5131 www.exploreandmore.org This story was created to help children prepare for

More information

An Overview and Comparative Analysis on Major Generative Models

An Overview and Comparative Analysis on Major Generative Models An Overview and Comparative Analysis on Major Generative Models Zijing Gu zig021@ucsd.edu Abstract The amount of researches on generative models has been grown rapidly after a period of silence due to

More information

World Language Department - Cambridge Public Schools STAGE 1 - DESIRED RESULTS. Unit Goals Unit 1: Introduction to American Sign Language

World Language Department - Cambridge Public Schools STAGE 1 - DESIRED RESULTS. Unit Goals Unit 1: Introduction to American Sign Language Language: American Sign Language (ASL) Unit 1: Introducing Oneself World Language Department - Cambridge Public Schools STAGE 1 - DESIRED RESULTS Unit Goals Unit 1: Introduction to American Sign Language

More information

Sleep. It s What Every New Twin Parent Dreams About!

Sleep. It s What Every New Twin Parent Dreams About! Sleep. It s What Every New Twin Parent Dreams About! Karen R. Schwarzbach, CSC, CWP Founder, Babiestosleep.com In the many years that I have worked with expectant and new parents of multiples, no topic

More information

A Case of Skin Cancer

A Case of Skin Cancer STO-149 A Case of Skin Cancer Part 1: Sofia s mole Sofia, Camilla, and Zoey were enjoying a sunny first day of summer at the beach. Camilla noticed a mole on Sofia s shoulder. She told Sofia that she should

More information

2017 Texas Symposium on DeafBlindness Making Sense of Activities 8:30-10:00 AM Saturday, March 4, 2017

2017 Texas Symposium on DeafBlindness Making Sense of Activities 8:30-10:00 AM Saturday, March 4, 2017 Texas School for the Blind and Visually Impaired Outreach Programs www.tsbvi.edu 512-454-8631 1100 W. 45 th St. Austin, TX 78756 2017 Texas Symposium on DeafBlindness Making Sense of Activities 8:30-10:00

More information

Hard-Working Hearts. Handouts My Activity Pyramid Hard-Working Hearts Take-home Handout. Evaluation Answers 1) F 2) T 3) F 4) F 5) T

Hard-Working Hearts. Handouts My Activity Pyramid Hard-Working Hearts Take-home Handout. Evaluation Answers 1) F 2) T 3) F 4) F 5) T Youth Health Lesson Series Facilitators Guide Hard-Working Hearts Objective: This lesson will give children a basic understanding of the role of the heart as a muscle and activities they can do to improve

More information

Supplementary Creativity: Generating Diverse Questions using Variational Autoencoders

Supplementary Creativity: Generating Diverse Questions using Variational Autoencoders Supplementary Creativity: Generating Diverse Questions using Variational Autoencoders Unnat Jain UIUC uj2@illinois.edu Ziyu Zhang Northwestern University zzhang@u.northwestern.edu Alexander Schwing UIUC

More information

Learning to use a sign language

Learning to use a sign language 85 Chapter 8 Learning to use a sign language It is easy for a young child to learn a complete sign language. A child will first begin to understand the signs that others use, especially for people and

More information

Give the gift of physical activity

Give the gift of physical activity Give the gift of physical activity When choosing gifts this season, consider items that can have a lasting impact on the health of your children. Consider gifts that they can enjoy over and over again

More information

DEEP LEARNING BASED VISION-TO-LANGUAGE APPLICATIONS: CAPTIONING OF PHOTO STREAMS, VIDEOS, AND ONLINE POSTS

DEEP LEARNING BASED VISION-TO-LANGUAGE APPLICATIONS: CAPTIONING OF PHOTO STREAMS, VIDEOS, AND ONLINE POSTS SEOUL Oct.7, 2016 DEEP LEARNING BASED VISION-TO-LANGUAGE APPLICATIONS: CAPTIONING OF PHOTO STREAMS, VIDEOS, AND ONLINE POSTS Gunhee Kim Computer Science and Engineering Seoul National University October

More information

Experiments with TurKit

Experiments with TurKit Experiments with TurKit Crowdsourcing and Human Computation Instructor: Chris Callison-Burch Website: crowdsourcing-class.org TurKit in action Adorable baby with deep blue eyes, wearing light blue and

More information

Generative Adversarial Networks.

Generative Adversarial Networks. Generative Adversarial Networks www.cs.wisc.edu/~page/cs760/ Goals for the lecture you should understand the following concepts Nash equilibrium Minimax game Generative adversarial network Prisoners Dilemma

More information

Balance & Coordination

Balance & Coordination Balance & Coordination What is balance and coordination? Balance is the ability to maintain a controlled body position during task performance, whether it is sitting at a table, walking the balance beam

More information

Direct Observation Questions

Direct Observation Questions Direct Observation Questions 1. How many airplanes were in the picture? 2. What number was at the top of the dart board? 3. What time did the clock say? 4. What denomination was the money? 5. What color

More information

Chair for Computer Aided Medical Procedures (CAMP) Seminar on Deep Learning for Medical Applications. Shadi Albarqouni Christoph Baur

Chair for Computer Aided Medical Procedures (CAMP) Seminar on Deep Learning for Medical Applications. Shadi Albarqouni Christoph Baur Chair for (CAMP) Seminar on Deep Learning for Medical Applications Shadi Albarqouni Christoph Baur Results of matching system obtained via matching.in.tum.de 108 Applicants 9 % 10 % 9 % 14 % 30 % Rank

More information

San Francisco. Places. People

San Francisco. Places. People Places 1 In 1821, the San Francisco area became part of. a Brazil b the United Kingdom c Canada d Mexico 2 Before 1848, San Francisco was called. a Yerba Buena b Ohlone c Dolores d Sutter s Mill 3 Earthquakes

More information

Synthesis of Gadolinium-enhanced MRI for Multiple Sclerosis patients using Generative Adversarial Network

Synthesis of Gadolinium-enhanced MRI for Multiple Sclerosis patients using Generative Adversarial Network Medical Application of GAN Synthesis of Gadolinium-enhanced MRI for Multiple Sclerosis patients using Generative Adversarial Network Sumana Basu School of Computer Science McGill University 260727568 sumana.basu@mail.mcgill.ca

More information

Example An example is provided at the start of each exercise as a guide for students.

Example An example is provided at the start of each exercise as a guide for students. About This Book Writing meaningful sentences and building grammatically correct language structures are important aspects of English learning. Good writing skills enable one to communicate effectively.

More information

English for living in the UK. The Cervical Smear

English for living in the UK. The Cervical Smear English for living in the UK The Cervical Smear At a glance... Objective This class is aimed at teaching new arrivals to the UK about the need for cervical screening and to reduce the anxiety a smear test

More information

Eat Right Stay Healthy Brownie Girl Scout Try-It

Eat Right Stay Healthy Brownie Girl Scout Try-It Girl Scouts of Sycamore Council Eat Right Stay Healthy Brownie Girl Scout Try-It Overview This guide provides troop leaders with a template for three troop meetings that center around the topic of eating

More information

READY. Book. CURRICULUM ASSOCIATES, Inc. A Quick-Study Program TEST

READY. Book. CURRICULUM ASSOCIATES, Inc. A Quick-Study Program TEST A Quick-Study Program TEST Book 6 READY LONGER READING PASSAGES READY Reviews Key Concepts in Reading Comprehension Provides Practice Answering a Variety of Comprehension Questions Develops Test-Taking

More information

Session 15: Mindful Eating, Mindful Movement

Session 15: Mindful Eating, Mindful Movement Session 15: Mindful Eating, Mindful Movement Are there times when you realize that you are still eating and simply haven t noticed that you are not even hungry anymore? Do you ever get to the end of a

More information

Translating Videos to Natural Language Using Deep Recurrent Neural Networks

Translating Videos to Natural Language Using Deep Recurrent Neural Networks Translating Videos to Natural Language Using Deep Recurrent Neural Networks Subhashini Venugopalan UT Austin Huijuan Xu UMass. Lowell Jeff Donahue UC Berkeley Marcus Rohrbach UC Berkeley Subhashini Venugopalan

More information

ENGLISH COMPETITION. LEVEL 3-4 (Γ - Δ Δημοτικού)

ENGLISH COMPETITION. LEVEL 3-4 (Γ - Δ Δημοτικού) ENGLISH COMPETITION LEVEL 3-4 (Γ - Δ Δημοτικού) 11 February 2012 10:00-11:00 Questions 1-10: 3 points each Questions 11-20: 4 points each Questions 21-40: 5 points each Jack and the Beanstalk In a little

More information

VILNIAUS MIESTO 3 KLASIŲ MOKINIŲ ANGLŲ KALBOS OLIMPIADOS UŽDUOTYS 2016 M. Student s name, school

VILNIAUS MIESTO 3 KLASIŲ MOKINIŲ ANGLŲ KALBOS OLIMPIADOS UŽDUOTYS 2016 M. Student s name, school TOTAL /70 VILNIAUS MIESTO 3 KLASIŲ MOKINIŲ ANGLŲ KALBOS OLIMPIADOS UŽDUOTYS 2016 M. Student s name, school 1. Read the text and answer the questions. Circle the correct answer. FIRST AIRPLANE TRIP Time:

More information

And an ARMory Strong digital cammo dri-fit shirt.

And an ARMory Strong digital cammo dri-fit shirt. A DAY IN THE LIFE OF AN ARMORY SUMMER ROCKETEER So here it is! If you re ALL IN for our entire process, here is what your typical day will look like. Day 1: Assessment day. Day one will be different than

More information

Is your family missing out on the benefits of being active every day? Make your move Sit less Be active for life! Families

Is your family missing out on the benefits of being active every day? Make your move Sit less Be active for life! Families AUSTRALIA S PHYSICAL ACTIVITY AND SEDENTARY BEHAVIOUR GUIDELINES Is your family missing out on the benefits of being active every day? Make your move Sit less Be active for life! Families What s it all

More information

CARING FOR PATIENTS WITH DEMENTIA:

CARING FOR PATIENTS WITH DEMENTIA: CARING FOR PATIENTS WITH DEMENTIA: LESSON PLAN Lesson overview Time: One hour This lesson teaches useful ways to work with patients who suffer from dementia. Learning goals At the end of this session,

More information

THIS SET OF LESSONS PROVIDES

THIS SET OF LESSONS PROVIDES Foundational Skills WEEK ONE THIS SET OF LESSONS PROVIDES games and activities to help children develop fitness, strength, body awareness, spatial concepts, adaptive skills (following directions, imitating

More information

Total Hip Replacement: Your Guide to Preparation and Recovery

Total Hip Replacement: Your Guide to Preparation and Recovery Total Hip Replacement: Your Guide to Preparation and Recovery Table of Contents Preparing For Your Surgery...................... 1 During Your Hospital Stay...................... 6 After Surgery.............................

More information

Meeting a Kid with Autism

Meeting a Kid with Autism What s up with Nick? When school started, we had a new kid named Nick. He seemed a little different. My friends and I wondered, What's up with Nick? Turns out, Nick has autism. What is Autism This year,

More information

Attention deficit means it s hard for you to concentrate. Hyperactivity means you are more active than other kids/ young people your age.

Attention deficit means it s hard for you to concentrate. Hyperactivity means you are more active than other kids/ young people your age. ADHD ADHD stands for Attention Deficit Hyperactivity Disorder. Attention deficit means it s hard for you to concentrate. Hyperactivity means you are more active than other kids/ young people your age.

More information

Eleanor & Park Chapters 1-5

Eleanor & Park Chapters 1-5 Eleanor & Park Chapters 1-5? = Question about Reading Symbol P = Prediction of What s to Come C = Personal Connection! = Strong Feeling During Reading Provide answer and explain WHY! Q = Most Important

More information

TOC: VE examples, VE student surveys, VE diagnostic questions Virtual Experiments Examples

TOC: VE examples, VE student surveys, VE diagnostic questions Virtual Experiments Examples TOC: VE examples, VE student surveys, VE diagnostic questions Virtual Experiments Examples Circular Motion In this activity, students are asked to exert a force on an object, which has an initial velocity,

More information

A guide to creating. Relaxed Performances. for people with Autism. Page 1 of 12

A guide to creating. Relaxed Performances. for people with Autism. Page 1 of 12 A guide to creating Relaxed Performances for people with Autism Page 1 of 12 What is Autism? Research suggests that currently 1.1% of the population have a diagnosis of autism. This statistic does not

More information

Contrition. A person who has not been wrong. Never, never, no not once- He s missin out on rightness. He doesn t know ow he went wrong,

Contrition. A person who has not been wrong. Never, never, no not once- He s missin out on rightness. He doesn t know ow he went wrong, Chapter 22 Last Day at Alice Contrition A person who has not been wrong Never, never, no not once- He s missin out on rightness. He doesn t know ow he went wrong, He doesn t know, not a bit About that

More information

Deep Learning for Computer Vision

Deep Learning for Computer Vision Deep Learning for Computer Vision Lecture 12: Time Sequence Data, Recurrent Neural Networks (RNNs), Long Short-Term Memories (s), and Image Captioning Peter Belhumeur Computer Science Columbia University

More information

VILNIAUS MIESTO 3 KLASIŲ MOKINIŲ ANGLŲ KALBOS OLIMPIADOS UŽDUOČIŲ ATSAKYMAI 2016 M. Student s name, school

VILNIAUS MIESTO 3 KLASIŲ MOKINIŲ ANGLŲ KALBOS OLIMPIADOS UŽDUOČIŲ ATSAKYMAI 2016 M. Student s name, school TOTAL /70 VILNIAUS MIESTO 3 KLASIŲ MOKINIŲ ANGLŲ KALBOS OLIMPIADOS UŽDUOČIŲ ATSAKYMAI 2016 M. Student s name, school 1. Read the text and answer the questions. Circle the correct answer. FIRST AIRPLANE

More information

Children s Literature Unit. Grade: 1. Theme: Individuality. Differences. Many people have varied differences. These can include physical and cultural

Children s Literature Unit. Grade: 1. Theme: Individuality. Differences. Many people have varied differences. These can include physical and cultural Children s Literature Unit Grade: 1 Theme: Individuality Book #3: It s Okay to be Different Anchor Paper: Free Verse Poem: Differences Many people have varied differences These can include physical and

More information

Notes from filming at White River VA-February 5, 2008

Notes from filming at White River VA-February 5, 2008 Notes from filming at White River VA-February 5, 2008 Wellness Tools Go fishing Shut down and think, what to do and what not to do Get into a good book Drawing Focus on something other than negatives Be

More information

This nonfiction book

This nonfiction book This nonfiction book presents basic facts about ears and hearing in both people and animals. Diagrams help simplify challenging concepts. Interesting details about animals ears are supported by photos

More information

Good Communication Starts at Home

Good Communication Starts at Home Good Communication Starts at Home It is important to remember the primary and most valuable thing you can do for your deaf or hard of hearing baby at home is to communicate at every available opportunity,

More information

June 2017 Newsletter Upcoming in June: Prince Edward Fitness & Aquatic Centre News:

June 2017 Newsletter Upcoming in June: Prince Edward Fitness & Aquatic Centre News: June 2017 Newsletter Upcoming in June: June 4 th County Kids of Steel Triathlon June 5 th Women on Weights begins June 10 th Babysitting Course June 14 th Free Pilates class for anyone 12pm June 14 th

More information

Tampa Bay Saturday, April 28, 2018

Tampa Bay Saturday, April 28, 2018 Tampa Bay Saturday, April 28, 2018 On April 28, I get to go to the Autism Speaks Walk! It will be so much FUN and such a SPECIAL day for my family and me! Autism Speaks Walks bring the community together

More information

Sensory Diet. What is a sensory diet?

Sensory Diet. What is a sensory diet? Sensory Diet What is a sensory diet? A sensory diet is a treatment strategy used to manage sensory processing dysfunction (also known as sensory motor integration dysfunction). In essence, it is a list

More information

Think fit! Be active! challenge

Think fit! Be active! challenge Think fit! Be active! challenge Your Be active! challenge Your Be active! challenge is to earn 15 Heart points a week, by doing at least 30 minutes of activity a day. To help you earn your Heart points:

More information

Activities for People with Dementia by Teepa Snow, MS, OTR/L, FAOTA

Activities for People with Dementia by Teepa Snow, MS, OTR/L, FAOTA Activities for People with Dementia by Teepa Snow, MS, OTR/L, FAOTA One of the most challenging aspects of supporting someone who is living with a dementing illness is to develop daily routines and activities

More information

Strength and Endurance

Strength and Endurance Strength and Endurance What is strength and endurance? In practical terms, muscle strength is how strong the child is and muscular endurance is how long the child s muscles can work. In more specific terms:

More information

Manchester Royal Infirmary. Ambulatory EEG Neurophysiology Department

Manchester Royal Infirmary. Ambulatory EEG Neurophysiology Department Manchester Royal Infirmary Ambulatory EEG Neurophysiology Department 0161 276 4564 What Is An Ambulatory EEG? EEG stands for electroencephalogram. An EEG is a simple and painless test in which the electrical

More information

Example An example is provided at the start of each exercise as a guide for students.

Example An example is provided at the start of each exercise as a guide for students. About This Book Writing meaningful sentences and building grammatically correct language structures are important pects of English learning. Good writing skills enable one to communicate effectively. 600

More information

Concussion Recovery Book. for Families

Concussion Recovery Book. for Families Concussion Recovery Book for Families Contents What is a concussion?... 3 How the brain works... 3 Diagnosing a concussion... 4 Healing a concussion... 6 Parents and caregivers role as traffic director...

More information

Lesson 2: Active Living Choices

Lesson 2: Active Living Choices Lesson 2: Active Living Choices Do you know that the amount of time Canadian children spend playing video games is among the highest in the world? Do you know that the average Canadian watches almost 22

More information

Assessment Schedule 2015 German: Demonstrate understanding of a variety of German texts on areas of most immediate relevance (90886)

Assessment Schedule 2015 German: Demonstrate understanding of a variety of German texts on areas of most immediate relevance (90886) NCEA Level 1 German (90886) 2015 page 1 of 8 Assessment Schedule 2015 German: Demonstrate of a variety of German texts on areas of most immediate relevance (90886) Assessment Criteria Achievement Achievement

More information

Physical Education Curriculum Map Pool/Canoeing Grade: 7

Physical Education Curriculum Map Pool/Canoeing Grade: 7 Pool/Canoeing Grade: 7 Participation in physical activity impacts wellness throughout a lifetime. Quality lifelong movement is based on scientific concepts/principles. How can physical activity choices

More information

Filling Your Toolbox with Visual Strategies. Shelley Green

Filling Your Toolbox with Visual Strategies. Shelley Green Filling Your Toolbox with Visual Strategies Shelley Green Most Children With ASD Are VISUAL Learners! Single pictures If - then pictures Schedules/routines Social stories New experiences Rules Roadblocks

More information

Clem Quinn - Sky-Diver

Clem Quinn - Sky-Diver King AbdulAziz University English Language Institute External Programme 2nd Semester 2011 Foundation Year ELCA 101 A X 2 = 100 Student's Name: Student ID#: Section: I. Part One - Reading Clem Quinn - Sky-Diver

More information

Choose the correct answers. Circle the letters, please.

Choose the correct answers. Circle the letters, please. Choose the correct answers. Circle the letters, please. 1. My niece lives uncle s house. A) in B) on C) at D) 2. Mark riding every week. A) go B) is going C) goes D) is go 3... milk in the fridge? A) Are

More information

Parent Personal Statements of their Observations From the UCSD Suramin Treatment Trial Blinded Comments, September 13, 2016

Parent Personal Statements of their Observations From the UCSD Suramin Treatment Trial Blinded Comments, September 13, 2016 Parent Personal Statements of their Observations From the UCSD Suramin Treatment Trial Blinded Comments, September 13, 2016 Subject #1 Can you imagine being the parent of one of the locked-in patients

More information