Automatic Notes Generation for Musical Instrument Tabla

Size: px
Start display at page:

Download "Automatic Notes Generation for Musical Instrument Tabla"

Transcription

1 Volume-5, Issue-5, October-2015 International Journal of Engineering and Management Research Page Number: Automatic Notes Generation for Musical Instrument Tabla Prashant Kanade 1, Bhavesh Chachra 2, Harmeet Sawlani 3, Vishal Jumnani 4, Deepak Bhagtani 5 1 Assistant Professor, Department of Computer, V.E.S.I.T, INDIA 2,3,4,5 Student, Department of Computer, V.E.S.I.T, INDIA ABSTRACT In this paper, our purpose is to design an intellectual system which will generate the notes of the tabla based on the input string provided by the user. The main idea of the proposed system is divided into two phases the string checking and generation phase and the string playing and storage phase. This system will accept the strings and check whether the input strings are valid or not and will apply some probability distribution based algorithm on strings and generate some combination of strings (tones generation from string) in the string checking and generation phase and the generated combination of strings (generated tones) which are melodious are played and the tone which is selected is saved in the users database and downloaded in computer. Keywords---- Teen, Rhythm, Western music I. INTRODUCTION Indian classical music is one of the most oldest and unbroken traditions in the world. It s origin stem from the Vedas, the ancient script of the Hindus. Presently, Indian classical music is based upon two main elements: Rag and Tal. Rag is the melody of the music while the Tal is concerned with the rhythm. This project aims to deal with the idea of rhythm in Indian classical music, specifically the control of rhythmic patterns using an instrument called the Tabla. Tal literally means clap. It implies the control of rhythmic patterns in Indian classical music by the use of hand claps. Today the Tabla is used in place of the clap in a performance but the origin of the word remains. The Tabla consist of 2 drums the Dayan and the Bayan. The instrument is used not to just control the rhythmic patterns but can also create large, complex compositions based upon rhythmic structures and strict formalisms. One of the most unique attributes of Indian classical music is the oral transmission of music between musicians and listeners due to the lack of formal written notation unlike Western music. As a result Tabla compositions bare a strong relationship to linguistics and natural language. It is my intention to explore this idea by trying to construct a program which uses formal grammars taken from the study of linguistics as a way in which to model Tabla compositions. This fundamentally implies that Tabla compositions work as a language. David Courtney, an expert Tabla player has made an analogy about learning the theory of Tabla which supports the connection between Tabla compositions and linguistics in Just as knowledge of grammar separates a literate speaker from the masses, likewise an understanding of the theory of Indian rhythm and compositional form separates a master from one who is merely functional. II. DESCRIPTION Kaida: Kaida are basically rules which are used to specify the bols present in the tabla. There are different types of kaida. Tabla: Tabla is an ancient Indian musical instrument; it is used by classical music artists. The tones of tabla are called Alphabets. There are about bols. Each bol represents the sound which is generated by playing tabla. Each stroke played on tabla represents sound which can be vocally pronunced. Each bol is specific. Combination of these bols is used to play one string. Long and long patterns can be generated using these bols. While constructing these patterns two things are to be considered Raag & Taal. Raag is melody of the pattern generated and Taal is the rhythm of the words.the Tabla has pair of drums which has right-hand drum Dayan & left-hand drum Bayan. Talis nothing but "clap". The clap used in the performance is replaced by tal. Tali or bhari, khali, bol, theka, avartan, vibhag or (ang), lay, sam & matra. Certain rules are to be followed while constructing the patterns, some of the rules are Kaida, Teen tal (16 beats). For instance teen tal can be shown as: Dha Dhin Dhin Dha Dha Dhin Dhin Dha Na Tin Tin Ta tete Dhin Dhin Dha 326 Copyright Vandana Publications. All Rights Reserved.

2 1. N-gram Modeling III. METHODOLOGY USED N-Gram modeling is an approach of data analysis designed for sequential streams of data. The principle is elementary, quite literally. A stream of data is split into its constituent terms, or n- grams, as they are called, and the information extracted from the relationships between individual n-grams is used to construct an n- gram model, which can then be used for tasks like predicting the next term in a sequence, or constructing new sequences similar to an existing one. The concept is easily demonstrated using a simple example. Let us consider a sequence of letters S = {ABAACAABAA}. Let us construct an n-gram model on this data using a simple histogram. Splitting the stream into its constituent letters, we see that there are 7 As, 2 Bs and 1 C. We can now estimate P (A) = 7/10, i.e. there is a 70% chance that the next element in the sequence will be an A. A more sophisticated approach would be to use bi-grams, or groups of 2 letters. To estimate the probability of the next term in the sequence being an A, we are looking for the probability of the bi-gram AA, since the last term in the sequence S is an A. P(A A) = P(AA)/(P(AA) +P(AB) +P(AC)) = 3/( ) = 50%. This means that the probability of A being the next element in the sequence is 50% and not 70% as we predicted earlier! Histogram showing the list of all possible bi-grams and their counts in a sequence S = {ABAACAABAA}. Bi-gram AA AB AC BA BB BC CA CB CC Counts A model that uses still more information can be constructed using sequences of tri-grams, or even 4-grams and so on. N-gram modeling has proved itself to be a robust approach to sequential data analysis. It has been applied rather successfully in speech processing and statistical natural language processing, and is now being applied to music modeling as well. Perhaps the most important advantage of using n-gram modeling is that it has an inherent approach to addressing the hierarchy within a sequence. In music, as with language, a single stream of events can often be interpreted in multiple ways - as a stream of notes, as a set of gestures and short phrases, or as a coherent melody - and considering n-grams of different lengths allows us to consider all options before making a prediction about the next event. 2. LSTM LSTM stands for Long short-term memory (LSTM). It is a methodology which works similar to that of neural network which is used for generating different types of tones, songs, etc based on the input given by the user. Architecture of LSTM: The diagram give below is the architectural view of the LSTM. It gives full overview about the working and the methodology of the LSTM. A typical implementation of an LSTM block. Steps Involved in LSTM Working: 1) Learning Chords: LSTM is used to learn musical chord structure. Chords structure of LSTM: LSTM was trained using a form of blues common in jazz bebop improvisation. The form is in 12 bars and contains the following chords. Chords having 12 bars 327 Copyright Vandana Publications. All Rights Reserved.

3 2) Learning Melody and chords: Initially chord structure must be learnt fully. The network is started with a series of notes and then notes are compose freely. Chords composed by LSTM Working of LSTM :- Structure of Feed Forward Neural Network 4. RECURRENT NEURAL NETWORKS The recurrent neural network is a type of neural network which works on the methodology of single input single output. Each output produced by the process becomes input to the other process. This is done recurrently to obtain a melodious song. 3. FEED FORWARD NEURAL NETWORKS Feed forward neural networks works on the concept of accepting the few strings from the user and these strings are processed using the probability distribution based algorithm. The new string generated is further processed using the current input and the other inputs by the user the process is fully based on the probability distribution algorithm. Consider an example, if the user inputs Dha Dhin Dha Dhin then the processing is done using the concept of the probability distribution algorithm. The output generated is not dependent on the past strings generated. This generated output is combination of the input strings. But only those values are displayed that satisfy the rules of the feed forward neural networks. Structure of Recurring Neural Network 328 Copyright Vandana Publications. All Rights Reserved.

4 The multiple feed forward neural networks are used to generate the output for the complex values. The string generated from above example is Dha Dhin Dhin Dha. This is used in generation of songs, tones, lyrics, etc. V. EXAMPLE Consider an example of certain tabla bols to demonstrate that how the system will generate its corresponding strings. IV. Structure of Neural Networks SYSTEM BLOCK DIAGRAM Dha Dhin Dhin Dha Dha Dhin Dhin Dha Dha Tin Tin Ta Ta Dhin Dhin Dha Teen Taal has 16 Bits and it has 4 sections with 4 beats in each section we can fit a tihai as follows in 16 Beats of Teen-Taal. DhaDha TeTe DhaDha TinNa 1 Dha # DhaDha TeTe DhaDha TinNa Dha # DhaDha TeTe DhaDha TinNa 16 Dha First Bit of time Cycle of teen Taal # represents pause As shown above N-gram modeling is applied to define bi-grams & tri-grams if required to predict the next alphabet which should have the best possible vocab as well as enough rhythmic. This project serves as an assistant for music artists & tabla masters and glitters our Indian culture over western methologies. V. CONCLUSION The above block diagram gives us the in general overview regarding our system and helps us to analyze how different modules are interred related with each other. The different modules of our system are Generator, Modifier, Authenticator, Player, etc. The main intention of this project is to develop a system which uses a derivation of an existing formal grammar(s) and to use it to model the language of Tabla compositions. The system will generate a set of compositions based upon some preliminary parameters and to be able to generate the same compositions in any taal. In order to make this a usable system, a front end is to be implemented whereby the user could select the parameters and the composition that is generated would be displayed (as text or audio samples) back to the user. This would serve the purpose of being an intelligent system as well as serving a practical purpose for the listener. The system which will be designed in this project will provide musical notes to the user. It will generate required mathematical rule base (theka or taal) using artificial intelligence and neural network techniques. The strings which will be generated can be melodious. Artist will be able to play & enhance the generated strings. 329 Copyright Vandana Publications. All Rights Reserved.

5 VI. ACKNOWLEDGEMENT We are thankful that our project mentor Mr. Prashant Kanade gave us opportunity to design such a system which recognizes grammar as well as follow the literature rules of tabla instrument and generate its respective combination of strings also called as Taal. As of now, this idea has not been explored yet in terms of musical notes generation specifically for tabla. So our idea will act as sowing the seed of automation in terms of rhythmic notes formation which help typical tabla masters to explore their knowledge. This project serves as an assistant for music artists & tabla masters and glitters our Indian culture over western methologies. REFERENCES [1] Recurrent LSTM Neural Networks for Language Modeling, [2] Wonmin Byeon, Thomas, M. Breuel, Federico Raue, Marcus Liwicki, Scene Labeling with LSTM Recurrent Neural Networks, 2015 IEEE Explore. [3] Benard Bel., Pattern grammars in formal representations of musical structures. In Work- shop on AI and Music, pages th International Joint Conference on Artificial Intelligence, June [4] Rowe, R, Interactive Music Systems - Machine Listening and Composing, The MIT Press, Mas, p. 26 [5] Cheng Long, Raymond Chi-Wing Wong, Raymond Ka Wai Sze, T-Music: A Melody Composer based on Frequent Pattern Mining, ICDE Conference 2013 [6] Chuan-Wang Chang and Hewijin Christine Jiau, An Improved Music Representation Method by Using Harmonic-based Chord Decision Algorithm, 2004 IEEE International Conference on Multimedia and Expo (ICME) [7] Abhijit Suprem and Manjit Ruprem, A New Composition Algorithm for Automatic Generation of Thematic Music from the Existing Music Pieces, Proceedings of the World Congress on Engineering and Computer Science 2013 Vol II WCECS 2013, October, 2013, San Francisco, USA [8] Spangler, R. R.,1999, Rule based Analysis and Generation of music, Ph.D., thesis, California Institute of Technology, California [9] Laura Lynn Housley, 2012, Dynamic Generation of Musical Notation from MusicXML Input on an Android Tablet, thesis, The Ohio State University [10] Miguel Haruki Yamaguchi, May 2011, An extensible tool for automated music generation, thesis, Lafayette College. S.Jorda, O. Wust, A System for Collaborative Music Composition over the Web, IEEE Explore 330 Copyright Vandana Publications. All Rights Reserved.

Automatic Labelling of tabla signals

Automatic Labelling of tabla signals ISMIR 2003 Oct. 27th 30th 2003 Baltimore (USA) Automatic Labelling of tabla signals Olivier K. GILLET, Gaël RICHARD Introduction Exponential growth of available digital information need for Indexing and

More information

Musicological perspective. Martin Clayton

Musicological perspective. Martin Clayton Musicological perspective Martin Clayton Agenda Introductory presentations (Xavier, Martin, Baris) [30 min.] Musicological perspective (Martin) [30 min.] Corpus-based research (Xavier, Baris) [30 min.]

More information

Unit 5. Lesson 2 By Sudha Sahgal

Unit 5. Lesson 2 By Sudha Sahgal Unit V Lesson 2 By Sudha Sahgal A very worm welcome. To this web based course on vocal music for graduate student. This course has been developed by the faculty members of the department of music faculty

More information

DOWNLOAD OR READ : ESSAYS ON INDIAN MUSIC HISTORY AND CULTURE SERIES PDF EBOOK EPUB MOBI

DOWNLOAD OR READ : ESSAYS ON INDIAN MUSIC HISTORY AND CULTURE SERIES PDF EBOOK EPUB MOBI DOWNLOAD OR READ : ESSAYS ON INDIAN MUSIC HISTORY AND CULTURE SERIES PDF EBOOK EPUB MOBI Page 1 Page 2 essays on indian music history and culture series essays on indian music pdf essays on indian music

More information

International Journal of Advance Engineering and Research Development. Digi-Taal Instrument

International Journal of Advance Engineering and Research Development. Digi-Taal Instrument Scientific Journal of Impact Factor (SJIF): 3.134 ISSN (Online): 2348-4470 ISSN (Print) : 2348-6406 International Journal of Advance Engineering and Research Development Volume 2, Issue 3, March -2015

More information

Jazz Melody Generation from Recurrent Network Learning of Several Human Melodies

Jazz Melody Generation from Recurrent Network Learning of Several Human Melodies Jazz Melody Generation from Recurrent Network Learning of Several Human Melodies Judy Franklin Computer Science Department Smith College Northampton, MA 01063 Abstract Recurrent (neural) networks have

More information

Sudhanshu Gautam *1, Sarita Soni 2. M-Tech Computer Science, BBAU Central University, Lucknow, Uttar Pradesh, India

Sudhanshu Gautam *1, Sarita Soni 2. M-Tech Computer Science, BBAU Central University, Lucknow, Uttar Pradesh, India International Journal of Scientific Research in Computer Science, Engineering and Information Technology 2018 IJSRCSEIT Volume 3 Issue 3 ISSN : 2456-3307 Artificial Intelligence Techniques for Music Composition

More information

Beyond Notation: Using Improvisation to Develop Musicianship in Concert Band

Beyond Notation: Using Improvisation to Develop Musicianship in Concert Band Beyond Notation: Using Improvisation to Develop Musicianship in Concert Band Dr. Lissa F. May, Indiana University School of Music Edgewood Junior High 8 th Grade Band James DeCaro, Director; Mike Bolla,

More information

CSC475 Music Information Retrieval

CSC475 Music Information Retrieval CSC475 Music Information Retrieval Symbolic Music Representations George Tzanetakis University of Victoria 2014 G. Tzanetakis 1 / 30 Table of Contents I 1 Western Common Music Notation 2 Digital Formats

More information

GENERATIVE RHYTHMIC MODELS

GENERATIVE RHYTHMIC MODELS GENERATIVE RHYTHMIC MODELS A Thesis Presented to The Academic Faculty by Alex Rae In Partial Fulfillment of the Requirements for the Degree Master of Science in Music Technology in the Department of Music

More information

Oaktree School Assessment. Music P4

Oaktree School Assessment. Music P4 Music P4 Pupil: Pupils make vocal sounds in response to music They copy vocal sounds made by adults or pupils They know how to play familiar instruments (drum, triangle, shaker) They copy an action made

More information

Robert Alexandru Dobre, Cristian Negrescu

Robert Alexandru Dobre, Cristian Negrescu ECAI 2016 - International Conference 8th Edition Electronics, Computers and Artificial Intelligence 30 June -02 July, 2016, Ploiesti, ROMÂNIA Automatic Music Transcription Software Based on Constant Q

More information

Paulo V. K. Borges. Flat 1, 50A, Cephas Av. London, UK, E1 4AR (+44) PRESENTATION

Paulo V. K. Borges. Flat 1, 50A, Cephas Av. London, UK, E1 4AR (+44) PRESENTATION Paulo V. K. Borges Flat 1, 50A, Cephas Av. London, UK, E1 4AR (+44) 07942084331 vini@ieee.org PRESENTATION Electronic engineer working as researcher at University of London. Doctorate in digital image/video

More information

AoS2 set works Schoenberg: Peripetie AoS4 set works Koko: Yiri Capercaille: Skye Waulking Song Rag Desh

AoS2 set works Schoenberg: Peripetie AoS4 set works Koko: Yiri Capercaille: Skye Waulking Song Rag Desh The KING S Medium Term Plan - Music Y11 LC3 Programme Legacy GCSE Module Area of Study 2 and 4 Analysing three additional set works. Learners will be required to focus their skills on new styles of notated

More information

Music Composition with RNN

Music Composition with RNN Music Composition with RNN Jason Wang Department of Statistics Stanford University zwang01@stanford.edu Abstract Music composition is an interesting problem that tests the creativity capacities of artificial

More information

Take a Break, Bach! Let Machine Learning Harmonize That Chorale For You. Chris Lewis Stanford University

Take a Break, Bach! Let Machine Learning Harmonize That Chorale For You. Chris Lewis Stanford University Take a Break, Bach! Let Machine Learning Harmonize That Chorale For You Chris Lewis Stanford University cmslewis@stanford.edu Abstract In this project, I explore the effectiveness of the Naive Bayes Classifier

More information

A New Composition Algorithm for Automatic Generation of Thematic Music from the Existing Music Pieces

A New Composition Algorithm for Automatic Generation of Thematic Music from the Existing Music Pieces A New Composition Algorithm for Automatic Generation of Thematic Music from the Existing Music Pieces Abhijit Suprem and Manjit Ruprem Abstract Recently, research on computer based music generation utilizing

More information

LEARNING-FOCUSED TOOLBOX

LEARNING-FOCUSED TOOLBOX Know: Understand: Do: Native Amreican Hispanic African Carribean Chinese Irish Folk Song Current popular music Classical music Jazz PA Music Standards: 9.1 Singing, alone and with others, a varied repertoire

More information

Automatic Music Clustering using Audio Attributes

Automatic Music Clustering using Audio Attributes Automatic Music Clustering using Audio Attributes Abhishek Sen BTech (Electronics) Veermata Jijabai Technological Institute (VJTI), Mumbai, India abhishekpsen@gmail.com Abstract Music brings people together,

More information

The Context Quarterly e journal of language, literary and cultural studies

The Context Quarterly e journal of language, literary and cultural studies The Context Quarterly e journal of language, literary and cultural studies Publication details and instructions for authors: http://www.magnuspublishing.com This is an Open Access Journal distributed under

More information

However, in studies of expressive timing, the aim is to investigate production rather than perception of timing, that is, independently of the listene

However, in studies of expressive timing, the aim is to investigate production rather than perception of timing, that is, independently of the listene Beat Extraction from Expressive Musical Performances Simon Dixon, Werner Goebl and Emilios Cambouropoulos Austrian Research Institute for Artificial Intelligence, Schottengasse 3, A-1010 Vienna, Austria.

More information

Computer Coordination With Popular Music: A New Research Agenda 1

Computer Coordination With Popular Music: A New Research Agenda 1 Computer Coordination With Popular Music: A New Research Agenda 1 Roger B. Dannenberg roger.dannenberg@cs.cmu.edu http://www.cs.cmu.edu/~rbd School of Computer Science Carnegie Mellon University Pittsburgh,

More information

The authors objective has been to provide every material support to the teacher, to leave you free to teach your subject.

The authors objective has been to provide every material support to the teacher, to leave you free to teach your subject. Introduction This series will help both specialist and non-specialist teachers deliver the Key Stage 3 curriculum for Music effectively. The books follow the Scheme of Work objectives, providing: on left-hand

More information

Musical Creativity. Jukka Toivanen Introduction to Computational Creativity Dept. of Computer Science University of Helsinki

Musical Creativity. Jukka Toivanen Introduction to Computational Creativity Dept. of Computer Science University of Helsinki Musical Creativity Jukka Toivanen Introduction to Computational Creativity Dept. of Computer Science University of Helsinki Basic Terminology Melody = linear succession of musical tones that the listener

More information

Arts Education Essential Standards Crosswalk: MUSIC A Document to Assist With the Transition From the 2005 Standard Course of Study

Arts Education Essential Standards Crosswalk: MUSIC A Document to Assist With the Transition From the 2005 Standard Course of Study NCDPI This document is designed to help North Carolina educators teach the Common Core and Essential Standards (Standard Course of Study). NCDPI staff are continually updating and improving these tools

More information

ESP: Expression Synthesis Project

ESP: Expression Synthesis Project ESP: Expression Synthesis Project 1. Research Team Project Leader: Other Faculty: Graduate Students: Undergraduate Students: Prof. Elaine Chew, Industrial and Systems Engineering Prof. Alexandre R.J. François,

More information

Improvised Duet Interaction: Learning Improvisation Techniques for Automatic Accompaniment

Improvised Duet Interaction: Learning Improvisation Techniques for Automatic Accompaniment Improvised Duet Interaction: Learning Improvisation Techniques for Automatic Accompaniment Gus G. Xia Dartmouth College Neukom Institute Hanover, NH, USA gxia@dartmouth.edu Roger B. Dannenberg Carnegie

More information

ANNOTATING MUSICAL SCORES IN ENP

ANNOTATING MUSICAL SCORES IN ENP ANNOTATING MUSICAL SCORES IN ENP Mika Kuuskankare Department of Doctoral Studies in Musical Performance and Research Sibelius Academy Finland mkuuskan@siba.fi Mikael Laurson Centre for Music and Technology

More information

Curriculum Overview Music Year 9

Curriculum Overview Music Year 9 2015-2016 Curriculum Overview Music Year 9 Within each Area of Study students will be encouraged to choose their own specialisms with regard to Piano, Guitar, Vocals, ICT or any other specialism they have.

More information

Class- IX. April hi ho. Folk song. September Revision

Class- IX. April hi ho. Folk song. September Revision Subject- Classical vocal New Session begins on 2 nd, 2018 Alankar in different rhythm Prayer : Sari srishti ke malik tum hi ho Definition-Saptak and Swar ke prakar Raag darbaari Summer Vacations 21st 1st

More information

Praxis Music: Content Knowledge (5113) Study Plan Description of content

Praxis Music: Content Knowledge (5113) Study Plan Description of content Page 1 Section 1: Listening Section I. Music History and Literature (14%) A. Understands the history of major developments in musical style and the significant characteristics of important musical styles

More information

arxiv: v1 [cs.lg] 15 Jun 2016

arxiv: v1 [cs.lg] 15 Jun 2016 Deep Learning for Music arxiv:1606.04930v1 [cs.lg] 15 Jun 2016 Allen Huang Department of Management Science and Engineering Stanford University allenh@cs.stanford.edu Abstract Raymond Wu Department of

More information

PLAYING WITH TENSION PRASHANTH THATTAI RAVIKUMAR NATIONAL UNIVERSITY OF SINGAPORE

PLAYING WITH TENSION PRASHANTH THATTAI RAVIKUMAR NATIONAL UNIVERSITY OF SINGAPORE PLAYING WITH TENSION PRASHANTH THATTAI RAVIKUMAR NATIONAL UNIVERSITY OF SINGAPORE 2015 PLAYING WITH TENSION GENERATING MULTIPLE VALID ACCOMPANIMENTS FOR THE SAME LEAD PERFORMANCE PRASHANTH THATTAI RAVIKUMAR

More information

PLOrk Beat Science 2.0 NIME 2009 club submission by Ge Wang and Rebecca Fiebrink

PLOrk Beat Science 2.0 NIME 2009 club submission by Ge Wang and Rebecca Fiebrink PLOrk Beat Science 2.0 NIME 2009 club submission by Ge Wang and Rebecca Fiebrink Introduction This document details our proposed NIME 2009 club performance of PLOrk Beat Science 2.0, our multi-laptop,

More information

Visual Arts and Language Arts. Complementary Learning

Visual Arts and Language Arts. Complementary Learning Visual Arts and Language Arts Complementary Learning Visual arts can enable students to learn more. Schools that invest time and resources in visual arts learning have the potential to increase literacies

More information

Beat Tracking based on Multiple-agent Architecture A Real-time Beat Tracking System for Audio Signals

Beat Tracking based on Multiple-agent Architecture A Real-time Beat Tracking System for Audio Signals Beat Tracking based on Multiple-agent Architecture A Real-time Beat Tracking System for Audio Signals Masataka Goto and Yoichi Muraoka School of Science and Engineering, Waseda University 3-4-1 Ohkubo

More information

ATSC Digital Television Standard: Part 6 Enhanced AC-3 Audio System Characteristics

ATSC Digital Television Standard: Part 6 Enhanced AC-3 Audio System Characteristics ATSC Digital Television Standard: Part 6 Enhanced AC-3 Audio System Characteristics Document A/53 Part 6:2010, 6 July 2010 Advanced Television Systems Committee, Inc. 1776 K Street, N.W., Suite 200 Washington,

More information

LSTM Neural Style Transfer in Music Using Computational Musicology

LSTM Neural Style Transfer in Music Using Computational Musicology LSTM Neural Style Transfer in Music Using Computational Musicology Jett Oristaglio Dartmouth College, June 4 2017 1. Introduction In the 2016 paper A Neural Algorithm of Artistic Style, Gatys et al. discovered

More information

ART & CRAFT Month July

ART & CRAFT Month July ART & CRAFT Month July 2018-19 es Sketch book- Drawing of Rainy Day. Tree with texture. Learning Outcomes The students will be able to understand the different seasons, colours & texture. Book Artoons

More information

arxiv: v1 [cs.ir] 16 Jan 2019

arxiv: v1 [cs.ir] 16 Jan 2019 It s Only Words And Words Are All I Have Manash Pratim Barman 1, Kavish Dahekar 2, Abhinav Anshuman 3, and Amit Awekar 4 1 Indian Institute of Information Technology, Guwahati 2 SAP Labs, Bengaluru 3 Dell

More information

Part-Singing and Percussion

Part-Singing and Percussion Part-Singing and Percussion Missouri Music Education Association Thursday, January 25, 2018 9:15 10:15 am Roger Sams Director of Publications and Music Education Consultant at Music Is Elementary 5228

More information

AN INTRODUCTION TO PERCUSSION ENSEMBLE DRUM TALK

AN INTRODUCTION TO PERCUSSION ENSEMBLE DRUM TALK AN INTRODUCTION TO PERCUSSION ENSEMBLE DRUM TALK Foreword The philosophy behind this book is to give access to beginners to sophisticated polyrhythms, without the need to encumber the student s mind with

More information

Frankenstein: a Framework for musical improvisation. Davide Morelli

Frankenstein: a Framework for musical improvisation. Davide Morelli Frankenstein: a Framework for musical improvisation Davide Morelli 24.05.06 summary what is the frankenstein framework? step1: using Genetic Algorithms step2: using Graphs and probability matrices step3:

More information

Department Curriculum Map

Department Curriculum Map Department Curriculum Map 2014-15 Department Subject specific required in Year 11 Wider key skills Critical creative thinking / Improvising Aesthetic sensitivity Emotional awareness Using s Cultural understing

More information

Robert Rowe MACHINE MUSICIANSHIP

Robert Rowe MACHINE MUSICIANSHIP Robert Rowe MACHINE MUSICIANSHIP Machine Musicianship Robert Rowe The MIT Press Cambridge, Massachusetts London, England Machine Musicianship 2001 Massachusetts Institute of Technology All rights reserved.

More information

Music Theory Lesson Plans

Music Theory Lesson Plans Music Theory Lesson Plans take your students from having no functional knowledge of music theory to understanding scales, chords and harmonic systems? Introductory Music Lesson Plan Objectives 1: To make

More information

Hindustani Music: Appreciating its grandeur. Dr. Lakshmi Sreeram

Hindustani Music: Appreciating its grandeur. Dr. Lakshmi Sreeram Hindustani Music: Appreciating its grandeur Dr. Lakshmi Sreeram Music in India comprises a wide variety: from the colourful and vibrant folk music of various regions, to the ubiquitous film music; from

More information

Deep learning for music data processing

Deep learning for music data processing Deep learning for music data processing A personal (re)view of the state-of-the-art Jordi Pons www.jordipons.me Music Technology Group, DTIC, Universitat Pompeu Fabra, Barcelona. 31st January 2017 Jordi

More information

ILLINOIS LICENSURE TESTING SYSTEM

ILLINOIS LICENSURE TESTING SYSTEM ILLINOIS LICENSURE TESTING SYSTEM FIELD 143: MUSIC November 2003 Illinois Licensure Testing System FIELD 143: MUSIC November 2003 Subarea Range of Objectives I. Listening Skills 01 05 II. Music Theory

More information

WESTFIELD PUBLIC SCHOOLS Westfield, New Jersey

WESTFIELD PUBLIC SCHOOLS Westfield, New Jersey WESTFIELD PUBLIC SCHOOLS Westfield, New Jersey Office of Instruction Course of Study MUSIC K 5 Schools... Elementary Department... Visual & Performing Arts Length of Course.Full Year (1 st -5 th = 45 Minutes

More information

Music Understanding and the Future of Music

Music Understanding and the Future of Music Music Understanding and the Future of Music Roger B. Dannenberg Professor of Computer Science, Art, and Music Carnegie Mellon University Why Computers and Music? Music in every human society! Computers

More information

Curriculum Standard One: The student will listen to and analyze music critically, using vocabulary and language of music.

Curriculum Standard One: The student will listen to and analyze music critically, using vocabulary and language of music. Curriculum Standard One: The student will listen to and analyze music critically, using vocabulary and language of music. 1. The student will analyze the uses of elements of music. A. Can the student analyze

More information

A Logical Approach for Melodic Variations

A Logical Approach for Melodic Variations A Logical Approach for Melodic Variations Flavio Omar Everardo Pérez Departamento de Computación, Electrónica y Mecantrónica Universidad de las Américas Puebla Sta Catarina Mártir Cholula, Puebla, México

More information

Proposed Standard Revision of ATSC Digital Television Standard Part 5 AC-3 Audio System Characteristics (A/53, Part 5:2007)

Proposed Standard Revision of ATSC Digital Television Standard Part 5 AC-3 Audio System Characteristics (A/53, Part 5:2007) Doc. TSG-859r6 (formerly S6-570r6) 24 May 2010 Proposed Standard Revision of ATSC Digital Television Standard Part 5 AC-3 System Characteristics (A/53, Part 5:2007) Advanced Television Systems Committee

More information

Music Similarity and Cover Song Identification: The Case of Jazz

Music Similarity and Cover Song Identification: The Case of Jazz Music Similarity and Cover Song Identification: The Case of Jazz Simon Dixon and Peter Foster s.e.dixon@qmul.ac.uk Centre for Digital Music School of Electronic Engineering and Computer Science Queen Mary

More information

Piano Chords Progressions The Secret Backdoor To Exciting

Piano Chords Progressions The Secret Backdoor To Exciting Piano Chords Progressions The Secret Backdoor To Exciting We have made it easy for you to find a PDF Ebooks without any digging. And by having access to our ebooks online or by storing it on your computer,

More information

Chords not required: Incorporating horizontal and vertical aspects independently in a computer improvisation algorithm

Chords not required: Incorporating horizontal and vertical aspects independently in a computer improvisation algorithm Georgia State University ScholarWorks @ Georgia State University Music Faculty Publications School of Music 2013 Chords not required: Incorporating horizontal and vertical aspects independently in a computer

More information

QUALITY OF COMPUTER MUSIC USING MIDI LANGUAGE FOR DIGITAL MUSIC ARRANGEMENT

QUALITY OF COMPUTER MUSIC USING MIDI LANGUAGE FOR DIGITAL MUSIC ARRANGEMENT QUALITY OF COMPUTER MUSIC USING MIDI LANGUAGE FOR DIGITAL MUSIC ARRANGEMENT Pandan Pareanom Purwacandra 1, Ferry Wahyu Wibowo 2 Informatics Engineering, STMIK AMIKOM Yogyakarta 1 pandanharmony@gmail.com,

More information

Using machine learning to support pedagogy in the arts

Using machine learning to support pedagogy in the arts DOI 10.1007/s00779-012-0526-1 ORIGINAL ARTICLE Using machine learning to support pedagogy in the arts Dan Morris Rebecca Fiebrink Received: 20 October 2011 / Accepted: 17 November 2011 Ó Springer-Verlag

More information

MUSIC CURRICULM MAP: KEY STAGE THREE:

MUSIC CURRICULM MAP: KEY STAGE THREE: YEAR SEVEN MUSIC CURRICULM MAP: KEY STAGE THREE: 2013-2015 ONE TWO THREE FOUR FIVE Understanding the elements of music Understanding rhythm and : Performing Understanding rhythm and : Composing Understanding

More information

Concert Band and Wind Ensemble

Concert Band and Wind Ensemble Curriculum Development In the Fairfield Public Schools FAIRFIELD PUBLIC SCHOOLS FAIRFIELD, CONNECTICUT Concert Band and Wind Ensemble Board of Education Approved 04/24/2007 Concert Band and Wind Ensemble

More information

jsymbolic 2: New Developments and Research Opportunities

jsymbolic 2: New Developments and Research Opportunities jsymbolic 2: New Developments and Research Opportunities Cory McKay Marianopolis College and CIRMMT Montreal, Canada 2 / 30 Topics Introduction to features (from a machine learning perspective) And how

More information

Cascading Citation Indexing in Action *

Cascading Citation Indexing in Action * Cascading Citation Indexing in Action * T.Folias 1, D. Dervos 2, G.Evangelidis 1, N. Samaras 1 1 Dept. of Applied Informatics, University of Macedonia, Thessaloniki, Greece Tel: +30 2310891844, Fax: +30

More information

A Transformational Grammar Framework for Improvisation

A Transformational Grammar Framework for Improvisation A Transformational Grammar Framework for Improvisation Alexander M. Putman and Robert M. Keller Abstract Jazz improvisations can be constructed from common idioms woven over a chord progression fabric.

More information

Chapter Five: The Elements of Music

Chapter Five: The Elements of Music Chapter Five: The Elements of Music What Students Should Know and Be Able to Do in the Arts Education Reform, Standards, and the Arts Summary Statement to the National Standards - http://www.menc.org/publication/books/summary.html

More information

EDEXCEL GCSE REVISION PACK INTRODUCTION

EDEXCEL GCSE REVISION PACK INTRODUCTION EDEXCEL GCSE REVISION PACK INTRODUCTION The resources are intended to support Edexcel teachers of Year 11 students in the first year of a mock exam in the new specification. There are 4 revision worksheets

More information

A Case Based Approach to the Generation of Musical Expression

A Case Based Approach to the Generation of Musical Expression A Case Based Approach to the Generation of Musical Expression Taizan Suzuki Takenobu Tokunaga Hozumi Tanaka Department of Computer Science Tokyo Institute of Technology 2-12-1, Oookayama, Meguro, Tokyo

More information

Available online at ScienceDirect. Procedia Computer Science 46 (2015 )

Available online at  ScienceDirect. Procedia Computer Science 46 (2015 ) Available online at www.sciencedirect.com ScienceDirect Procedia Computer Science 46 (2015 ) 381 387 International Conference on Information and Communication Technologies (ICICT 2014) Music Information

More information

How to Read Just Enough Music Notation. to Get by in Pop Music

How to Read Just Enough Music Notation. to Get by in Pop Music Special Report How to Read Just Enough Music Notation page 1 to Get by in Pop Music THE NEW SCHOOL OF AMERICAN MUSIC $5.00 Mastering music notation takes years of tedious study and practice. But that s

More information

Palestrina Pal: A Grammar Checker for Music Compositions in the Style of Palestrina

Palestrina Pal: A Grammar Checker for Music Compositions in the Style of Palestrina Palestrina Pal: A Grammar Checker for Music Compositions in the Style of Palestrina 1. Research Team Project Leader: Undergraduate Students: Prof. Elaine Chew, Industrial Systems Engineering Anna Huang,

More information

ARTIFICIAL INTELLIGENCE AND AESTHETICS

ARTIFICIAL INTELLIGENCE AND AESTHETICS RTIFICIL INTELLIGENCE ND ESTHETICS James Gips and George Stiny Department of Biomathematics System Science Department University of California LOS ngeles, California 90024 Introduction Firschein et al.

More information

Melody Extraction from Generic Audio Clips Thaminda Edirisooriya, Hansohl Kim, Connie Zeng

Melody Extraction from Generic Audio Clips Thaminda Edirisooriya, Hansohl Kim, Connie Zeng Melody Extraction from Generic Audio Clips Thaminda Edirisooriya, Hansohl Kim, Connie Zeng Introduction In this project we were interested in extracting the melody from generic audio files. Due to the

More information

Bach in a Box - Real-Time Harmony

Bach in a Box - Real-Time Harmony Bach in a Box - Real-Time Harmony Randall R. Spangler and Rodney M. Goodman* Computation and Neural Systems California Institute of Technology, 136-93 Pasadena, CA 91125 Jim Hawkinst 88B Milton Grove Stoke

More information

NCEA Level 2 Music (91275) 2012 page 1 of 6. Assessment Schedule 2012 Music: Demonstrate aural understanding through written representation (91275)

NCEA Level 2 Music (91275) 2012 page 1 of 6. Assessment Schedule 2012 Music: Demonstrate aural understanding through written representation (91275) NCEA Level 2 Music (91275) 2012 page 1 of 6 Assessment Schedule 2012 Music: Demonstrate aural understanding through written representation (91275) Evidence Statement Question with Merit with Excellence

More information

Tool-based Identification of Melodic Patterns in MusicXML Documents

Tool-based Identification of Melodic Patterns in MusicXML Documents Tool-based Identification of Melodic Patterns in MusicXML Documents Manuel Burghardt (manuel.burghardt@ur.de), Lukas Lamm (lukas.lamm@stud.uni-regensburg.de), David Lechler (david.lechler@stud.uni-regensburg.de),

More information

Music/Lyrics Composition System Considering User s Image and Music Genre

Music/Lyrics Composition System Considering User s Image and Music Genre Proceedings of the 2009 IEEE International Conference on Systems, Man, and Cybernetics San Antonio, TX, USA - October 2009 Music/Lyrics Composition System Considering User s Image and Music Genre Chisa

More information

Application of a Musical-based Interaction System to the Waseda Flutist Robot WF-4RIV: Development Results and Performance Experiments

Application of a Musical-based Interaction System to the Waseda Flutist Robot WF-4RIV: Development Results and Performance Experiments The Fourth IEEE RAS/EMBS International Conference on Biomedical Robotics and Biomechatronics Roma, Italy. June 24-27, 2012 Application of a Musical-based Interaction System to the Waseda Flutist Robot

More information

Rhythm related MIR tasks

Rhythm related MIR tasks Rhythm related MIR tasks Ajay Srinivasamurthy 1, André Holzapfel 1 1 MTG, Universitat Pompeu Fabra, Barcelona, Spain 10 July, 2012 Srinivasamurthy et al. (UPF) MIR tasks 10 July, 2012 1 / 23 1 Rhythm 2

More information

Keywords Separation of sound, percussive instruments, non-percussive instruments, flexible audio source separation toolbox

Keywords Separation of sound, percussive instruments, non-percussive instruments, flexible audio source separation toolbox Volume 4, Issue 4, April 2014 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Investigation

More information

Curriculum Mapping Piano and Electronic Keyboard (L) Semester class (18 weeks)

Curriculum Mapping Piano and Electronic Keyboard (L) Semester class (18 weeks) Curriculum Mapping Piano and Electronic Keyboard (L) 4204 1-Semester class (18 weeks) Week Week 15 Standar d Skills Resources Vocabulary Assessments Students sing using computer-assisted instruction and

More information

Sample assessment task. Task details. Content description. Task preparation. Year level 9

Sample assessment task. Task details. Content description. Task preparation. Year level 9 Sample assessment task Year level 9 Learning area Subject Title of task Task details Description of task Type of assessment Purpose of assessment Assessment strategy Evidence to be collected Suggested

More information

Building a Better Bach with Markov Chains

Building a Better Bach with Markov Chains Building a Better Bach with Markov Chains CS701 Implementation Project, Timothy Crocker December 18, 2015 1 Abstract For my implementation project, I explored the field of algorithmic music composition

More information

Various Artificial Intelligence Techniques For Automated Melody Generation

Various Artificial Intelligence Techniques For Automated Melody Generation Various Artificial Intelligence Techniques For Automated Melody Generation Nikahat Kazi Computer Engineering Department, Thadomal Shahani Engineering College, Mumbai, India Shalini Bhatia Assistant Professor,

More information

Music Recommendation from Song Sets

Music Recommendation from Song Sets Music Recommendation from Song Sets Beth Logan Cambridge Research Laboratory HP Laboratories Cambridge HPL-2004-148 August 30, 2004* E-mail: Beth.Logan@hp.com music analysis, information retrieval, multimedia

More information

FINE ARTS EARLY ELEMENTARY. LOCAL GOALS/OUTCOMES/OBJECTIVES 2--Indicates Strong Link LINKING ORGANIZER 1--Indicates Moderate Link 0--Indicates No Link

FINE ARTS EARLY ELEMENTARY. LOCAL GOALS/OUTCOMES/OBJECTIVES 2--Indicates Strong Link LINKING ORGANIZER 1--Indicates Moderate Link 0--Indicates No Link FINE ARTS EARLY ELEMENTARY -- KEY 2--Indicates Strong Link LINKING ORGANIZER 1--Indicates Moderate Link 0--Indicates No Link Goal 25: Know the language of the arts. A. Understand the sensory elements,

More information

Music Technology I. Course Overview

Music Technology I. Course Overview Music Technology I This class is open to all students in grades 9-12. This course is designed for students seeking knowledge and experience in music technology. Topics covered include: live sound recording

More information

TEST SUMMARY AND FRAMEWORK TEST SUMMARY

TEST SUMMARY AND FRAMEWORK TEST SUMMARY Washington Educator Skills Tests Endorsements (WEST E) TEST SUMMARY AND FRAMEWORK TEST SUMMARY MUSIC: CHORAL Copyright 2016 by the Washington Professional Educator Standards Board 1 Washington Educator

More information

IndianRaga Certification

IndianRaga Certification IndianRaga Certification Hindustani Instrumental Syllabus: Levels 1 to 4 Level 1 Overview: The aim of this level is for the student to develop a basic sense of Swara (Note) and Taal (Rhythm) so that he/she

More information

A System for Generating Real-Time Visual Meaning for Live Indian Drumming

A System for Generating Real-Time Visual Meaning for Live Indian Drumming A System for Generating Real-Time Visual Meaning for Live Indian Drumming Philip Davidson 1 Ajay Kapur 12 Perry Cook 1 philipd@princeton.edu akapur@princeton.edu prc@princeton.edu Department of Computer

More information

Extracting Significant Patterns from Musical Strings: Some Interesting Problems.

Extracting Significant Patterns from Musical Strings: Some Interesting Problems. Extracting Significant Patterns from Musical Strings: Some Interesting Problems. Emilios Cambouropoulos Austrian Research Institute for Artificial Intelligence Vienna, Austria emilios@ai.univie.ac.at Abstract

More information

Curriculum Catalog

Curriculum Catalog 2017-2018 Curriculum Catalog 2017 Glynlyon, Inc. Table of Contents MUSIC THEORY COURSE OVERVIEW... 1 UNIT 1: RHYTHM AND METER... 1 UNIT 2: NOTATION AND PITCH... 2 UNIT 3: SCALES AND KEY SIGNATURES... 2

More information

Advances in Algorithmic Composition

Advances in Algorithmic Composition ISSN 1000-9825 CODEN RUXUEW E-mail: jos@iscasaccn Journal of Software Vol17 No2 February 2006 pp209 215 http://wwwjosorgcn DOI: 101360/jos170209 Tel/Fax: +86-10-62562563 2006 by Journal of Software All

More information

Music Morph. Have you ever listened to the main theme of a movie? The main theme always has a

Music Morph. Have you ever listened to the main theme of a movie? The main theme always has a Nicholas Waggoner Chris McGilliard Physics 498 Physics of Music May 2, 2005 Music Morph Have you ever listened to the main theme of a movie? The main theme always has a number of parts. Often it contains

More information

OBJECTIVE EVALUATION OF A MELODY EXTRACTOR FOR NORTH INDIAN CLASSICAL VOCAL PERFORMANCES

OBJECTIVE EVALUATION OF A MELODY EXTRACTOR FOR NORTH INDIAN CLASSICAL VOCAL PERFORMANCES OBJECTIVE EVALUATION OF A MELODY EXTRACTOR FOR NORTH INDIAN CLASSICAL VOCAL PERFORMANCES Vishweshwara Rao and Preeti Rao Digital Audio Processing Lab, Electrical Engineering Department, IIT-Bombay, Powai,

More information

Music. Program Level Student Learning Outcomes

Music. Program Level Student Learning Outcomes Music Program Level Student Learning Outcomes After completing coursework to fulfill an AA degree, or to transfer, the student should be able to critique a piece of music based on elements of music, including

More information

Teaching Music International Perspectives Andy Gleadhill. MUSIC EXPO MANCHESTER

Teaching Music International Perspectives Andy Gleadhill. MUSIC EXPO MANCHESTER Teaching Music International Perspectives Andy Gleadhill MUSIC EXPO MANCHESTER 2018 Www.andygleadhill.co.uk GETTING TO KNOW YOU RAP MY NAME IS... I COME FROM... I M IN TO... AN' GETTIN DOWN mm

More information

ILLINOIS LICENSURE TESTING SYSTEM

ILLINOIS LICENSURE TESTING SYSTEM ILLINOIS LICENSURE TESTING SYSTEM FIELD 212: MUSIC January 2017 Effective beginning September 3, 2018 ILLINOIS LICENSURE TESTING SYSTEM FIELD 212: MUSIC January 2017 Subarea Range of Objectives I. Responding:

More information

Constructive Adaptive User Interfaces Composing Music Based on Human Feelings

Constructive Adaptive User Interfaces Composing Music Based on Human Feelings From: AAAI02 Proceedings. Copyright 2002, AAAI (www.aaai.org). All rights reserved. Constructive Adaptive User Interfaces Composing Music Based on Human Feelings Masayuki Numao, Shoichi Takagi, and Keisuke

More information

Chord Classification of an Audio Signal using Artificial Neural Network

Chord Classification of an Audio Signal using Artificial Neural Network Chord Classification of an Audio Signal using Artificial Neural Network Ronesh Shrestha Student, Department of Electrical and Electronic Engineering, Kathmandu University, Dhulikhel, Nepal ---------------------------------------------------------------------***---------------------------------------------------------------------

More information

CONCERT ORCHESTRA AND SYMPHONIC ORCHESTRA

CONCERT ORCHESTRA AND SYMPHONIC ORCHESTRA Curriculum Development In the Fairfield Public Schools FAIRFIELD PUBLIC SCHOOLS FAIRFIELD, CONNECTICUT CONCERT ORCHESTRA AND SYMPHONIC ORCHESTRA Board of Education Approved 04/24/2007 Concert Orchestra

More information