owaiskha9654
commited on
Commit
β’
63efb46
1
Parent(s):
508188d
Update app.py
Browse files
app.py
CHANGED
@@ -75,11 +75,14 @@ examples = [
|
|
75 |
]
|
76 |
|
77 |
title = "Multi Label Classification of Pubmed Articles (Paper Night July Edition at Thoucentric)"
|
78 |
-
description = "The traditional machine learning models give a lot of pain when we do not have sufficient labeled data for the specific task or domain we care about to train a reliable model. Transfer learning allows us to deal with these scenarios by leveraging the already existing labeled data of some related task or domain. We try to store this knowledge gained in solving the source task in the source domain and apply it to our problem of interest. In this work, I have utilized Transfer Learning utilizing
|
79 |
-
|
80 |
-
"Author: Owais Ahmad Data Scientist at <b> Thoucentric </b> <a href=\"https://www.linkedin.com/in/owaiskhan9654/\">Visit Profile</a>
|
|
|
81 |
"Model Trained Kaggle Kernel <a href=\"https://www.kaggle.com/code/owaiskhan9654/multi-label-classification-of-pubmed-articles\">Link</a> <\br> "
|
|
|
82 |
"Kaggle Profile <a href=\"https://www.kaggle.com/owaiskhan9654\">Link</a> <\br> "
|
|
|
83 |
"HuggingFace Model Deployed Repository <a href=\"https://huggingface.co/owaiskha9654/Multi-Label-Classification-of-PubMed-Articles\">Link</a> <\br>"
|
84 |
)
|
85 |
|
@@ -92,7 +95,7 @@ app = gr.Interface(
|
|
92 |
examples=examples,
|
93 |
title=title,
|
94 |
description=description,
|
95 |
-
article=
|
96 |
allow_flagging='never',
|
97 |
analytics_enabled=False,
|
98 |
)
|
|
|
75 |
]
|
76 |
|
77 |
title = "Multi Label Classification of Pubmed Articles (Paper Night July Edition at Thoucentric)"
|
78 |
+
description = "The traditional machine learning models give a lot of pain when we do not have sufficient labeled data for the specific task or domain we care about to train a reliable model. Transfer learning allows us to deal with these scenarios by leveraging the already existing labeled data of some related task or domain. We try to store this knowledge gained in solving the source task in the source domain and apply it to our problem of interest. In this work, I have utilized Transfer Learning utilizing BIO BERT model to fine tune on Pubmed MultiLabel classification Dataset."
|
79 |
+
text1 = (
|
80 |
+
"Author: Owais Ahmad Data Scientist at <b> Thoucentric </b> <a href=\"https://www.linkedin.com/in/owaiskhan9654/\">Visit Profile</a> ")
|
81 |
+
text2 = (
|
82 |
"Model Trained Kaggle Kernel <a href=\"https://www.kaggle.com/code/owaiskhan9654/multi-label-classification-of-pubmed-articles\">Link</a> <\br> "
|
83 |
+
text3 = (
|
84 |
"Kaggle Profile <a href=\"https://www.kaggle.com/owaiskhan9654\">Link</a> <\br> "
|
85 |
+
text4 = (
|
86 |
"HuggingFace Model Deployed Repository <a href=\"https://huggingface.co/owaiskha9654/Multi-Label-Classification-of-PubMed-Articles\">Link</a> <\br>"
|
87 |
)
|
88 |
|
|
|
95 |
examples=examples,
|
96 |
title=title,
|
97 |
description=description,
|
98 |
+
article=[text1,text2,text3,text4],
|
99 |
allow_flagging='never',
|
100 |
analytics_enabled=False,
|
101 |
)
|