File size: 1,455 Bytes
78ef5ca 90d4346 8fd41c7 90d4346 ec0a533 da9280b 90d4346 da9280b 1c6fce6 da9280b ec0a533 da9280b 04b7860 da9280b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
---
title: README
emoji: π
colorFrom: gray
colorTo: indigo
sdk: static
pinned: false
---
<img src="https://raw.githubusercontent.com/asahi417/tner/master/asset/tner_logo_horizontal.png" alt="" width="150" style="margin-left:'auto' margin-right:'auto' display:'block'"/>
<br>
Hosting models and datasets for <a href="https://github.com/asahi417/tner">T-NER</a>, which is a python tool for language model fine-tuning on named-entity-recognition (NER) implemented in pytorch, available via [pip](https://pypi.org/project/tner/).
Install tner via pip,
<pre class="line-numbers">
<code class="language-python">
pip install tner
</code>
</pre>
and play with NER models.
<pre class="line-numbers">
<code class="language-python">
from tner import TransformersNER
model = TransformersNER('tner/roberta-large-conll2003')
output = model.prediction(["Jacob Collier is a Grammy awarded artist from London"])
</code>
</pre>
See more information bellow.
<ul>
<li> - GitHub: <a href="https://github.com/asahi417/tner">https://github.com/asahi417/tner</a></li>
<li> - Paper (EACL 2021 Demo): <a href="https://aclanthology.org/2021.eacl-demos.7/">https://aclanthology.org/2021.eacl-demos.7/</a></li>
<li> - HuggingFace: <a href="https://huggingface.co/tner">https://huggingface.co/tner</a></li>
<li> - PyPI: <a href="https://pypi.org/project/tner">https://pypi.org/project/tner</a></li>
</ul>
|