SlideShare a Scribd company logo
1 of 32
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 BIONLP APPLICATIONS

Welch Wordifier Bosc2009
Welch Wordifier Bosc2009Welch Wordifier Bosc2009
Welch Wordifier Bosc2009bosc
 
download
downloaddownload
downloadbutest
 
download
downloaddownload
downloadbutest
 
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 resourcesHammad Afzal
 
Introduction to Bioinformatics-1.pdf
Introduction to Bioinformatics-1.pdfIntroduction to Bioinformatics-1.pdf
Introduction to Bioinformatics-1.pdfkigaruantony
 
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 sequencesBITS
 
LECTURE NOTES ON BIOINFORMATICS
LECTURE NOTES ON BIOINFORMATICSLECTURE NOTES ON BIOINFORMATICS
LECTURE NOTES ON BIOINFORMATICSMSCW 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 proteinsPurdue University
 
Greene Bosc2008
Greene Bosc2008Greene Bosc2008
Greene Bosc2008bosc_2008
 
download
downloaddownload
downloadbutest
 
Introduction to Ontologies for Environmental Biology
Introduction to Ontologies for Environmental BiologyIntroduction to Ontologies for Environmental Biology
Introduction to Ontologies for Environmental BiologyBarry Smith
 
Presentation material
Presentation materialPresentation material
Presentation materialbutest
 
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 Genomesmadalladam
 
Biomedical literature mining
Biomedical literature miningBiomedical literature mining
Biomedical literature miningLars Juhl Jensen
 

Similar to BIONLP 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

Roles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceRoles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceSamikshaHamane
 
AmericanHighSchoolsprezentacijaoskolama.
AmericanHighSchoolsprezentacijaoskolama.AmericanHighSchoolsprezentacijaoskolama.
AmericanHighSchoolsprezentacijaoskolama.arsicmarija21
 
MICROBIOLOGY biochemical test detailed.pptx
MICROBIOLOGY biochemical test detailed.pptxMICROBIOLOGY biochemical test detailed.pptx
MICROBIOLOGY biochemical test detailed.pptxabhijeetpadhi001
 
Types of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptxTypes of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptxEyham Joco
 
Hierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of managementHierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of managementmkooblal
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Celine George
 
Painted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of IndiaPainted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of IndiaVirag Sontakke
 
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...JhezDiaz1
 
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxiammrhaywood
 
Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxthorishapillay1
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdfssuser54595a
 
Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...Jisc
 
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdfFraming an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdfUjwalaBharambe
 
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdfLike-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdfMr Bounab Samir
 
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxEPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxRaymartEstabillo3
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentInMediaRes1
 
What is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPWhat is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPCeline George
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxpboyjonauth
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxSayali Powar
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...Marc Dusseiller Dusjagr
 

Recently uploaded (20)

Roles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceRoles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in Pharmacovigilance
 
AmericanHighSchoolsprezentacijaoskolama.
AmericanHighSchoolsprezentacijaoskolama.AmericanHighSchoolsprezentacijaoskolama.
AmericanHighSchoolsprezentacijaoskolama.
 
MICROBIOLOGY biochemical test detailed.pptx
MICROBIOLOGY biochemical test detailed.pptxMICROBIOLOGY biochemical test detailed.pptx
MICROBIOLOGY biochemical test detailed.pptx
 
Types of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptxTypes of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptx
 
Hierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of managementHierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of management
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17
 
Painted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of IndiaPainted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of India
 
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
 
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
 
Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptx
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
 
Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...
 
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdfFraming an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
 
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdfLike-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
 
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxEPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media Component
 
What is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPWhat is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERP
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptx
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
 

BIONLP APPLICATIONS