SlideShare una empresa de Scribd logo
1 de 67
Descargar para leer sin conexión
How to perform MEG group analysis with MNE
MNE software for processing MEG and EEG data, A. Gramfort, M. Luessi, E. Larson, D.
Engemann, D. Strohmeier, C. Brodbeck, L. Parkkonen, M. Hämäläinen, Neuroimage, 2014
MEG and EEG data analysis with MNE-Python,A. Gramfort, M. Luessi, E. Larson, D. Engemann,
D. Strohmeier, C. Brodbeck, R. Goj, M. Jas,T. Brooks, L. Parkkonen, M. Hämäläinen, Frontiers in
Neuroscience, 2013
Biomag 2016
http://www.biomag2016.org/satellite_meetings2.php
http://martinos.org/mne
• MNE based on C code developed for ~15 years by MSH
• MNE-Python started ~6 years ago at MGH, Boston
About the project
Source: https://www.ohloh.net/p/MNE
http://martinos.org/mne/
http://mne-tools.github.io/mne-biomag-group-demo/
People behind this work
@agramfort @dengemann
@jasmainak
http://martinos.org/mne/stable/whats_new.html
@jaeilepp
@Eric89GXL
(Some) MNE People
@agramfort @mluessi @dengemann
@lauriparkkonen
@Eric89GXL
@mshamalainen
@t3on
@joewalter
@jasmainak
@rgoj
@chris=anmbrodbeck
@jaeilepp
@adykstra @leggi@a
@kazemakase
@TalLinzen
@OlafHauk @	jdammers
http://martinos.org/mne/stable/whats_new.html
@kingjr
MNE People
https://github.com/mne-tools/mne-python/graphs/contributors
Alan Leggitt, Alexander Rudiuk, Alexandre Barachant, Alexandre Gramfort,
Andrew Dykstra, Asish Panda, Basile Pinsard, Brad Buran, Camilo Lamus, Cathy
Nangini, Chris Holdgraf, Christian Brodbeck, Christoph Dinh, Christopher J. Bailey,
Christopher Mullins, Clemens Brunner, Clément Moutard, Dan G. Wakeman,
Daniel McCloy, Daniel Strohmeier, Denis A. Engemann, Emanuele Olivetti, Emily
Ruzich, Emily Stephen, Eric Larson, Fede Raimondo, Federico Raimondo, Félix
Raimundo, Guillaume Dumas, Hafeza Anevar, Hari Bharadwaj, Ingoo Lee, Jaakko
Leppakangas, Jair Montoya, Jean-Remi King, Johannes Niediek, Jona Sassenhagen,
Jussi Nurminen, Kambiz Tavabi, Keith Doelling, Lorenzo De Santis, Louis Thibault,
Luke Bloy, Mads Jensen, Mainak Jas, Manfred Kitzbichler, Manoj Kumar, Marian
Dovgialo, Marijn van Vliet, Mark Wronkiewicz, Marmaduke Woodman, Martin
Billinger, Martin Luessi, Matt Tucker, Matti Hamalainen, Michael Krause, Mikolaj
Magnuski, Natalie Klein, Nick Foti, Nick Ward, Niklas Wilming, Olaf Hauk, Phillip
Alday, Praveen Sripad, Richard Höchenberger, Roan LaPlante, Romain Trachel,
Roman Goj, Ross Maddox, Sagun Pai, Saket Choudhary, Simon Kornblith, Simon-
Shlomo Poil, Sourav Singh, Tal Linzen, Tanay, Teon Brooks, Tom Dupré la Tour,
Yaroslav Halchenko,Yousra Bekhti, Ellen Lau, Mads Jensen !
https://github.com/mne-tools/mne-biomag-group-demo/
Get the codeto replicate
http://mne-tools.github.io/mne-biomag-group-demo/auto_scripts/index.html
Analysis Scripts
One script
.../mne-biomag-group-demo/tree/master/scripts/processing
Fetch data from OpenfMRI
Sensor space analysis
Source space analysis
Anatomical pipeline
http://mne-tools.github.io/mne-biomag-group-demo/auto_examples/index.html
Results atgroup level
http://mne-tools.github.io/mne-biomag-group-demo/auto_examples/index.html
Demos
and results for each
subject
Installing MNE-Python
$ pip install --upgrade --user mne
Install Scientific Python environment, e.g.,Anaconda at
http://martinos.org/mne/stable/install_mne_python.html
https://www.continuum.io/downloads
Install MNE-Python:
.../mne-biomag-group-demo/tree/master/scripts/processing
Fetch data from OpenfMRI
Sensor space analysis
Source space analysis
Anatomical pipeline
Built on top of FreeSurfer
$ recon-all -s ${SUBJECT} -i xy000000.nii -all
http://surfer.nmr.mgh.harvard.edu/
Anatomy workflow
MRI data
MRI data reconstructed
recon-all (Freesurfer 5.1)
BEM mesh
mne watershed_bem
or mne flash_bem
BEM model
MEG/EEG data
Forward solution
or gain matrix
not automatic
needs freesurfer
Coregistration
mne_analyze/mrilab/Python
BEM meshes
http://martinos.org/mne/stable/auto_tutorials/plot_forward.html
BEM meshes
>>> for subject_id in range(1, 20):
>>> subject = "sub%03d" % subject_id
>>> mne.bem.make_watershed_bem(subject,
>>> subjects_dir=subjects_dir,
>>> overwrite=True)
http://mne-tools.github.io/mne-biomag-group-demo/auto_scripts/11-make_watershed.html
Preprocessing: From raw to ERP/ERF
drifts blinks
line
noise
cardiac
10 seconds filtered data clean data using SSPs
Preprocessing
to get clean
evoked data
(ERF/ERP)
or ICA
Maxwell filtering
http://mne-tools.github.io/mne-biomag-group-demo/auto_examples/plot_maxfilter.html
MNE implements
maxfilter (TM)
Maxwell filtering
http://mne-tools.github.io/mne-biomag-group-demo/auto_examples/plot_maxfilter.html
MNE implements
maxfilter (TM)
Maxwell filtering
http://mne-tools.github.io/mne-biomag-group-demo/auto_examples/plot_maxfilter.html
MNE implements
maxfilter (TM)
.../mne-biomag-group-demo/tree/master/scripts/processing
Fetch data from OpenfMRI
Sensor space analysis
Source space analysis
Filtering
http://mne-tools.github.io/mne-biomag-group-demo/auto_examples/plot_analysis_1.html
Filtering
http://mne-tools.github.io/mne-biomag-group-demo/auto_examples/plot_analysis_1.html
Code for filtering
>>> for subject_id in range(1, 20):
>>> subject = "sub%03d" % subject_id
>>> for run in range(1, 7):
>>> raw_in = ...
>>> raw = mne.io.read_raw_fif(raw_in, preload=True, add_eeg_ref=False)
>>> raw.filter(1, 40, l_trans_bandwidth=0.5, h_trans_bandwidth='auto',
>>> filter_length='auto', phase='zero', fir_window='hann')
http://mne-tools.github.io/mne-biomag-group-demo/auto_scripts/02-python_filtering.html
Filter design
http://martinos.org/mne/stable/auto_tutorials/plot_background_filtering.html
Filter design
High pass filtering removes slow drifts and can make
baselining unnecessary… yet the story is not that simple
http://martinos.org/mne/stable/auto_tutorials/plot_background_filtering.html
Paradigm
Presentation Screen
Famous
Unfamiliar
Scrambled
Paradigm on trigger channel
>>> mask = 4096 + 256 # mask for excluding high order bits
>>> events = mne.find_events(raw, stim_channel='STI101',
>>> consecutive='increasing', mask=mask,
>>> mask_type='not_and', min_duration=0.003)
>>> fig = mne.viz.plot_events(events)
http://mne-tools.github.io/mne-biomag-group-demo/auto_scripts/03-run_extract_events.html
Paradigm in code
>>> events_id = {
>>> 'face/famous/first': 5,
>>> 'face/famous/immediate': 6,
>>> 'face/famous/long': 7,
>>> 'face/unfamiliar/first': 13,
>>> 'face/unfamiliar/immediate': 14,
>>> 'face/unfamiliar/long': 15,
>>> 'scrambled/first': 17,
>>> 'scrambled/immediate': 18,
>>> 'scrambled/long': 19,
>>> }
Use “tags” to
describe events
From Epochs to Evoked
>>> tmin, tmax = -0.2, 0.8
>>> reject = dict(grad=4000e-13, mag=4e-12, eog=180e-6)
>>> baseline = None
>>>
>>> epochs = mne.Epochs(raw, events, events_id, tmin, tmax,
proj=True, picks=picks, baseline=baseline,
preload=True, decim=2, reject=reject,
add_eeg_ref=False)
http://mne-tools.github.io/mne-biomag-group-demo/auto_scripts/05-make_epochs.html
…reject the ones with blinks
http://mne-tools.github.io/mne-biomag-group-demo/auto_examples/plot_analysis_1.html
why did we drop epochs?
Example of “drop log” for subject 1:
Use ICA on Epochs to remove ECG
>>> ica_name = op.join(meg_dir, subject, 'run_%02d-ica.fif' % run)
>>> ica = read_ica(ica_name)
>>> n_max_ecg = 3 # use max 3 components
>>> ecg_epochs = create_ecg_epochs(raw, tmin=-.5, tmax=.5)
>>> ecg_inds, scores_ecg = ica.find_bads_ecg(ecg_epochs,
method='ctps',
threshold=0.8)
>>> ica.exclude += ecg_inds[:n_max_ecg]
>>> ica.apply(epochs)
http://mne-tools.github.io/mne-biomag-group-demo/auto_examples/plot_ica.html
Use ICA on Epochs to remove ECG
http://mne-tools.github.io/mne-biomag-group-demo/auto_examples/plot_ica.html
Fit and apply ICA on Epochs
http://mne-tools.github.io/mne-biomag-group-demo/auto_examples/plot_ica.html
From Epochs to Evoked
>>> evoked_faces = epochs['face'].average()
>>> evoked_famous = epochs['face/famous'].average()
>>> evoked_scrambled = epochs['scrambled'].average()
>>> evoked_unfamiliar = epochs[‘face/unfamiliar'].average()
>>> contrast = mne.combine_evoked([evoked_famous,
>>> evoked_unfamiliar,
>>> evoked_scrambled],
>>> weights=[0.5, 0.5, -1.])
>>> mne.evoked.write_evokeds('%s-ave.fif' % subject,
[evoked_famous, evoked_scrambled,
evoked_unfamiliar, contrast,
faces])
http://mne-tools.github.io/mne-biomag-group-demo/auto_scripts/06-make_evoked.html
Index Epochs withtags
EEG Evoked for 3 first subjects
http://mne-tools.github.io/mne-biomag-group-demo/auto_examples/plot_compare.html
EEG Evoked topographies (6 subjects)
http://mne-tools.github.io/mne-biomag-group-demo/auto_examples/plot_compare.html
MEG Evoked for 3 first subjects
http://mne-tools.github.io/mne-biomag-group-demo/auto_examples/plot_compare.html
MEG Evoked for 3 first subjects
http://mne-tools.github.io/mne-biomag-group-demo/auto_examples/plot_compare.html
Back to filtering…
http://mne-tools.github.io/mne-biomag-group-demo/auto_examples/plot_fanning.html
>>> raw.filter(None, 40, fir_window='hann', phase='zero',
h_trans_bandwidth=‘auto’, filter_length='auto')
Back to filtering…
http://mne-tools.github.io/mne-biomag-group-demo/auto_examples/plot_fanning.html
>>> raw.filter(None, 40, fir_window='hann', phase='zero',
h_trans_bandwidth=‘auto’, filter_length='auto')
Fanning
problem
Much less
fanning
Back to filtering…
http://mne-tools.github.io/mne-biomag-group-demo/auto_examples/plot_fanning.html
>>> raw.filter(1, None, l_trans_bandwidth=0.5,
fir_window='hann', phase='zero',
h_trans_bandwidth=‘auto’, filter_length='auto')
Covariance est. and whitening
Engemann, D.A., Gramfort,A., Automated model selection in covariance estimation and
spatial whitening of MEG and EEG signals., Neuroimage 2015
>>> cov = mne.compute_covariance(epochs, tmax=0,
method='shrunk')
Covariance est. and whitening
>>> cov = mne.compute_covariance(epochs, tmax=0,
method='shrunk')
whitened Global
Field Power
whitened ERF
whitened ERP
http://mne-tools.github.io/mne-biomag-group-demo/auto_examples/plot_analysis_1.html
Grand averaging
>>> for idx, evokeds in enumerate(all_evokeds):
>>> # Combine subjects:
>>> grand_avg[idx] = mne.combine_evoked(evokeds, 'equal')
>>> mapping = {'Famous': evokeds[0], 'Scrambled': evokeds[1],
'Unfamiliar': evokeds[2]}
>>> mne.viz.plot_compare_evokeds(mapping, [idx])
http://mne-tools.github.io/mne-biomag-group-demo/auto_examples/plot_group.html
Grand averaging
>>> for idx, evokeds in enumerate(all_evokeds):
>>> # Combine subjects:
>>> grand_avg[idx] = mne.combine_evoked(evokeds, 'equal')
>>> mapping = {'Famous': evokeds[0], 'Scrambled': evokeds[1],
'Unfamiliar': evokeds[2]}
>>> mne.viz.plot_compare_evokeds(mapping, [idx])
http://mne-tools.github.io/mne-biomag-group-demo/auto_examples/plot_group.html
From baseline to baseline !
MNE vs.Wakeman et al.
http://mne-tools.github.io/mne-biomag-group-demo/auto_examples/plot_group.html
MNE vs.Wakeman et al.
http://mne-tools.github.io/mne-biomag-group-demo/auto_examples/plot_group.html
Real?
Sensors stats (cluster level)
http://mne-tools.github.io/mne-biomag-group-demo/auto_examples/plot_sensor_cluster_stats_eeg_channel.html
Sensors stats (cluster level)
http://mne-tools.github.io/mne-biomag-group-demo/auto_examples/plot_sensor_spatio_temporal_cluster_stats.html
p = 0.01 (corrected)
Decoding
http://mne-tools.github.io/mne-biomag-group-demo/auto_examples/plot_time_decoding.html
>>> td = TimeDecoding(predict_mode='cross-validation',
times=times, scorer='roc_auc')
>>> td.fit(epochs, y)
http://mne-tools.github.io/mne-biomag-group-demo/auto_scripts/08-run_time_decoding.html
Source space analysis
•3 Layers BEM forward modeling
•dSPM source localization on cortical surface
•loose orientation (0.2) & depth (0.8) & SNR = 3
•RMS across orientations
•morphing to fsaverage:
subject fsaveragemorphing
… the MNE (default) way
Source space analysis
http://mne-tools.github.io/mne-biomag-group-demo/auto_examples/plot_analysis_2.html
Subject 2
Contrast
localization
(faces vs.
scrambled
Source space group analysis
http://mne-tools.github.io/mne-biomag-group-demo/auto_examples/plot_group.html
16 subjects
average of
Contrast
(faces vs.
scrambled
MNE web report
http://perso.telecom-paristech.fr/~mjas/biomag_demo/report_sub002.html
MNE web report
http://perso.telecom-paristech.fr/~mjas/biomag_demo/report_sub002.html
Command line:
$ mne report --path MEG/sub002 --
info MEG/sub002/run_01_filt_sss-
epo.fif --subject sub002 --subjects-
dir subjects/ --verbose --jobs 6
Getting help http://martinos.org/mne/
http://mail.nmr.mgh.harvard.edu/mailman/listinfo/mne_analysis
Mailing list:
Getting inspired...
http://martinos.org/mne/auto_examples/index.html
Sending feedback
https://github.com/mne-tools/mne-python
Some links
• Documentation:
• http://martinos.org/mne/ (general doc)
• http://martinos.org/mne/stable/manual/index.html (manual)
• http://martinos.org/mne/stable/tutorials.html (tutorials with code)
• http://martinos.org/mne/auto_examples/index.html (python examples)
• Code:
• https://github.com/mne-tools/mne-python (mne-python code)
• https://github.com/mne-tools/mne-matlab (mne matlab toolbox)
• https://github.com/mne-tools/mne-scripts (mne shell scripts)
Access HCP-MEG data as MNE-Python data structures
https:/mne-tools.github.io/mne-hcp
Seamlessly plug HCP MEG data into the Python ecosystem
…/mne-hcp/auto_tutorials/index.html
Poster
[Mo-P008]
Engemann et al.
Alexandre Gramfort
http://alexandre.gramfort.netContact:
GitHub : @agramfort Twitter : @agramfort
If you want a
sticker come to the
MNE poster !
Open	Science!

Más contenido relacionado

La actualidad más candente

Autonomic Computing by- Sandeep Jadhav
Autonomic Computing by- Sandeep JadhavAutonomic Computing by- Sandeep Jadhav
Autonomic Computing by- Sandeep Jadhav
Sandep Jadhav
 
Operators in c language
Operators in c languageOperators in c language
Operators in c language
Amit Singh
 
Web technologies: Model Driven Engineering
Web technologies: Model Driven EngineeringWeb technologies: Model Driven Engineering
Web technologies: Model Driven Engineering
Piero Fraternali
 

La actualidad más candente (20)

Artificial Intelligence (AI).pptx
Artificial Intelligence (AI).pptxArtificial Intelligence (AI).pptx
Artificial Intelligence (AI).pptx
 
Artificial intelligence
Artificial intelligence Artificial intelligence
Artificial intelligence
 
Function lecture
Function lectureFunction lecture
Function lecture
 
Git svnではじめる忍者のごとく潜むgit
Git svnではじめる忍者のごとく潜むgitGit svnではじめる忍者のごとく潜むgit
Git svnではじめる忍者のごとく潜むgit
 
LLVM overview 20110122
LLVM overview 20110122LLVM overview 20110122
LLVM overview 20110122
 
Python, the Language of Science and Engineering for Engineers
Python, the Language of Science and Engineering for EngineersPython, the Language of Science and Engineering for Engineers
Python, the Language of Science and Engineering for Engineers
 
parallel programming models
 parallel programming models parallel programming models
parallel programming models
 
C function presentation
C function presentationC function presentation
C function presentation
 
JupyterLabを中心とした快適な分析生活
JupyterLabを中心とした快適な分析生活JupyterLabを中心とした快適な分析生活
JupyterLabを中心とした快適な分析生活
 
Big data and Artificial Intelligence
Big data and Artificial IntelligenceBig data and Artificial Intelligence
Big data and Artificial Intelligence
 
Begin with Python
Begin with PythonBegin with Python
Begin with Python
 
Introduction to numpy
Introduction to numpyIntroduction to numpy
Introduction to numpy
 
SECDマシン 実装と動きとその他もろもろについて
SECDマシン 実装と動きとその他もろもろについてSECDマシン 実装と動きとその他もろもろについて
SECDマシン 実装と動きとその他もろもろについて
 
Python Foundation – A programmer's introduction to Python concepts & style
Python Foundation – A programmer's introduction to Python concepts & stylePython Foundation – A programmer's introduction to Python concepts & style
Python Foundation – A programmer's introduction to Python concepts & style
 
Autonomic Computing by- Sandeep Jadhav
Autonomic Computing by- Sandeep JadhavAutonomic Computing by- Sandeep Jadhav
Autonomic Computing by- Sandeep Jadhav
 
Operators in c language
Operators in c languageOperators in c language
Operators in c language
 
最新C++事情 C++14-C++20 (2018年10月)
最新C++事情 C++14-C++20 (2018年10月)最新C++事情 C++14-C++20 (2018年10月)
最新C++事情 C++14-C++20 (2018年10月)
 
「C言語規格&MISRA-C:みんなで楽しいCプログラミング」NGK2013B名古屋合同懇親会2013忘年会昼の部
「C言語規格&MISRA-C:みんなで楽しいCプログラミング」NGK2013B名古屋合同懇親会2013忘年会昼の部「C言語規格&MISRA-C:みんなで楽しいCプログラミング」NGK2013B名古屋合同懇親会2013忘年会昼の部
「C言語規格&MISRA-C:みんなで楽しいCプログラミング」NGK2013B名古屋合同懇親会2013忘年会昼の部
 
謎の言語Forthが謎なので実装した
謎の言語Forthが謎なので実装した謎の言語Forthが謎なので実装した
謎の言語Forthが謎なので実装した
 
Web technologies: Model Driven Engineering
Web technologies: Model Driven EngineeringWeb technologies: Model Driven Engineering
Web technologies: Model Driven Engineering
 

Destacado

Anomaly Detection Via PCA
Anomaly Detection Via PCAAnomaly Detection Via PCA
Anomaly Detection Via PCA
Deepak Kumar
 
Five Killer Ways to Design The Same Slide
Five Killer Ways to Design The Same SlideFive Killer Ways to Design The Same Slide
Five Killer Ways to Design The Same Slide
Crispy Presentations
 
Why Content Marketing Fails
Why Content Marketing FailsWhy Content Marketing Fails
Why Content Marketing Fails
Rand Fishkin
 

Destacado (20)

Teaching ML with scikit-learn at Telecom ParisTech
Teaching ML with scikit-learn at Telecom ParisTechTeaching ML with scikit-learn at Telecom ParisTech
Teaching ML with scikit-learn at Telecom ParisTech
 
Anomaly/Novelty detection with scikit-learn
Anomaly/Novelty detection with scikit-learnAnomaly/Novelty detection with scikit-learn
Anomaly/Novelty detection with scikit-learn
 
Very helpful PPT: Models of word recognition
Very helpful PPT: Models of word recognitionVery helpful PPT: Models of word recognition
Very helpful PPT: Models of word recognition
 
Anomaly Detection Via PCA
Anomaly Detection Via PCAAnomaly Detection Via PCA
Anomaly Detection Via PCA
 
Slideshare with animations
Slideshare with animationsSlideshare with animations
Slideshare with animations
 
MagnetoEncephaloGraphy- By Anuj Malik
MagnetoEncephaloGraphy- By Anuj MalikMagnetoEncephaloGraphy- By Anuj Malik
MagnetoEncephaloGraphy- By Anuj Malik
 
Bridging the Gap Between Data Science & Engineer: Building High-Performance T...
Bridging the Gap Between Data Science & Engineer: Building High-Performance T...Bridging the Gap Between Data Science & Engineer: Building High-Performance T...
Bridging the Gap Between Data Science & Engineer: Building High-Performance T...
 
Booz Allen Field Guide to Data Science
Booz Allen Field Guide to Data Science Booz Allen Field Guide to Data Science
Booz Allen Field Guide to Data Science
 
The Minimum Loveable Product
The Minimum Loveable ProductThe Minimum Loveable Product
The Minimum Loveable Product
 
How I got 2.5 Million views on Slideshare (by @nickdemey - Board of Innovation)
How I got 2.5 Million views on Slideshare (by @nickdemey - Board of Innovation)How I got 2.5 Million views on Slideshare (by @nickdemey - Board of Innovation)
How I got 2.5 Million views on Slideshare (by @nickdemey - Board of Innovation)
 
The Seven Deadly Social Media Sins
The Seven Deadly Social Media SinsThe Seven Deadly Social Media Sins
The Seven Deadly Social Media Sins
 
Five Killer Ways to Design The Same Slide
Five Killer Ways to Design The Same SlideFive Killer Ways to Design The Same Slide
Five Killer Ways to Design The Same Slide
 
How People Really Hold and Touch (their Phones)
How People Really Hold and Touch (their Phones)How People Really Hold and Touch (their Phones)
How People Really Hold and Touch (their Phones)
 
Upworthy: 10 Ways To Win The Internets
Upworthy: 10 Ways To Win The InternetsUpworthy: 10 Ways To Win The Internets
Upworthy: 10 Ways To Win The Internets
 
What 33 Successful Entrepreneurs Learned From Failure
What 33 Successful Entrepreneurs Learned From FailureWhat 33 Successful Entrepreneurs Learned From Failure
What 33 Successful Entrepreneurs Learned From Failure
 
Design Your Career 2018
Design Your Career 2018Design Your Career 2018
Design Your Career 2018
 
Why Content Marketing Fails
Why Content Marketing FailsWhy Content Marketing Fails
Why Content Marketing Fails
 
The History of SEO
The History of SEOThe History of SEO
The History of SEO
 
How To (Really) Get Into Marketing
How To (Really) Get Into MarketingHow To (Really) Get Into Marketing
How To (Really) Get Into Marketing
 
The What If Technique presented by Motivate Design
The What If Technique presented by Motivate DesignThe What If Technique presented by Motivate Design
The What If Technique presented by Motivate Design
 

Similar a MNE group analysis presentation @ Biomag 2016 conf.

Chat bot making process using Python 3 & TensorFlow
Chat bot making process using Python 3 & TensorFlowChat bot making process using Python 3 & TensorFlow
Chat bot making process using Python 3 & TensorFlow
Jeongkyu Shin
 
Open source software for startups
Open source software for startupsOpen source software for startups
Open source software for startups
victorneo
 
Wiki dev nlp
Wiki dev nlpWiki dev nlp
Wiki dev nlp
ICSM 2010
 

Similar a MNE group analysis presentation @ Biomag 2016 conf. (20)

Obj report
Obj reportObj report
Obj report
 
Deep Learning Cases: Text and Image Processing
Deep Learning Cases: Text and Image ProcessingDeep Learning Cases: Text and Image Processing
Deep Learning Cases: Text and Image Processing
 
YAPCEurope2014-myfinder
YAPCEurope2014-myfinderYAPCEurope2014-myfinder
YAPCEurope2014-myfinder
 
Chat bot making process using Python 3 & TensorFlow
Chat bot making process using Python 3 & TensorFlowChat bot making process using Python 3 & TensorFlow
Chat bot making process using Python 3 & TensorFlow
 
Ladypy 01
Ladypy 01Ladypy 01
Ladypy 01
 
A CTF Hackers Toolbox
A CTF Hackers ToolboxA CTF Hackers Toolbox
A CTF Hackers Toolbox
 
Measuring Software development with GrimoireLab
Measuring Software development with GrimoireLabMeasuring Software development with GrimoireLab
Measuring Software development with GrimoireLab
 
Pypy is-it-ready-for-production-the-sequel
Pypy is-it-ready-for-production-the-sequelPypy is-it-ready-for-production-the-sequel
Pypy is-it-ready-for-production-the-sequel
 
Drew Conway: A Social Scientist's Perspective on Data Science
Drew Conway: A Social Scientist's Perspective on Data ScienceDrew Conway: A Social Scientist's Perspective on Data Science
Drew Conway: A Social Scientist's Perspective on Data Science
 
Using K-Nearest Neighbors and Support Vector Machine Classifiers in Personal ...
Using K-Nearest Neighbors and Support Vector Machine Classifiers in Personal ...Using K-Nearest Neighbors and Support Vector Machine Classifiers in Personal ...
Using K-Nearest Neighbors and Support Vector Machine Classifiers in Personal ...
 
Django1.7 automated migrations like ruby on rails
Django1.7 automated migrations like ruby on railsDjango1.7 automated migrations like ruby on rails
Django1.7 automated migrations like ruby on rails
 
Malware analysis
Malware analysisMalware analysis
Malware analysis
 
Conducting Experiments on the Software Architecture of Robotic Systems (QRARS...
Conducting Experiments on the Software Architecture of Robotic Systems (QRARS...Conducting Experiments on the Software Architecture of Robotic Systems (QRARS...
Conducting Experiments on the Software Architecture of Robotic Systems (QRARS...
 
DevOps Practice in Nonprofit - Abdurrachman Mappuji
DevOps Practice in Nonprofit - Abdurrachman MappujiDevOps Practice in Nonprofit - Abdurrachman Mappuji
DevOps Practice in Nonprofit - Abdurrachman Mappuji
 
Open source software for startups
Open source software for startupsOpen source software for startups
Open source software for startups
 
Cheminformatics Software Development: Case Studies
Cheminformatics Software Development: Case StudiesCheminformatics Software Development: Case Studies
Cheminformatics Software Development: Case Studies
 
Neuronvisio sumatra workflow
Neuronvisio sumatra workflowNeuronvisio sumatra workflow
Neuronvisio sumatra workflow
 
OpenML NeurIPS2018
OpenML NeurIPS2018OpenML NeurIPS2018
OpenML NeurIPS2018
 
Wiki dev nlp
Wiki dev nlpWiki dev nlp
Wiki dev nlp
 
Operationalizing Clojure Confidently
Operationalizing Clojure ConfidentlyOperationalizing Clojure Confidently
Operationalizing Clojure Confidently
 

Último

Pests of mustard_Identification_Management_Dr.UPR.pdf
Pests of mustard_Identification_Management_Dr.UPR.pdfPests of mustard_Identification_Management_Dr.UPR.pdf
Pests of mustard_Identification_Management_Dr.UPR.pdf
PirithiRaju
 
Conjugation, transduction and transformation
Conjugation, transduction and transformationConjugation, transduction and transformation
Conjugation, transduction and transformation
Areesha Ahmad
 
Digital Dentistry.Digital Dentistryvv.pptx
Digital Dentistry.Digital Dentistryvv.pptxDigital Dentistry.Digital Dentistryvv.pptx
Digital Dentistry.Digital Dentistryvv.pptx
MohamedFarag457087
 

Último (20)

Clean In Place(CIP).pptx .
Clean In Place(CIP).pptx                 .Clean In Place(CIP).pptx                 .
Clean In Place(CIP).pptx .
 
pumpkin fruit fly, water melon fruit fly, cucumber fruit fly
pumpkin fruit fly, water melon fruit fly, cucumber fruit flypumpkin fruit fly, water melon fruit fly, cucumber fruit fly
pumpkin fruit fly, water melon fruit fly, cucumber fruit fly
 
FAIRSpectra - Enabling the FAIRification of Spectroscopy and Spectrometry
FAIRSpectra - Enabling the FAIRification of Spectroscopy and SpectrometryFAIRSpectra - Enabling the FAIRification of Spectroscopy and Spectrometry
FAIRSpectra - Enabling the FAIRification of Spectroscopy and Spectrometry
 
High Class Escorts in Hyderabad ₹7.5k Pick Up & Drop With Cash Payment 969456...
High Class Escorts in Hyderabad ₹7.5k Pick Up & Drop With Cash Payment 969456...High Class Escorts in Hyderabad ₹7.5k Pick Up & Drop With Cash Payment 969456...
High Class Escorts in Hyderabad ₹7.5k Pick Up & Drop With Cash Payment 969456...
 
9654467111 Call Girls In Raj Nagar Delhi Short 1500 Night 6000
9654467111 Call Girls In Raj Nagar Delhi Short 1500 Night 60009654467111 Call Girls In Raj Nagar Delhi Short 1500 Night 6000
9654467111 Call Girls In Raj Nagar Delhi Short 1500 Night 6000
 
300003-World Science Day For Peace And Development.pptx
300003-World Science Day For Peace And Development.pptx300003-World Science Day For Peace And Development.pptx
300003-World Science Day For Peace And Development.pptx
 
Pests of mustard_Identification_Management_Dr.UPR.pdf
Pests of mustard_Identification_Management_Dr.UPR.pdfPests of mustard_Identification_Management_Dr.UPR.pdf
Pests of mustard_Identification_Management_Dr.UPR.pdf
 
SAMASTIPUR CALL GIRL 7857803690 LOW PRICE ESCORT SERVICE
SAMASTIPUR CALL GIRL 7857803690  LOW PRICE  ESCORT SERVICESAMASTIPUR CALL GIRL 7857803690  LOW PRICE  ESCORT SERVICE
SAMASTIPUR CALL GIRL 7857803690 LOW PRICE ESCORT SERVICE
 
Conjugation, transduction and transformation
Conjugation, transduction and transformationConjugation, transduction and transformation
Conjugation, transduction and transformation
 
GBSN - Microbiology (Unit 2)
GBSN - Microbiology (Unit 2)GBSN - Microbiology (Unit 2)
GBSN - Microbiology (Unit 2)
 
Vip profile Call Girls In Lonavala 9748763073 For Genuine Sex Service At Just...
Vip profile Call Girls In Lonavala 9748763073 For Genuine Sex Service At Just...Vip profile Call Girls In Lonavala 9748763073 For Genuine Sex Service At Just...
Vip profile Call Girls In Lonavala 9748763073 For Genuine Sex Service At Just...
 
Human & Veterinary Respiratory Physilogy_DR.E.Muralinath_Associate Professor....
Human & Veterinary Respiratory Physilogy_DR.E.Muralinath_Associate Professor....Human & Veterinary Respiratory Physilogy_DR.E.Muralinath_Associate Professor....
Human & Veterinary Respiratory Physilogy_DR.E.Muralinath_Associate Professor....
 
chemical bonding Essentials of Physical Chemistry2.pdf
chemical bonding Essentials of Physical Chemistry2.pdfchemical bonding Essentials of Physical Chemistry2.pdf
chemical bonding Essentials of Physical Chemistry2.pdf
 
Molecular markers- RFLP, RAPD, AFLP, SNP etc.
Molecular markers- RFLP, RAPD, AFLP, SNP etc.Molecular markers- RFLP, RAPD, AFLP, SNP etc.
Molecular markers- RFLP, RAPD, AFLP, SNP etc.
 
Locating and isolating a gene, FISH, GISH, Chromosome walking and jumping, te...
Locating and isolating a gene, FISH, GISH, Chromosome walking and jumping, te...Locating and isolating a gene, FISH, GISH, Chromosome walking and jumping, te...
Locating and isolating a gene, FISH, GISH, Chromosome walking and jumping, te...
 
GBSN - Biochemistry (Unit 1)
GBSN - Biochemistry (Unit 1)GBSN - Biochemistry (Unit 1)
GBSN - Biochemistry (Unit 1)
 
Thyroid Physiology_Dr.E. Muralinath_ Associate Professor
Thyroid Physiology_Dr.E. Muralinath_ Associate ProfessorThyroid Physiology_Dr.E. Muralinath_ Associate Professor
Thyroid Physiology_Dr.E. Muralinath_ Associate Professor
 
Pulmonary drug delivery system M.pharm -2nd sem P'ceutics
Pulmonary drug delivery system M.pharm -2nd sem P'ceuticsPulmonary drug delivery system M.pharm -2nd sem P'ceutics
Pulmonary drug delivery system M.pharm -2nd sem P'ceutics
 
Digital Dentistry.Digital Dentistryvv.pptx
Digital Dentistry.Digital Dentistryvv.pptxDigital Dentistry.Digital Dentistryvv.pptx
Digital Dentistry.Digital Dentistryvv.pptx
 
PSYCHOSOCIAL NEEDS. in nursing II sem pptx
PSYCHOSOCIAL NEEDS. in nursing II sem pptxPSYCHOSOCIAL NEEDS. in nursing II sem pptx
PSYCHOSOCIAL NEEDS. in nursing II sem pptx
 

MNE group analysis presentation @ Biomag 2016 conf.