Skip to content

Commit

Permalink
Minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Aitor González committed Jan 17, 2019
1 parent bd08337 commit c39dd98
Show file tree
Hide file tree
Showing 12 changed files with 639 additions and 5 deletions.
11 changes: 11 additions & 0 deletions Med_Tagger/.idea/CNIO_Tagger.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions Med_Tagger/.idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions Med_Tagger/.idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions Med_Tagger/.idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

244 changes: 244 additions & 0 deletions Med_Tagger/.idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

84 changes: 84 additions & 0 deletions Med_Tagger/Example.ipynb
@@ -0,0 +1,84 @@
{
"cells": [
{
"cell_type": "code",
"execution_count": 1,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"from Med_Tagger import Med_Tagger\n"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"tag = Med_Tagger()"
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"[('Este', 'este', 'PD0MS000', '0.0314658'),\n",
" ('es', 'ser', 'VSIP3S0', '1'),\n",
" ('un', 'uno', 'DI0MS0', '0.987295'),\n",
" ('texto', 'texto', 'NCMS000', '1'),\n",
" ('de', 'de', 'SPS00', '0.999984'),\n",
" ('prueba', 'prueba', 'NCFS000', '0.972603'),\n",
" ('.', '.', 'Fp', '1')]"
]
},
"execution_count": 3,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"tag.parse('Este es un texto de prueba.')"
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"del(tag)"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.6.3"
}
},
"nbformat": 4,
"nbformat_minor": 2
}

0 comments on commit c39dd98

Please sign in to comment.