SlideShare a Scribd company logo
BIONLP AND ITS
APPLICATIONS
Shankai Yan (NCBI/NIH)
Homepage: skyan.me
Lecture Materials:
skyan.me /lectures /online /bionlp-intro
What is BioNLP
Biomedical Natural Language Processing,
Biomedical Text Mining
Knowledge extraction from text in
biomedical/clinical field
Objective: Facilitate understanding and
decision making in computational way
Subfield of bioinformatics
Common: sequence data
Difference: alphabet
Data
Data is generated by human
• Biomedical Literature
• Clinical Notes
• Textual Description in Knowledge
Database
NLP Tasks
Basic Tasks:
 Tokenization (paragraph, sentence, words)
 POS Tagging (noun, verb, adj), Lemmatization, Stem
 Dependency Parsing
Advance Tasks:
 Name Entity Recognition (PubTator)
 Information Retrieval (PubMed)
 Document classification (Multi-class & Multi-label)
 Information Extraction
Protein-Protein-Interaction
Gene-Gene-Interaction
Drug-Drug-Interaction
Biological Event
 Question Answering
NER
Online Tools
API Calling
Write your own code
NER Methods
Dictionary-based
ML-based
Dictionary-based
1. dictionary construction
2. text string-based matching
Deep Learning Model (PhenoTagger[1])
[1] Luo, L., Yan, S., Lai, P. T., Veltri, D., Oler, A., Xirasagar, S., ... & Lu, Z.
(2021). PhenoTagger: a hybrid method for phenotype concept recognition using
human phenotype ontology. Bioinformatics, 37(13), 1884-1890.
Example of Document Classification
Cancer Hallmark Annotation[2]
… Genes that were overexpressed in OM3 included
oncogenes, cell cycle regulators , and those involved in
signal transduction, whereas genes for DNA repair
enzymes and inhibitors of transformation and metastasis
were suppressed. In arsenic-treated cells, multiple DNA
repair proteins were overexpressed. … [3]
[2] Yan, Shankai, and Ka-Chun Wong. "Elucidating high-dimensional cancer
hallmark annotation via enriched ontology." Journal of biomedical informatics 73
(2017): 84-94.
[3] Bae, Dong-Soon, et al. "Characterization of gene expression changes
associated with MNNG, arsenic, or metal mixture treatment in human
keratinocytes: application of cDNA microarray technology." Environmental Health
Perspectives 110.suppl 6 (2002): 931-941.
Activating invasion and metastasis (IM)
Genomic instability and mutation (GI)
Sustaining proliferative signaling (PS)
Evading growth suppressors (GS)
Multi-label Classification
Binary
Classifier
Binary
Classifier
Binary
Classifier
Ensemble
Classifier
Label
Binarization
1
0
.
.
.
.
.
1
1
0
.
.
.
.
.
0
0
1
.
.
.
.
.
0
Document Vectorization
𝑑1: < t1
1
, t2
1
, … , t𝑘
1
>
𝑑2: < t1
2
, t2
2
, … , t𝑘
2
>
…
…
…
…
𝑑𝑚: < t1
𝑚
, t2
𝑚
, … , t𝑘
𝑚
>
Multi-Label
Classifier
Example of IE
Bacteria Gene Interaction Extraction[4]
These studies indicate that spo0H is transcribed by
the major vegetative RNA polymerase, E sigma A. [5]
Gene
Polymerase
Complex
Polymerase
Complex
Transcription
ActionTarget
TranscriptionBy
[4] Yan, Shankai, and Ka-Chun Wong. "Context awareness and embedding for
biomedical event extraction." Bioinformatics 36.2 (2020): 637-643.
[5] Weir, J; Predich, M; Dubnau, E; Nair, G; Smith, I. (1991). Regulation of
spo0H, a gene coding for the Bacillus subtilis sigma H factor. J. Bacteriol. vol. 173
(2) p. 521-529
• Extract lexical
features from text
• Construct word
matrix, edge matrix
and label matrices.
Preprocessing
• Multiclass
• Trigger
Classification
• Edge Classification
Classifiers Training
• Annotate the triggers
• Induce relation records
Post-processing
TRIGGER-BASED APPROACH
Non-Trigger Approach
Neural Networks
Language Model
(word2vec)
Word Embedding
𝑇1: < t1
1
, t2
1
, … , t𝑘
1
>
𝑇2: < t1
2
, t2
2
, … , t𝑘
2
>
…
𝑇𝑚: < t1
𝑚
, t2
𝑚
, … , t𝑘
𝑚
>
Combination of
Named Entities
Label
Binarizatio
n
1
0
.
0
0
0
.
1
0
1
.
0
Annotated Corpus
Manual Labels
𝑇1
𝑇3
𝑇i
𝑇2
𝑇m
𝑇j
𝑇1 𝑇2
𝑇2 𝑇3
… …
𝑇i 𝑇j
Candidate
Entity Pairs
Ensemble
Classifier
Binary
Classifier
Binary
Classifier
Binary
Classifier
W0 W1 … Wa-1 Wa Wa+1 … Wb-1 Wb Wb+1 … Wn-1Wn
W0 … Wa X0
Wn … Wa X1
Word
Embedding
Trained on
PubMed
Literature
LSTM
LSTM
Concate MLP Argument
Argument
Embedding
Pretrained
Argument
Detection
Model
W0 … Wa X0
Wn … Wa X1
Weighted Binary
Cross-entropy
Labels Loss Function
Deep Learning Approach [4]
W0 … Wn Input word stream
X0
Input variable
Neural Network
Layer
[4] Yan, Shankai, and Ka-Chun Wong. "Context awareness and embedding for
biomedical event extraction." Bioinformatics 36.2 (2020): 637-643.
Difference from
Conventional
NLP Tasks
 Contains Biomedical Symbols,
Punctuations, Terms
 The writers are from the
biomedical/clinical expertise group
 Different Corpus /Context
Leaderboard
GLUE[6]
BLUE[7]
[6] Wang, Alex, et al. "GLUE: A multi-task
benchmark and analysis platform for natural
language understanding." arXiv preprint
arXiv:1804.07461 (2018).
[7] Peng, Yifan, Shankai Yan, and Zhiyong Lu.
"Transfer learning in biomedical natural language
processing: an evaluation of BERT and ELMo on ten
benchmarking datasets." arXiv preprint
arXiv:1906.05474 (2019).
Methods
Feature Extraction:
Tokenization, Bag-of-Words, Normalization
Tokenization, Word Embeddings, Language Model
Classification/Regression/ Model:
SVM/RandomForest
Language Model/Encoder:
LSTM/CNN/BERT
Traditional Machine Learning Methods
Handcrafted Features
Tokens
Part-of-speech
Entity type
Grammatical function tag
Distance in the parse tree
Classifical ML models
Support Vector Machine (SVM)
Bayesian Classifier
Multi-layer Perception (MLP)
Ensemble Classifiers (Random
Forest, Extra Trees, etc.)
SOTA Deep Learning Methods
Word Embedding / Language Model (Pre-trained)
Sequence to Vector
Encoder:
– Bag of Embedding
– RNN/LSTM/GRU
– CNN
Classifier:
– Linear
– MLP
Packages
NLTK: simple text processing
SpaCy: Pipeline
Stanza: Pipeline
Gensim: Word/Doc Embedding
Hugging Face (Transformers): SOTA Model
Text Mining on
Knowledge
Databases
Experiment Repositories:
GEO/DECIPHER
Ontology:
GO/HPO
DATA DESCRIPTION IN GEO
Text
MetaTable
Text
Raw Data
DataTable
Text
Raw Data
Curated Collection of Samples Expression Measurements of DataSet
2,393,216 95,138
OBJECTIVE
Control
Samples
(GSMXXX)
Perturbati
on
Samples
(GSMXXX)
Series
(GSEXXX)
Gene
Drug
Disease
Gene1
Gene2
Disease1
Drug1
Disease2
Drug2
?
PROBLEM
Gene1
Gene2
Disease1
Drug1
Disease2
Drug2
Signature
METHODOLOGY
Series
(GSEXXX)
Gene
Series
Drug
Series
Disease
Series
Samples
(GSMXXX)
Perturbatio
n
Samples
Control
Samples
GEO Document
Classification
METHODOLOGY
GSE
Series
GSE
Series
GSE
Series
Gene
Disease
Dru
g
Perturbation
Samples
Control
Samples
Perturbation
Samples
Control
Samples
Perturbation
Samples
Control
Samples
Sample Clustering
METHODOLOGY
Gene Disease
Dru
g
Gene1
Gene2
Gene3
Genen-1
···
Genen
𝑆𝑎
𝑢𝑝
={Up-regulated Genes}
𝑆𝑎
𝑑𝑜𝑤𝑛
={Down-regulated Genes}
Signature a
𝑆𝑏
𝑢𝑝
={Up-regulated Genes}
𝑆𝑏
𝑑𝑜𝑤𝑛
={Down-regulated Genes}
Signature b Gene1
Gene2
Gene3
Genen-1
···
Genen
METHODOLOGY
Signed Jaccard
Similarity
𝑆𝐽(𝑆𝑎, 𝑆𝑏)
𝑆𝐽(𝑆𝑎, 𝑆𝑏) =
𝐽 𝑆𝑎
𝑢𝑝
, 𝑆𝑏
𝑢𝑝
+ 𝐽 𝑆𝑎
𝑑𝑜𝑤𝑛, 𝑆𝑏
𝑑𝑜𝑤𝑛
− 𝐽 𝑆𝑎
𝑢𝑝
, 𝑆𝑏
𝑑𝑜𝑤𝑛
− 𝐽 𝑆𝑎
𝑑𝑜𝑤𝑛, 𝑆𝑏
𝑢𝑝
2
Differential Gene Expression Analysis
RESULTS
UDT-RF
[2]
UDT-ET UDT-AB UDT-GB
UDT-
RbfSVM
Accuracy 0.68 0.63 0.65 0.68 0.56
Precision 0.81 0.83 0.79 0.82 0.62
Recall 0.77 0.69 0.75 0.75 0.58
F score 0.79 0.75 0.77 0.78 0.60
[2] Yan, S. and Wong, K.-C. (2017). Elucidating high-dimensional cancer hallmark annotation via enriched ontology. Journal of Biomedical Informatics, 73, 84–94
ROC Curve PRC Curve
UDT-RF
[1]
UDT-ET UDT-AB UDT-GB
UDT-
RbfSVM
Accuracy 0.96 0.96 0.85 0.87 0.66
Precision 0.95 0.96 0.85 0.89 0.51
Recall 0.94 0.94 0.75 0.76 0.37
F score 0.94 0.95 0.79 0.80 0.30
[2] Yan, S. and Wong, K.-C. (2017). Elucidating high-dimensional cancer hallmark annotation via enriched ontology. Journal of Biomedical Informatics, 73, 84–94
ROC Curve
PRC Curve
Euclidean Distance Our Distance Metric
KNN Graph Minimum Spanning Tree
Thank You

More Related Content

Similar to Introduction to BioNLP and its applications

Welch Wordifier Bosc2009
Welch Wordifier Bosc2009Welch Wordifier Bosc2009
Welch Wordifier Bosc2009
bosc
 
download
downloaddownload
download
butest
 
download
downloaddownload
download
butest
 
Literature Based Framework for Semantic Descriptions of e-Science resources
Literature Based Framework for Semantic Descriptions of e-Science resourcesLiterature Based Framework for Semantic Descriptions of e-Science resources
Literature Based Framework for Semantic Descriptions of e-Science resources
Hammad Afzal
 
Ibn Sina
Ibn SinaIbn Sina
Ibn Sina
Yasmine Gaber
 
bioinformatics enabling knowledge generation from agricultural omics data
bioinformatics enabling knowledge generation from agricultural omics databioinformatics enabling knowledge generation from agricultural omics data
bioinformatics enabling knowledge generation from agricultural omics data
International Institute of Tropical Agriculture
 
call for papers, research paper publishing, where to publish research paper, ...
call for papers, research paper publishing, where to publish research paper, ...call for papers, research paper publishing, where to publish research paper, ...
call for papers, research paper publishing, where to publish research paper, ...
International Journal of Engineering Inventions www.ijeijournal.com
 
Introduction to Bioinformatics-1.pdf
Introduction to Bioinformatics-1.pdfIntroduction to Bioinformatics-1.pdf
Introduction to Bioinformatics-1.pdf
kigaruantony
 
PPT
PPTPPT
PPT
butest
 
BITS: Overview of important biological databases beyond sequences
BITS: Overview of important biological databases beyond sequencesBITS: Overview of important biological databases beyond sequences
BITS: Overview of important biological databases beyond sequences
BITS
 
LECTURE NOTES ON BIOINFORMATICS
LECTURE NOTES ON BIOINFORMATICSLECTURE NOTES ON BIOINFORMATICS
LECTURE NOTES ON BIOINFORMATICS
MSCW Mysore
 
NAISTビッグデータシンポジウム - 情報 松本先生
NAISTビッグデータシンポジウム - 情報 松本先生NAISTビッグデータシンポジウム - 情報 松本先生
NAISTビッグデータシンポジウム - 情報 松本先生
ysuzuki-naist
 
DextMP: Text mining for finding moonlighting proteins
DextMP: Text mining for finding moonlighting proteinsDextMP: Text mining for finding moonlighting proteins
DextMP: Text mining for finding moonlighting proteins
Purdue University
 
Greene Bosc2008
Greene Bosc2008Greene Bosc2008
Greene Bosc2008
bosc_2008
 
Prosdocimi ucb cdao
Prosdocimi ucb cdaoProsdocimi ucb cdao
Prosdocimi ucb cdao
Francisco Prosdocimi
 
download
downloaddownload
download
butest
 
Introduction to Ontologies for Environmental Biology
Introduction to Ontologies for Environmental BiologyIntroduction to Ontologies for Environmental Biology
Introduction to Ontologies for Environmental Biology
Barry Smith
 
Presentation material
Presentation materialPresentation material
Presentation material
butest
 
Formal languages to map Genotype to Phenotype in Natural Genomes
Formal languages to map Genotype to Phenotype in Natural GenomesFormal languages to map Genotype to Phenotype in Natural Genomes
Formal languages to map Genotype to Phenotype in Natural Genomes
madalladam
 
Biomedical literature mining
Biomedical literature miningBiomedical literature mining
Biomedical literature mining
Lars Juhl Jensen
 

Similar to Introduction to BioNLP and its applications (20)

Welch Wordifier Bosc2009
Welch Wordifier Bosc2009Welch Wordifier Bosc2009
Welch Wordifier Bosc2009
 
download
downloaddownload
download
 
download
downloaddownload
download
 
Literature Based Framework for Semantic Descriptions of e-Science resources
Literature Based Framework for Semantic Descriptions of e-Science resourcesLiterature Based Framework for Semantic Descriptions of e-Science resources
Literature Based Framework for Semantic Descriptions of e-Science resources
 
Ibn Sina
Ibn SinaIbn Sina
Ibn Sina
 
bioinformatics enabling knowledge generation from agricultural omics data
bioinformatics enabling knowledge generation from agricultural omics databioinformatics enabling knowledge generation from agricultural omics data
bioinformatics enabling knowledge generation from agricultural omics data
 
call for papers, research paper publishing, where to publish research paper, ...
call for papers, research paper publishing, where to publish research paper, ...call for papers, research paper publishing, where to publish research paper, ...
call for papers, research paper publishing, where to publish research paper, ...
 
Introduction to Bioinformatics-1.pdf
Introduction to Bioinformatics-1.pdfIntroduction to Bioinformatics-1.pdf
Introduction to Bioinformatics-1.pdf
 
PPT
PPTPPT
PPT
 
BITS: Overview of important biological databases beyond sequences
BITS: Overview of important biological databases beyond sequencesBITS: Overview of important biological databases beyond sequences
BITS: Overview of important biological databases beyond sequences
 
LECTURE NOTES ON BIOINFORMATICS
LECTURE NOTES ON BIOINFORMATICSLECTURE NOTES ON BIOINFORMATICS
LECTURE NOTES ON BIOINFORMATICS
 
NAISTビッグデータシンポジウム - 情報 松本先生
NAISTビッグデータシンポジウム - 情報 松本先生NAISTビッグデータシンポジウム - 情報 松本先生
NAISTビッグデータシンポジウム - 情報 松本先生
 
DextMP: Text mining for finding moonlighting proteins
DextMP: Text mining for finding moonlighting proteinsDextMP: Text mining for finding moonlighting proteins
DextMP: Text mining for finding moonlighting proteins
 
Greene Bosc2008
Greene Bosc2008Greene Bosc2008
Greene Bosc2008
 
Prosdocimi ucb cdao
Prosdocimi ucb cdaoProsdocimi ucb cdao
Prosdocimi ucb cdao
 
download
downloaddownload
download
 
Introduction to Ontologies for Environmental Biology
Introduction to Ontologies for Environmental BiologyIntroduction to Ontologies for Environmental Biology
Introduction to Ontologies for Environmental Biology
 
Presentation material
Presentation materialPresentation material
Presentation material
 
Formal languages to map Genotype to Phenotype in Natural Genomes
Formal languages to map Genotype to Phenotype in Natural GenomesFormal languages to map Genotype to Phenotype in Natural Genomes
Formal languages to map Genotype to Phenotype in Natural Genomes
 
Biomedical literature mining
Biomedical literature miningBiomedical literature mining
Biomedical literature mining
 

Recently uploaded

The simplified electron and muon model, Oscillating Spacetime: The Foundation...
The simplified electron and muon model, Oscillating Spacetime: The Foundation...The simplified electron and muon model, Oscillating Spacetime: The Foundation...
The simplified electron and muon model, Oscillating Spacetime: The Foundation...
RitikBhardwaj56
 
writing about opinions about Australia the movie
writing about opinions about Australia the moviewriting about opinions about Australia the movie
writing about opinions about Australia the movie
Nicholas Montgomery
 
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
Nguyen Thanh Tu Collection
 
South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)
Academy of Science of South Africa
 
BBR 2024 Summer Sessions Interview Training
BBR  2024 Summer Sessions Interview TrainingBBR  2024 Summer Sessions Interview Training
BBR 2024 Summer Sessions Interview Training
Katrina Pritchard
 
The basics of sentences session 6pptx.pptx
The basics of sentences session 6pptx.pptxThe basics of sentences session 6pptx.pptx
The basics of sentences session 6pptx.pptx
heathfieldcps1
 
How to Setup Warehouse & Location in Odoo 17 Inventory
How to Setup Warehouse & Location in Odoo 17 InventoryHow to Setup Warehouse & Location in Odoo 17 Inventory
How to Setup Warehouse & Location in Odoo 17 Inventory
Celine George
 
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
National Information Standards Organization (NISO)
 
The History of Stoke Newington Street Names
The History of Stoke Newington Street NamesThe History of Stoke Newington Street Names
The History of Stoke Newington Street Names
History of Stoke Newington
 
PCOS corelations and management through Ayurveda.
PCOS corelations and management through Ayurveda.PCOS corelations and management through Ayurveda.
PCOS corelations and management through Ayurveda.
Dr. Shivangi Singh Parihar
 
Main Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docxMain Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docx
adhitya5119
 
How to Fix the Import Error in the Odoo 17
How to Fix the Import Error in the Odoo 17How to Fix the Import Error in the Odoo 17
How to Fix the Import Error in the Odoo 17
Celine George
 
World environment day ppt For 5 June 2024
World environment day ppt For 5 June 2024World environment day ppt For 5 June 2024
World environment day ppt For 5 June 2024
ak6969907
 
Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...
Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...
Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...
Dr. Vinod Kumar Kanvaria
 
Walmart Business+ and Spark Good for Nonprofits.pdf
Walmart Business+ and Spark Good for Nonprofits.pdfWalmart Business+ and Spark Good for Nonprofits.pdf
Walmart Business+ and Spark Good for Nonprofits.pdf
TechSoup
 
Pengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptxPengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptx
Fajar Baskoro
 
Digital Artifact 1 - 10VCD Environments Unit
Digital Artifact 1 - 10VCD Environments UnitDigital Artifact 1 - 10VCD Environments Unit
Digital Artifact 1 - 10VCD Environments Unit
chanes7
 
PIMS Job Advertisement 2024.pdf Islamabad
PIMS Job Advertisement 2024.pdf IslamabadPIMS Job Advertisement 2024.pdf Islamabad
PIMS Job Advertisement 2024.pdf Islamabad
AyyanKhan40
 
Digital Artefact 1 - Tiny Home Environmental Design
Digital Artefact 1 - Tiny Home Environmental DesignDigital Artefact 1 - Tiny Home Environmental Design
Digital Artefact 1 - Tiny Home Environmental Design
amberjdewit93
 
Community pharmacy- Social and preventive pharmacy UNIT 5
Community pharmacy- Social and preventive pharmacy UNIT 5Community pharmacy- Social and preventive pharmacy UNIT 5
Community pharmacy- Social and preventive pharmacy UNIT 5
sayalidalavi006
 

Recently uploaded (20)

The simplified electron and muon model, Oscillating Spacetime: The Foundation...
The simplified electron and muon model, Oscillating Spacetime: The Foundation...The simplified electron and muon model, Oscillating Spacetime: The Foundation...
The simplified electron and muon model, Oscillating Spacetime: The Foundation...
 
writing about opinions about Australia the movie
writing about opinions about Australia the moviewriting about opinions about Australia the movie
writing about opinions about Australia the movie
 
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
 
South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)
 
BBR 2024 Summer Sessions Interview Training
BBR  2024 Summer Sessions Interview TrainingBBR  2024 Summer Sessions Interview Training
BBR 2024 Summer Sessions Interview Training
 
The basics of sentences session 6pptx.pptx
The basics of sentences session 6pptx.pptxThe basics of sentences session 6pptx.pptx
The basics of sentences session 6pptx.pptx
 
How to Setup Warehouse & Location in Odoo 17 Inventory
How to Setup Warehouse & Location in Odoo 17 InventoryHow to Setup Warehouse & Location in Odoo 17 Inventory
How to Setup Warehouse & Location in Odoo 17 Inventory
 
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
 
The History of Stoke Newington Street Names
The History of Stoke Newington Street NamesThe History of Stoke Newington Street Names
The History of Stoke Newington Street Names
 
PCOS corelations and management through Ayurveda.
PCOS corelations and management through Ayurveda.PCOS corelations and management through Ayurveda.
PCOS corelations and management through Ayurveda.
 
Main Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docxMain Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docx
 
How to Fix the Import Error in the Odoo 17
How to Fix the Import Error in the Odoo 17How to Fix the Import Error in the Odoo 17
How to Fix the Import Error in the Odoo 17
 
World environment day ppt For 5 June 2024
World environment day ppt For 5 June 2024World environment day ppt For 5 June 2024
World environment day ppt For 5 June 2024
 
Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...
Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...
Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...
 
Walmart Business+ and Spark Good for Nonprofits.pdf
Walmart Business+ and Spark Good for Nonprofits.pdfWalmart Business+ and Spark Good for Nonprofits.pdf
Walmart Business+ and Spark Good for Nonprofits.pdf
 
Pengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptxPengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptx
 
Digital Artifact 1 - 10VCD Environments Unit
Digital Artifact 1 - 10VCD Environments UnitDigital Artifact 1 - 10VCD Environments Unit
Digital Artifact 1 - 10VCD Environments Unit
 
PIMS Job Advertisement 2024.pdf Islamabad
PIMS Job Advertisement 2024.pdf IslamabadPIMS Job Advertisement 2024.pdf Islamabad
PIMS Job Advertisement 2024.pdf Islamabad
 
Digital Artefact 1 - Tiny Home Environmental Design
Digital Artefact 1 - Tiny Home Environmental DesignDigital Artefact 1 - Tiny Home Environmental Design
Digital Artefact 1 - Tiny Home Environmental Design
 
Community pharmacy- Social and preventive pharmacy UNIT 5
Community pharmacy- Social and preventive pharmacy UNIT 5Community pharmacy- Social and preventive pharmacy UNIT 5
Community pharmacy- Social and preventive pharmacy UNIT 5
 

Introduction to BioNLP and its applications