MASC: Automatic Sleep Stage Classification Based on Brain and Myoelectric Signals

Size: px
Start display at page:

Download "MASC: Automatic Sleep Stage Classification Based on Brain and Myoelectric Signals"

Transcription

1 HDMM 2017, April 22nd, 2017 MASC: Automatic Sleep Stage Classification Based on Brain and Myoelectric Signals Yuta Suzuki Makito Sato Hiroaki Shiokawa Masashi Yanagisawa Hiroyuki Kitagawa Graduate School of Systems and Information Engineering, University of Tsukuba International Institute for Integrative Sleep Medicine, University of Tsukuba :Center for Computational Sciences, University of Tsukuba

2 2 Outline 1. Background and Motivation 2. Our proposal: MASC 3. Evaluation 4. Conclusion

3 3 Sleep Stage for Clinical Researches A sleep can generally be spanned into several stages. REM (Rapid Eye Movement) sleep, Non-REM sleep, Wake Sleep staging becomes the base for sleep disorder diagnoses and researches. Sleep disorder patients usually shows abnormal sleep stage transitions. Clinical experts can inspect the effectiveness of mediation by comparing the stages between before and after the mediation.

4 4 Sleep Staging on Mice Clinical experts usually analyze sleep stages on mice so as to clarify the effectiveness mediations for the sleep disorder. Electric signal transition observed from brain EEG (electro-encephalography) EMG (electro-myography) Electric signal transition taken from spinal cord

5 5 Sleep Stages Mice generally take three types of sleep stages: REM, Non-REM, and Wake They have different amplitudes in EEG and EMG signals. EMG EEG

6 6 How do they specify the stages? They visually inspect all signals to specify their stages. Clinical experts span EEG/EMG signals into fixed size of subsequences, called epoch, and classify them. It is generally set to 20 seconds. Of course, it is so time-consuming and needs much labor. EEG EMG An expert needs to spend more than 24 hours to classify EEG/EMG signals whose length is 8 hours. Epoch 1 Epoch 2 Epoch 3 Epoch 4 20 sec. 20 sec. 20 sec. 20 sec. Wake Wake Non-REM Non-REM

7 7 Why do they visually inspect? Clinical researchers require more than 95% accuracy! Existing works: Neural network based method [Yokoyama et al., 1993] Decision tree based method [Hanaoka et al., 2001] LDA + Decision tree [Brankack et al., 2010] Naïve Bayes classifier [Rempe et al., 2015] FASTER [Sunagawa et al., 2013], exfaster [Suzuki et al., 2015] They did not achieve 95% accuracy and still require experts interactions.

8 8 FASTER [Sunagawa et al., 2013] Unsupervised & fully-automated sleep staging method. Observation: epochs in the same sleep stage show similar EEG/EMG spectra. Non-REM Wake REM features extraction classification FASTER achieves the best performance in terms of accuracy, but it does not reach 95% accuracy (it is almost 80~90%)

9 9 Our Goals & Contributions Our goal is to achieve 95% classification accuracy without any experts interactions. We present a supervised classification method MASC for the sleep staging. In this work, we experimentally selects effective features for the sleep staging. Contributions Accurate: MASC shows almost 95% accuracy. Robust: MASC shows better robustness against noises. Automatic: MASC does not require any user interactions.

10 10 Outline 1. Background and Motivation 2. Our proposal: MASC 3. Evaluation 4. Conclusion

11 11 Key Observations Observation 1 : Actual EEG/EMG signals have several transition patterns that appears frequently. However, FASTER fails to capture the temporal features. Observation 2: Some epochs contain multiple stages (ambiguous epoch) FASTER does not care such ambiguous epochs.

12 12 Overview of MASC MASC: a supervised sleep stage classification method MASC is consisted of the following three steps. Temporal features Ambiguous epochs Test data Step 1: Temporal feature construction Step 2: Classification & ambiguous epoch extraction Step 3: Reclassification Results Training data

13 14 1. Temporal feature construction Goal of this step is extract a new feature that captures the temporal sleep stage transitions. To do so, MASC preliminary classify epochs by using the same features as those of FASTER. Preliminary classification Test data Training data Preliminary stages One-vs-Rest SVM Wake temporal features

14 15 How do we build temporal features? MASC builds temporal features from preliminary stages. Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Wake Wake Non-REM Non-REM Non-REM Non-REM Non-REM target epoch Before k epochs Behind k epochs

15 16 Three types of temporal features Epoch 1 Epoch 2 Epoch 3 Epoch 4 Epoch 5 Epoch 6 Epoch 7 Wake Wake Non-REM Non-REM Non-REM Non-REM Non-REM 1. String-based: target epoch String sequence of preliminary stages. {Wake, Wake, Non-REM, Non-REM, Non-REM, Non-REM} 2. Probability-based: Ratio of each sleep stage types in the before/behind k epochs. {Wake-/k, Non-REM-/k, REM-/k, Wake/k, Non-REM/k, REM/k} = {0.67, 0.33, 0, 0, 1, 0} 3. Weighted probability-based: Applying Gaussian-based weight function into Probability-based feature.

16 17 Which feature is the best? Non-REM Accuracy k = 1 k = 2 k = 3 k = 4 k = 5 String-based Probability-based Weighted probabilitybased REM Accuracy k = 1 k = 2 k = 3 k = 4 k = 5 String-based Probability-based Weighted probabilitybased Weighted probability-based feature with k=3 shows wellbalanced & better performance among the sleep stages. But, probability-based with k=3 is the best to classify Non-REM. Also, probability-based with k=1 is the best for REM.

17 18 2. Classification & ambiguous epochs extraction Training data Evaluate confidences & find ambiguous epochs Weighted probabilitybased features (k=3) One-vs-Rest SVM epoch2 REM epoch1 Wake epoch3 Wake High-confidence epochs Ambiguous epochs Non-REM positive negative The others negative Wake The others Non-REM classifier REM REM classifier positive The others positive negative Wake classifier

18 19 How do we find ambiguous epoch? Ambiguous epochs contain multiple types of sleep stages. The epochs should be placed in the positive side of multiple classifier. We evaluate!(#) for each epoch # to detect ambiguous epochs.! # = min ) * ), s.t. ) *, ), ) /, ) 0, ) 1 Non-REM positive The others negative d W Wake negative d N The others Non-REM classifier dr REM REM classifier positive The others positive negative Wake classifier

19 20 What s going on? Frequency Frequency Epochs classified as Non-REM D(e) Epochs classified as Wake Frequency Epochs classified as REM D(e) Ambiguous epochs Correctly classified Misclassified We should re-classify REM epochs where! # D(e)

20 21 3. Re-classification MASC re-classifies ambiguous epochs by using k=5 probability-based features. REM and Non-REM have very similar features. Thus, misclassified REM epochs are most likely to be Non-REM rather than Wake. Recall, REM shows the best accuracy for probability-based features with k=5 than the others. Ambiguous epochs Training data Probabilitybased features (k=5) One-vs-Rest SVM Results

21 22 Outline 1. Background and Motivation 2. Our proposal: MASC 3. Evaluation 4. Conclusion

22 23 Evaluation Settings Competitors MASC FASTER [Sunagawa et al., 2013] exfaster [Suzuki et al., 2015] Datasets: Two types mice provided by IIIS in U. Tsukuba Noiseless Mice (Wild type): Normal mice without any mediations Noisy Mice: Abnormal mice with have sleep disorders Each epoch is labeled by clinical experts # of mice:14 for each type Sampling ratio: 250Hz, Epoch size: 20 sec. Totally, we used 240K epochs

23 24 Example: Noisy Mice

24 25 Evaluation 1: Noiseless Mice Non-REM Sensitivity Non-REM Specificity REM Sensitivity REM Specificity Wake Sensitivity Wake Specificity Accuracy MASC % % % % % % % FASTER % % % % % % % exfaster % % % % % % %

25 26 Evaluation 2: Noisy Mice Non-REM Sensitivity Non-REM Specificity REM Sensitivity REM Specificity Wake Sensitivity Wake Specificity Accuracy MASC % % % % % % % FASTER % % % % % % % exfaster % % % % % % %

26 27 Outline 1. Background and Motivation 2. Our proposal: MASC 3. Evaluation 4. Conclusion

27 28 Conclusion We present a machine learning approach and feature engineering technique, named MASC, for the sleep staging. Contributions Accurate: MASC shows almost 95% accuracy. Robust: MASC shows better robustness against noises. Automatic: MASC does not require any user interactions.

Proceedings 23rd Annual Conference IEEE/EMBS Oct.25-28, 2001, Istanbul, TURKEY

Proceedings 23rd Annual Conference IEEE/EMBS Oct.25-28, 2001, Istanbul, TURKEY AUTOMATED SLEEP STAGE SCORING BY DECISION TREE LEARNING Proceedings 23rd Annual Conference IEEE/EMBS Oct.25-28, 2001, Istanbul, TURKEY Masaaki Hanaoka, Masaki Kobayashi, Haruaki Yamazaki Faculty of Engineering,Yamanashi

More information

FASTER: an unsupervised fully automated sleep staging method for mice

FASTER: an unsupervised fully automated sleep staging method for mice FASTER: an unsupervised fully automated sleep staging method for mice i2, Shigeki Shimba3, Yoshihiro Urade4 and Genshiro A. Sunagawa1, Hiroyoshi Se Hiroki R. Ueda1,5,6,7,8* 1 Laboratory for Systems Biology,

More information

Hyatt Moore IV 1, 2 Steve Woodward 3, PhD Emmanuel Mignot 1, MD, PhD. Electrical Engineering Stanford University, CA 2

Hyatt Moore IV 1, 2 Steve Woodward 3, PhD Emmanuel Mignot 1, MD, PhD. Electrical Engineering Stanford University, CA 2 HIGH RESOLUTION DETECTION OF POLYSOMNOGRAPHY BASED PHASIC EVENTS OF REM SLEEP IN POSTRAUMATIC STRESS DISORDER IMPROVING TOOLS FOR PSG ANALYSIS OF REM SLEEP IN PTSD Hyatt Moore IV 1, 2 Steve Woodward 3,

More information

Automatic Classification of Perceived Gender from Facial Images

Automatic Classification of Perceived Gender from Facial Images Automatic Classification of Perceived Gender from Facial Images Joseph Lemley, Sami Abdul-Wahid, Dipayan Banik Advisor: Dr. Razvan Andonie SOURCE 2016 Outline 1 Introduction 2 Faces - Background 3 Faces

More information

EE 4BD4 Lecture 11. The Brain and EEG

EE 4BD4 Lecture 11. The Brain and EEG EE 4BD4 Lecture 11 The Brain and EEG 1 Brain Wave Recordings Recorded extra-cellularly from scalp (EEG) Recorded from extra-cellularly from surface of cortex (ECOG) Recorded extra-cellularly from deep

More information

Automated System for Detecting Neonatal Brain Injuries

Automated System for Detecting Neonatal Brain Injuries Snapshots of Postgraduate Research at University College Cork 2016 Automated System for Detecting Neonatal Brain Injuries Rehan Ahmed Dept. of Electrical and Electronics Engineering,, UCC The most dangerous

More information

LUNG NODULE SEGMENTATION IN COMPUTED TOMOGRAPHY IMAGE. Hemahashiny, Ketheesan Department of Physical Science, Vavuniya Campus

LUNG NODULE SEGMENTATION IN COMPUTED TOMOGRAPHY IMAGE. Hemahashiny, Ketheesan Department of Physical Science, Vavuniya Campus LUNG NODULE SEGMENTATION IN COMPUTED TOMOGRAPHY IMAGE Hemahashiny, Ketheesan Department of Physical Science, Vavuniya Campus tketheesan@vau.jfn.ac.lk ABSTRACT: The key process to detect the Lung cancer

More information

The AASM Manual for the Scoring of Sleep and Associated Events

The AASM Manual for the Scoring of Sleep and Associated Events The AASM Manual for the Scoring of Sleep and Associated Events Summary of Updates in Version 2.1 July 1, 2014 The American Academy of Sleep Medicine (AASM) is committed to ensuring that The AASM Manual

More information

Detection of Neuromuscular Diseases Using Surface Electromyograms

Detection of Neuromuscular Diseases Using Surface Electromyograms Faculty of Electrical Engineering and Computer Science University of Maribor 1 Department of Computer Science, University of Cyprus 2 The Cyprus Institute of Neurology and Genetics 3 Detection of Neuromuscular

More information

Webinar Q&A Report Noninvasive, Automated Measurement of Sleep, Wake and Breathing in Rodents

Webinar Q&A Report Noninvasive, Automated Measurement of Sleep, Wake and Breathing in Rodents Webinar Q&A Report Noninvasive, Automated Measurement of Sleep, Wake and Breathing in Rodents Q: How does the PiezoSleep system distinguish between inactivity (quiet wake) vs. sleep? B. O Hara: The piezo

More information

Introduction to Computational Neuroscience

Introduction to Computational Neuroscience Introduction to Computational Neuroscience Lecture 5: Data analysis II Lesson Title 1 Introduction 2 Structure and Function of the NS 3 Windows to the Brain 4 Data analysis 5 Data analysis II 6 Single

More information

UNIVERSITY of PENNSYLVANIA CIS 520: Machine Learning Final, Fall 2014

UNIVERSITY of PENNSYLVANIA CIS 520: Machine Learning Final, Fall 2014 UNIVERSITY of PENNSYLVANIA CIS 520: Machine Learning Final, Fall 2014 Exam policy: This exam allows two one-page, two-sided cheat sheets (i.e. 4 sides); No other materials. Time: 2 hours. Be sure to write

More information

Analysis of EEG Signal for the Detection of Brain Abnormalities

Analysis of EEG Signal for the Detection of Brain Abnormalities Analysis of EEG Signal for the Detection of Brain Abnormalities M.Kalaivani PG Scholar Department of Computer Science and Engineering PG National Engineering College Kovilpatti, Tamilnadu V.Kalaivani,

More information

This is a repository copy of Facial Expression Classification Using EEG and Gyroscope Signals.

This is a repository copy of Facial Expression Classification Using EEG and Gyroscope Signals. This is a repository copy of Facial Expression Classification Using EEG and Gyroscope Signals. White Rose Research Online URL for this paper: http://eprints.whiterose.ac.uk/116449/ Version: Accepted Version

More information

Brain Tumour Detection of MR Image Using Naïve Beyer classifier and Support Vector Machine

Brain Tumour Detection of MR Image Using Naïve Beyer classifier and Support Vector Machine International Journal of Scientific Research in Computer Science, Engineering and Information Technology 2018 IJSRCSEIT Volume 3 Issue 3 ISSN : 2456-3307 Brain Tumour Detection of MR Image Using Naïve

More information

Developmental Changes Including Neonatal EEG. Gregory L. Holmes, MD

Developmental Changes Including Neonatal EEG. Gregory L. Holmes, MD Developmental Changes Including Neonatal EEG Gregory L. Holmes, MD A A + B =: B + A.Dravet Syndrome B.Menkes syndrome C.West syndrome D.Ohtahara shyndrome The Difficult Delivery 1 day old male transferred

More information

Sleep Stage Classification: Scalability Evaluations of Distributed Approaches

Sleep Stage Classification: Scalability Evaluations of Distributed Approaches leep tage lassification: calability Evaluations of Distributed Approaches Şerife Açıkalın, üleyman Eken, Ahmet ayar Department of omputer Engineering, Kocaeli University Umuttepe ampus, 41380, Kocaeli,

More information

Sleep Stage Classification: Scalability Evaluations of Distributed Approaches

Sleep Stage Classification: Scalability Evaluations of Distributed Approaches leep tage lassification: calability Evaluations of Distributed Approaches Şerife Açıkalın, üleyman Eken, Ahmet ayar Department of omputer Engineering, Kocaeli University Umuttepe ampus, 41380, Kocaeli,

More information

IJESRT. Scientific Journal Impact Factor: (ISRA), Impact Factor: 1.852

IJESRT. Scientific Journal Impact Factor: (ISRA), Impact Factor: 1.852 IJESRT INTERNATIONAL JOURNAL OF ENGINEERING SCIENCES & RESEARCH TECHNOLOGY Performance Analysis of Brain MRI Using Multiple Method Shroti Paliwal *, Prof. Sanjay Chouhan * Department of Electronics & Communication

More information

Introduction to Computational Neuroscience

Introduction to Computational Neuroscience Introduction to Computational Neuroscience Lecture 10: Brain-Computer Interfaces Ilya Kuzovkin So Far Stimulus So Far So Far Stimulus What are the neuroimaging techniques you know about? Stimulus So Far

More information

Sleep Stage Estimation By Evolutionary Computation Using Heartbeat Data and Body-Movement

Sleep Stage Estimation By Evolutionary Computation Using Heartbeat Data and Body-Movement Sleep Stage Estimation By Evolutionary Computation Using Heartbeat Data and Body-Movement 1 Hiroyasu MAtsushima, 2 Kazuyuki Hirose, 3 Kiyohiko Hattori, 4 Hiroyuki Sato, 5 Keiki Takadama 1-5, First Author

More information

SLEEP STAGING AND AROUSAL. Dr. Tripat Deep Singh (MBBS, MD, RPSGT, RST) International Sleep Specialist (World Sleep Federation program)

SLEEP STAGING AND AROUSAL. Dr. Tripat Deep Singh (MBBS, MD, RPSGT, RST) International Sleep Specialist (World Sleep Federation program) SLEEP STAGING AND AROUSAL Dr. Tripat Deep Singh (MBBS, MD, RPSGT, RST) International Sleep Specialist (World Sleep Federation program) Scoring of Sleep Stages in Adults A. Stages of Sleep Stage W Stage

More information

The impact of numeration on visual attention during a psychophysical task; An ERP study

The impact of numeration on visual attention during a psychophysical task; An ERP study The impact of numeration on visual attention during a psychophysical task; An ERP study Armita Faghani Jadidi, Raheleh Davoodi, Mohammad Hassan Moradi Department of Biomedical Engineering Amirkabir University

More information

SleepSign System. FAQs User List Software Overview

SleepSign System. FAQs User List Software Overview FAQs User List Software Overview SleepSign System SSA100W SleepSign System - Frequently Asked Questions 1. Why should I use SleepSign software? 2. Can SleepSign import digital data generated from my BIOPAC

More information

SUPPLEMENTARY INFORMATION

SUPPLEMENTARY INFORMATION doi: 10.1038/nature06310 SUPPLEMENTARY INFORMATION www.nature.com/nature 1 www.nature.com/nature 2 www.nature.com/nature 3 Supplementary Figure S1 Spontaneous duration of wake, SWS and REM sleep (expressed

More information

Human Brain Institute Russia-Switzerland-USA

Human Brain Institute Russia-Switzerland-USA 1 Human Brain Institute Russia-Switzerland-USA CONTENTS I Personal and clinical data II Conclusion. III Recommendations for therapy IV Report. 1. Procedures of EEG recording and analysis 2. Search for

More information

SPECTRAL-TEMPORAL MODALITY BASED EEG SLEEP STAGING

SPECTRAL-TEMPORAL MODALITY BASED EEG SLEEP STAGING SPECTRAL-TEMPORAL MODALITY BASED EEG SLEEP STAGING A Thesis Presented to The Academic Faculty by Mark McCurry In Partial Fulfillment of the Requirements for the Degree Doctor of Philosophy in the School

More information

Development of 2-Channel Eeg Device And Analysis Of Brain Wave For Depressed Persons

Development of 2-Channel Eeg Device And Analysis Of Brain Wave For Depressed Persons Development of 2-Channel Eeg Device And Analysis Of Brain Wave For Depressed Persons P.Amsaleka*, Dr.S.Mythili ** * PG Scholar, Applied Electronics, Department of Electronics and Communication, PSNA College

More information

This is the accepted version of this article. To be published as : This is the author version published as:

This is the accepted version of this article. To be published as : This is the author version published as: QUT Digital Repository: http://eprints.qut.edu.au/ This is the author version published as: This is the accepted version of this article. To be published as : This is the author version published as: Chew,

More information

Predicting Breast Cancer Survivability Rates

Predicting Breast Cancer Survivability Rates Predicting Breast Cancer Survivability Rates For data collected from Saudi Arabia Registries Ghofran Othoum 1 and Wadee Al-Halabi 2 1 Computer Science, Effat University, Jeddah, Saudi Arabia 2 Computer

More information

Bayesian Models for Combining Data Across Subjects and Studies in Predictive fmri Data Analysis

Bayesian Models for Combining Data Across Subjects and Studies in Predictive fmri Data Analysis Bayesian Models for Combining Data Across Subjects and Studies in Predictive fmri Data Analysis Thesis Proposal Indrayana Rustandi April 3, 2007 Outline Motivation and Thesis Preliminary results: Hierarchical

More information

EMOTION CLASSIFICATION: HOW DOES AN AUTOMATED SYSTEM COMPARE TO NAÏVE HUMAN CODERS?

EMOTION CLASSIFICATION: HOW DOES AN AUTOMATED SYSTEM COMPARE TO NAÏVE HUMAN CODERS? EMOTION CLASSIFICATION: HOW DOES AN AUTOMATED SYSTEM COMPARE TO NAÏVE HUMAN CODERS? Sefik Emre Eskimez, Kenneth Imade, Na Yang, Melissa Sturge- Apple, Zhiyao Duan, Wendi Heinzelman University of Rochester,

More information

Event Related Potentials: Significant Lobe Areas and Wave Forms for Picture Visual Stimulus

Event Related Potentials: Significant Lobe Areas and Wave Forms for Picture Visual Stimulus Available Online at www.ijcsmc.com International Journal of Computer Science and Mobile Computing A Monthly Journal of Computer Science and Information Technology ISSN 2320 088X IMPACT FACTOR: 6.017 IJCSMC,

More information

Outlining a simple and robust method for the automatic detection of EEG arousals

Outlining a simple and robust method for the automatic detection of EEG arousals Outlining a simple and robust method for the automatic detection of EEG arousals Isaac Ferna ndez-varela1, Diego A lvarez-este vez2, Elena Herna ndez-pereira1 and Vicente Moret-Bonillo1 1- Universidade

More information

Recognition of Sleep Dependent Memory Consolidation with Multi-modal Sensor Data

Recognition of Sleep Dependent Memory Consolidation with Multi-modal Sensor Data Recognition of Sleep Dependent Memory Consolidation with Multi-modal Sensor Data The MIT Faculty has made this article openly available. Please share how this access benefits you. Your story matters. Citation

More information

EEG Features in Mental Tasks Recognition and Neurofeedback

EEG Features in Mental Tasks Recognition and Neurofeedback EEG Features in Mental Tasks Recognition and Neurofeedback Ph.D. Candidate: Wang Qiang Supervisor: Asst. Prof. Olga Sourina Co-Supervisor: Assoc. Prof. Vladimir V. Kulish Division of Information Engineering

More information

Seizure Prediction Through Clustering and Temporal Analysis of Micro Electrocorticographic Data

Seizure Prediction Through Clustering and Temporal Analysis of Micro Electrocorticographic Data Seizure Prediction Through Clustering and Temporal Analysis of Micro Electrocorticographic Data Yilin Song 1, Jonathan Viventi 2, and Yao Wang 1 1 Department of Electrical and Computer Engineering, New

More information

International Journal of Engineering Science Invention Research & Development; Vol. III, Issue X, April e-issn:

International Journal of Engineering Science Invention Research & Development; Vol. III, Issue X, April e-issn: BRAIN COMPUTER INTERFACING FOR CONTROLLING HOME APPLIANCES ShubhamMankar, Sandeep Shriname, ChetanAtkare, Anjali R,Askhedkar BE Student, Asst.Professor Department of Electronics and Telecommunication,MITCOE,India

More information

EXPERIMENTAL-COMPUTATIONAL ANALYSIS OF VIGILANCE DYNAMICS FOR APPLICATIONS IN SLEEP AND EPILEPSY

EXPERIMENTAL-COMPUTATIONAL ANALYSIS OF VIGILANCE DYNAMICS FOR APPLICATIONS IN SLEEP AND EPILEPSY University of Kentucky UKnowledge Theses and Dissertations--Biomedical Engineering Biomedical Engineering 2015 EXPERIMENTAL-COMPUTATIONAL ANALYSIS OF VIGILANCE DYNAMICS FOR APPLICATIONS IN SLEEP AND EPILEPSY

More information

Processed by HBI: Russia/Switzerland/USA

Processed by HBI: Russia/Switzerland/USA 1 CONTENTS I Personal and clinical data II Conclusion. III Recommendations for therapy IV Report. 1. Procedures of EEG recording and analysis 2. Search for paroxysms 3. Eyes Open background EEG rhythms

More information

On the Use of Brainprints as Passwords

On the Use of Brainprints as Passwords 9/24/2015 2015 Global Identity Summit (GIS) 1 On the Use of Brainprints as Passwords Zhanpeng Jin Department of Electrical and Computer Engineering Department of Biomedical Engineering Binghamton University,

More information

SPPS: STACHOSTIC PREDICTION PATTERN CLASSIFICATION SET BASED MINING TECHNIQUES FOR ECG SIGNAL ANALYSIS

SPPS: STACHOSTIC PREDICTION PATTERN CLASSIFICATION SET BASED MINING TECHNIQUES FOR ECG SIGNAL ANALYSIS www.iioab.org www.iioab.webs.com ISSN: 0976-3104 SPECIAL ISSUE: Emerging Technologies in Networking and Security (ETNS) ARTICLE OPEN ACCESS SPPS: STACHOSTIC PREDICTION PATTERN CLASSIFICATION SET BASED

More information

A micropower support vector machine based seizure detection architecture for embedded medical devices

A micropower support vector machine based seizure detection architecture for embedded medical devices A micropower support vector machine based seizure detection architecture for embedded medical devices The MIT Faculty has made this article openly available. Please share how this access benefits you.

More information

Introduction to Machine Learning. Katherine Heller Deep Learning Summer School 2018

Introduction to Machine Learning. Katherine Heller Deep Learning Summer School 2018 Introduction to Machine Learning Katherine Heller Deep Learning Summer School 2018 Outline Kinds of machine learning Linear regression Regularization Bayesian methods Logistic Regression Why we do this

More information

Improved Intelligent Classification Technique Based On Support Vector Machines

Improved Intelligent Classification Technique Based On Support Vector Machines Improved Intelligent Classification Technique Based On Support Vector Machines V.Vani Asst.Professor,Department of Computer Science,JJ College of Arts and Science,Pudukkottai. Abstract:An abnormal growth

More information

EEG Signal Description with Spectral-Envelope- Based Speech Recognition Features for Detection of Neonatal Seizures

EEG Signal Description with Spectral-Envelope- Based Speech Recognition Features for Detection of Neonatal Seizures EEG Signal Description with Spectral-Envelope- Based Speech Recognition Features for Detection of Neonatal Seizures Temko A., Nadeu C., Marnane W., Boylan G., Lightbody G. presented by Ladislav Rampasek

More information

EECS 433 Statistical Pattern Recognition

EECS 433 Statistical Pattern Recognition EECS 433 Statistical Pattern Recognition Ying Wu Electrical Engineering and Computer Science Northwestern University Evanston, IL 60208 http://www.eecs.northwestern.edu/~yingwu 1 / 19 Outline What is Pattern

More information

PREDICTION OF BREAST CANCER USING STACKING ENSEMBLE APPROACH

PREDICTION OF BREAST CANCER USING STACKING ENSEMBLE APPROACH PREDICTION OF BREAST CANCER USING STACKING ENSEMBLE APPROACH 1 VALLURI RISHIKA, M.TECH COMPUTER SCENCE AND SYSTEMS ENGINEERING, ANDHRA UNIVERSITY 2 A. MARY SOWJANYA, Assistant Professor COMPUTER SCENCE

More information

Selection of Feature for Epilepsy Seizer Detection Using EEG

Selection of Feature for Epilepsy Seizer Detection Using EEG International Journal of Neurosurgery 2018; 2(1): 1-7 http://www.sciencepublishinggroup.com/j/ijn doi: 10.11648/j.ijn.20180201.11 Selection of Feature for Epilepsy Seizer Detection Using EEG Manisha Chandani

More information

Sleep Staging with Deep Learning: A convolutional model

Sleep Staging with Deep Learning: A convolutional model Sleep Staging with Deep Learning: A convolutional model Isaac Ferna ndez-varela1, Dimitrios Athanasakis2, Samuel Parsons3 Elena Herna ndez-pereira1, and Vicente Moret-Bonillo1 1- Universidade da Corun

More information

NORAH Sleep Study External Comment Mathias Basner, MD, PhD, MSc

NORAH Sleep Study External Comment Mathias Basner, MD, PhD, MSc NORAH Sleep Study External Comment Mathias Basner, MD, PhD, MSc University of Pennsylvania Perelman School of Medicine Page 1 > Mathias Basner Disclaimer The University of Pennsylvania and the German Aerospace

More information

MUSIC is important for people because it pleasure

MUSIC is important for people because it pleasure , March 18-20, 2015, Hong Kong Music Recommender System Using a Forehead-mounted Electrical Potential Monitoring Device to Classify Mental States Sungri Chong, Ryosuke Yamanishi, Yasuhiro Tsubo, Haruo

More information

Automated Medical Diagnosis using K-Nearest Neighbor Classification

Automated Medical Diagnosis using K-Nearest Neighbor Classification (IMPACT FACTOR 5.96) Automated Medical Diagnosis using K-Nearest Neighbor Classification Zaheerabbas Punjani 1, B.E Student, TCET Mumbai, Maharashtra, India Ankush Deora 2, B.E Student, TCET Mumbai, Maharashtra,

More information

Classification of EEG signals in an Object Recognition task

Classification of EEG signals in an Object Recognition task Classification of EEG signals in an Object Recognition task Iacob D. Rus, Paul Marc, Mihaela Dinsoreanu, Rodica Potolea Technical University of Cluj-Napoca Cluj-Napoca, Romania 1 rus_iacob23@yahoo.com,

More information

ON-LINE REPOSITORY MATERIAL DIFFERENCES IN SLEEP-INDUCED HYPOXIA BETWEEN A/J AND DBA/2J MOUSE STRAINS

ON-LINE REPOSITORY MATERIAL DIFFERENCES IN SLEEP-INDUCED HYPOXIA BETWEEN A/J AND DBA/2J MOUSE STRAINS 37 ON-LINE REPOSITORY MATERIAL DIFFERENCES IN SLEEP-INDUCED HYPOXIA BETWEEN A/J AND DBA/2J MOUSE STRAINS Arnon E. Rubin, Vsevolod Y. Polotsky, Alex Balbir, Jerry A. Krishnan, Alan R. Schwartz, Philip L.

More information

Rumor Detection on Twitter with Tree-structured Recursive Neural Networks

Rumor Detection on Twitter with Tree-structured Recursive Neural Networks 1 Rumor Detection on Twitter with Tree-structured Recursive Neural Networks Jing Ma 1, Wei Gao 2, Kam-Fai Wong 1,3 1 The Chinese University of Hong Kong 2 Victoria University of Wellington, New Zealand

More information

Applying Data Mining for Epileptic Seizure Detection

Applying Data Mining for Epileptic Seizure Detection Applying Data Mining for Epileptic Seizure Detection Ying-Fang Lai 1 and Hsiu-Sen Chiang 2* 1 Department of Industrial Education, National Taiwan Normal University 162, Heping East Road Sec 1, Taipei,

More information

Hippocampal mechanisms of memory and cognition. Matthew Wilson Departments of Brain and Cognitive Sciences and Biology MIT

Hippocampal mechanisms of memory and cognition. Matthew Wilson Departments of Brain and Cognitive Sciences and Biology MIT Hippocampal mechanisms of memory and cognition Matthew Wilson Departments of Brain and Cognitive Sciences and Biology MIT 1 Courtesy of Elsevier, Inc., http://www.sciencedirect.com. Used with permission.

More information

Cardiac Arrest Prediction to Prevent Code Blue Situation

Cardiac Arrest Prediction to Prevent Code Blue Situation Cardiac Arrest Prediction to Prevent Code Blue Situation Mrs. Vidya Zope 1, Anuj Chanchlani 2, Hitesh Vaswani 3, Shubham Gaikwad 4, Kamal Teckchandani 5 1Assistant Professor, Department of Computer Engineering,

More information

Emotion Detection Using Physiological Signals. M.A.Sc. Thesis Proposal Haiyan Xu Supervisor: Prof. K.N. Plataniotis

Emotion Detection Using Physiological Signals. M.A.Sc. Thesis Proposal Haiyan Xu Supervisor: Prof. K.N. Plataniotis Emotion Detection Using Physiological Signals M.A.Sc. Thesis Proposal Haiyan Xu Supervisor: Prof. K.N. Plataniotis May 10 th, 2011 Outline Emotion Detection Overview EEG for Emotion Detection Previous

More information

Algorithms in Nature. Pruning in neural networks

Algorithms in Nature. Pruning in neural networks Algorithms in Nature Pruning in neural networks Neural network development 1. Efficient signal propagation [e.g. information processing & integration] 2. Robust to noise and failures [e.g. cell or synapse

More information

P-PPMI NY may RBD

P-PPMI NY may RBD P-PPMI NY may 6.-7.2014 RBD G. Mayer, M. Bitterlich, C. Doerr Schwalmstadt, Marburg University W. Oertel, Marburg University K. Kesper, Marburg University G. Antony, Parkinson Kompetenznetz KNP, Marburg

More information

arxiv: v1 [cs.lg] 6 Oct 2016

arxiv: v1 [cs.lg] 6 Oct 2016 Combining Generative and Discriminative Neural Networks for Sleep Stages Classification Endang Purnama Giri 1,2, Mohamad Ivan Fanany 1, Aniati Murni Arymurthy 1, arxiv:1610.01741v1 [cs.lg] 6 Oct 2016 1

More information

Automatic Sleep Stages Detection Based on EEG Signals Using Combination of Classifiers

Automatic Sleep Stages Detection Based on EEG Signals Using Combination of Classifiers http://jecei.srttu.edu Journal of Electrical and Computer Engineering Innovations SRTTU JECEI, Vol. 1, No. 2, 2013 Regular Paper Automatic Sleep Stages Detection Based on EEG Signals Using Combination

More information

ABSTRACT 1. INTRODUCTION 2. ARTIFACT REJECTION ON RAW DATA

ABSTRACT 1. INTRODUCTION 2. ARTIFACT REJECTION ON RAW DATA AUTOMATIC ARTIFACT REJECTION FOR EEG DATA USING HIGH-ORDER STATISTICS AND INDEPENDENT COMPONENT ANALYSIS A. Delorme, S. Makeig, T. Sejnowski CNL, Salk Institute 11 N. Torrey Pines Road La Jolla, CA 917,

More information

Gene Selection for Tumor Classification Using Microarray Gene Expression Data

Gene Selection for Tumor Classification Using Microarray Gene Expression Data Gene Selection for Tumor Classification Using Microarray Gene Expression Data K. Yendrapalli, R. Basnet, S. Mukkamala, A. H. Sung Department of Computer Science New Mexico Institute of Mining and Technology

More information

A Brain Computer Interface System For Auto Piloting Wheelchair

A Brain Computer Interface System For Auto Piloting Wheelchair A Brain Computer Interface System For Auto Piloting Wheelchair Reshmi G, N. Kumaravel & M. Sasikala Centre for Medical Electronics, Dept. of Electronics and Communication Engineering, College of Engineering,

More information

Sleep Spindle Detection Based on Complex Demodulation Jia-bin LI, Bei WANG* and Yu ZHANG

Sleep Spindle Detection Based on Complex Demodulation Jia-bin LI, Bei WANG* and Yu ZHANG International Conference on Biomedical and Biological Engineering (BBE 216) Sleep Spindle Detection Based on Complex Demodulation Jia-bin LI, Bei WANG* and Yu ZHANG Department of Automation, School of

More information

Noise-Robust Speech Recognition Technologies in Mobile Environments

Noise-Robust Speech Recognition Technologies in Mobile Environments Noise-Robust Speech Recognition echnologies in Mobile Environments Mobile environments are highly influenced by ambient noise, which may cause a significant deterioration of speech recognition performance.

More information

MR Image classification using adaboost for brain tumor type

MR Image classification using adaboost for brain tumor type 2017 IEEE 7th International Advance Computing Conference (IACC) MR Image classification using adaboost for brain tumor type Astina Minz Department of CSE MATS College of Engineering & Technology Raipur

More information

Error Detection based on neural signals

Error Detection based on neural signals Error Detection based on neural signals Nir Even- Chen and Igor Berman, Electrical Engineering, Stanford Introduction Brain computer interface (BCI) is a direct communication pathway between the brain

More information

Infants, auditory steady-state responses (ASSRs), and clinical practice

Infants, auditory steady-state responses (ASSRs), and clinical practice Infants, auditory steady-state responses (ASSRs), and clinical practice Susan Small, PhD University of British Columba Hamber Professor of Clinical Audiology Phonak 2016, Atlanta, GA October 2-5, 2016

More information

Epileptic Seizure Classification of EEG Image Using ANN

Epileptic Seizure Classification of EEG Image Using ANN Epileptic Seizure Classification of EEG Image Using ANN Prof. (Dr.) M.K. Bhaskar Professor, Electrical Engg. Department M.B.M. Engg. College, Jodhpur, Raj, India Prof. Surendra. Bohra Professor, ECE Department

More information

ARMA Modelling of Sleep Spindles

ARMA Modelling of Sleep Spindles ARMA Modelling of Sleep Spindles João Caldas da Costa, Manuel Duarte Ortigueira 2, and Arnaldo Batista 2 Department of Systems and Informatics, EST, IPS, Setubal, Portugal 2 UNINOVA and Department of Electrical

More information

USING AUDITORY SALIENCY TO UNDERSTAND COMPLEX AUDITORY SCENES

USING AUDITORY SALIENCY TO UNDERSTAND COMPLEX AUDITORY SCENES USING AUDITORY SALIENCY TO UNDERSTAND COMPLEX AUDITORY SCENES Varinthira Duangudom and David V Anderson School of Electrical and Computer Engineering, Georgia Institute of Technology Atlanta, GA 30332

More information

North Asian International Research Journal of Sciences, Engineering & I.T.

North Asian International Research Journal of Sciences, Engineering & I.T. North Asian International Research Journal of Sciences, Engineering & I.T. IRJIF. I.F. : 3.821 Index Copernicus Value: 52.88 ISSN: 2454-7514 Vol. 5, Issue-3 March -2019 Thomson Reuters ID: S-8304-2016

More information

Robust Neural Encoding of Speech in Human Auditory Cortex

Robust Neural Encoding of Speech in Human Auditory Cortex Robust Neural Encoding of Speech in Human Auditory Cortex Nai Ding, Jonathan Z. Simon Electrical Engineering / Biology University of Maryland, College Park Auditory Processing in Natural Scenes How is

More information

MACHINE LEARNING ANALYSIS OF PERIPHERAL PHYSIOLOGY FOR EMOTION DETECTION

MACHINE LEARNING ANALYSIS OF PERIPHERAL PHYSIOLOGY FOR EMOTION DETECTION MACHINE LEARNING ANALYSIS OF PERIPHERAL PHYSIOLOGY FOR EMOTION DETECTION A Thesis Presented by Sarah M Brown to The Department of Electrical and Computer Engineering in partial fulfillment of the requirements

More information

Automatic Sleep Arousal Detection based on C-ELM

Automatic Sleep Arousal Detection based on C-ELM Automatic Sleep Arousal Detection based on C-ELM Yuemeng Liang, Cyril Leung, Chunyan Miao, Qiong Wu and Martin J. McKeown Department of Electrical and Computer Engineering The University of British Columbia

More information

Epilepsy is the fourth most common neurological disorder

Epilepsy is the fourth most common neurological disorder High Performance EEG Feature Extraction for Fast Epileptic Seizure Detection Ramy Hussein, Mohamed Elgendi, Rabab Ward and Amr Mohamed Electrical and Computer Engineering Department, University of British

More information

A Novel Capsule Neural Network Based Model For Drowsiness Detection Using Electroencephalography Signals

A Novel Capsule Neural Network Based Model For Drowsiness Detection Using Electroencephalography Signals A Novel Capsule Neural Network Based Model For Drowsiness Detection Using Electroencephalography Signals Luis Guarda Bräuning (1) Nicolas Astorga (1) Enrique López Droguett (1) Marcio Moura (2) Marcelo

More information

IJISET - International Journal of Innovative Science, Engineering & Technology, Vol. 3 Issue 2, February

IJISET - International Journal of Innovative Science, Engineering & Technology, Vol. 3 Issue 2, February P P 1 IJISET - International Journal of Innovative Science, Engineering & Technology, Vol. 3 Issue 2, February 2016. Study of Classification Algorithm for Lung Cancer Prediction Dr.T.ChristopherP P, J.Jamera

More information

Empirical Mode Decomposition based Feature Extraction Method for the Classification of EEG Signal

Empirical Mode Decomposition based Feature Extraction Method for the Classification of EEG Signal Empirical Mode Decomposition based Feature Extraction Method for the Classification of EEG Signal Anant kulkarni MTech Communication Engineering Vellore Institute of Technology Chennai, India anant8778@gmail.com

More information

Automatic Detection of a Phases for CAP Classification

Automatic Detection of a Phases for CAP Classification Fabio Mendonça 1,2, Ana Fred 3, Sheikh Shanawaz Mostafa 1,2, Fernando Morgado-Dias 1,4 and Antonio G. Ravelo-García 5 1 Madeira Interactive Technologies Institute, Caminho da Penteada, Funchal, Portugal

More information

Non-contact Screening System with Two Microwave Radars in the Diagnosis of Sleep Apnea-Hypopnea Syndrome

Non-contact Screening System with Two Microwave Radars in the Diagnosis of Sleep Apnea-Hypopnea Syndrome Medinfo2013 Decision Support Systems and Technologies - II Non-contact Screening System with Two Microwave Radars in the Diagnosis of Sleep Apnea-Hypopnea Syndrome 21 August 2013 M. Kagawa 1, K. Ueki 1,

More information

Brain Computer Interface. Mina Mikhail

Brain Computer Interface. Mina Mikhail Brain Computer Interface Mina Mikhail minamohebn@gmail.com Introduction Ways for controlling computers Keyboard Mouse Voice Gestures Ways for communicating with people Talking Writing Gestures Problem

More information

Advanced Sleep Management System

Advanced Sleep Management System Initial Project and Group Identification Document September 11, 2012 Advanced Sleep Management System A system to monitor and aid the quality of sleep. Department of Electrical Engineering & Computer Science

More information

Towards Glaucoma Detection Using Intraocular Pressure Monitoring

Towards Glaucoma Detection Using Intraocular Pressure Monitoring International Conference of Soft Computing and Pattern Recognition Towards Glaucoma Detection Using Intraocular Pressure Monitoring Christophe Gisler, Antonio Ridi, Milène Fauquex, Dominique Genoud and

More information

LEARNING MANUAL OF PSG CHART

LEARNING MANUAL OF PSG CHART LEARNING MANUAL OF PSG CHART POLYSOMNOGRAM, SLEEP STAGE SCORING, INTERPRETATION Sleep Computing Committee, Japanese Society of Sleep Research LEARNING MANUAL OF PSG CHART POLYSOMNOGRAM, SLEEP STAGE SCORING,

More information

Evaluating Classifiers for Disease Gene Discovery

Evaluating Classifiers for Disease Gene Discovery Evaluating Classifiers for Disease Gene Discovery Kino Coursey Lon Turnbull khc0021@unt.edu lt0013@unt.edu Abstract Identification of genes involved in human hereditary disease is an important bioinfomatics

More information

THE EFFECT OF WHOLE-BODY VIBRATION ON HUMAN PERFORMANCE AND PHYSIOLOGICAL FUNCTIONS

THE EFFECT OF WHOLE-BODY VIBRATION ON HUMAN PERFORMANCE AND PHYSIOLOGICAL FUNCTIONS Industrial Health, 1977, 15, 13. THE EFFECT OF WHOLE-BODY VIBRATION ON HUMAN PERFORMANCE AND PHYSIOLOGICAL FUNCTIONS PART 1. EXPERIMENTAL STUDY OF THE EFFECT OF VERTICAL VIBRATION ON HUMAN SLEEP Kazuhide

More information

Combination of Bone-Conducted Speech with Air-Conducted Speech Changing Cut-Off Frequency

Combination of Bone-Conducted Speech with Air-Conducted Speech Changing Cut-Off Frequency Combination of Bone-Conducted Speech with Air-Conducted Speech Changing Cut-Off Frequency Tetsuya Shimamura and Fumiya Kato Graduate School of Science and Engineering Saitama University 255 Shimo-Okubo,

More information

Supplemental Information. Night Watch in One Brain Hemisphere during Sleep. Associated with the First-Night Effect in Humans

Supplemental Information. Night Watch in One Brain Hemisphere during Sleep. Associated with the First-Night Effect in Humans Current Biology, Volume 26 Supplemental Information Night Watch in One Brain Hemisphere during Sleep Associated with the First-Night Effect in Humans Masako Tamaki, Ji Won Bang, Takeo Watanabe, and Yuka

More information

EEG Signal for Diagnosing Diseases using Machine Learning

EEG Signal for Diagnosing Diseases using Machine Learning 2017 IJSRSET Volume 3 Issue 7 Print ISSN: 2395-1990 Online ISSN : 2394-4099 Themed Section:Engineering and Technology National Level Technical Conference on Advanced Computing Technologies- n'cact'17,

More information

The Open Access Institutional Repository at Robert Gordon University

The Open Access Institutional Repository at Robert Gordon University OpenAIR@RGU The Open Access Institutional Repository at Robert Gordon University http://openair.rgu.ac.uk This is an author produced version of a paper published in Intelligent Data Engineering and Automated

More information

Seizure Prediction and Detection

Seizure Prediction and Detection Seizure Prediction and Detection Tay Netoff Yun-Sang Park Michael Brown Lan Luo University of Minnesota Minneapolis, MN Feb. 9, 2011 Outline Seizure prediction using spectral power features and SVMclassification

More information

HST 583 fmri DATA ANALYSIS AND ACQUISITION

HST 583 fmri DATA ANALYSIS AND ACQUISITION HST 583 fmri DATA ANALYSIS AND ACQUISITION Neural Signal Processing for Functional Neuroimaging Neuroscience Statistics Research Laboratory Massachusetts General Hospital Harvard Medical School/MIT Division

More information

Human Activities: Handling Uncertainties Using Fuzzy Time Intervals

Human Activities: Handling Uncertainties Using Fuzzy Time Intervals The 19th International Conference on Pattern Recognition (ICPR), Tampa, FL, 2009 Human Activities: Handling Uncertainties Using Fuzzy Time Intervals M. S. Ryoo 1,2 and J. K. Aggarwal 1 1 Computer & Vision

More information