Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
combo
Manage
Activity
Members
Labels
Plan
Issues
20
Issue boards
Milestones
Wiki
Redmine
Code
Merge requests
2
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Syntactic Tools
combo
Commits
e9b1721f
Commit
e9b1721f
authored
3 years ago
by
martynawiacek
Committed by
Łukasz Pszenny
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Add try/catch clause for sentences with large number of wordpieces.
parent
f39ffe68
Branches
Branches containing commit
Tags
Tags containing commit
1 merge request
!42
Release 1.0.5
Pipeline
#4337
passed with stage
in 6 minutes and 29 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
combo/data/token_indexers/pretrained_transformer_mismatched_indexer.py
+0
-2
0 additions, 2 deletions
...ken_indexers/pretrained_transformer_mismatched_indexer.py
combo/predict.py
+7
-1
7 additions, 1 deletion
combo/predict.py
with
7 additions
and
3 deletions
combo/data/token_indexers/pretrained_transformer_mismatched_indexer.py
+
0
−
2
View file @
e9b1721f
...
...
@@ -4,8 +4,6 @@ from allennlp import data
from
allennlp.data
import
token_indexers
,
tokenizers
,
IndexedTokenList
,
vocabulary
from
overrides
import
overrides
from
typing
import
List
@data.TokenIndexer.register
(
"
pretrained_transformer_mismatched_fixed
"
)
class
PretrainedTransformerMismatchedIndexer
(
token_indexers
.
PretrainedTransformerMismatchedIndexer
):
...
...
This diff is collapsed.
Click to expand it.
combo/predict.py
+
7
−
1
View file @
e9b1721f
import
logging
import
os
import
sys
from
typing
import
List
,
Union
,
Dict
,
Any
import
numpy
as
np
...
...
@@ -48,7 +49,12 @@ class COMBO(predictor.Predictor):
:param sentence: sentence(s) representation
:return: Sentence or List[Sentence] depending on the input
"""
return
self
.
predict
(
sentence
)
try
:
return
self
.
predict
(
sentence
)
except
Exception
as
e
:
logger
.
error
(
e
)
logger
.
error
(
'
Exiting.
'
)
sys
.
exit
(
1
)
def
predict
(
self
,
sentence
:
Union
[
str
,
List
[
str
],
List
[
List
[
str
]],
List
[
data
.
Sentence
]]):
if
isinstance
(
sentence
,
str
):
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment