Skip to content

Commit

Permalink
Release v1.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
yzhangcs committed Oct 25, 2021
1 parent 2515855 commit 1dc6b4a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

setup(
name='supar',
version='1.1.2',
version='1.1.3',
author='Yu Zhang',
author_email='yzhang.cs@outlook.com',
description='Syntactic/Semantic Parsing Models',
Expand Down
15 changes: 8 additions & 7 deletions supar/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
CRFConstituencyParser, CRFDependencyParser, Parser,
VIConstituencyParser, VIDependencyParser,
VISemanticDependencyParser)
from .structs import (Dependency2oCRF, ConstituencyCRF, DependencyCRF,
ConstituencyLBP, DependencyLBP, SemanticDependencyLBP,
MatrixTree, ConstituencyMFVI, DependencyMFVI,
SemanticDependencyMFVI)
from .structs import (ConstituencyCRF, ConstituencyLBP, ConstituencyMFVI,
Dependency2oCRF, DependencyCRF, DependencyLBP,
DependencyMFVI, LinearChainCRF, MatrixTree,
SemanticDependencyLBP, SemanticDependencyMFVI)

__all__ = ['BiaffineDependencyParser',
'CRFDependencyParser',
Expand All @@ -23,14 +23,15 @@
'DependencyCRF',
'Dependency2oCRF',
'ConstituencyCRF',
'ConstituencyLBP',
'ConstituencyMFVI',
'LinearChainCRF',
'DependencyLBP',
'DependencyMFVI',
'ConstituencyLBP',
'ConstituencyMFVI',
'SemanticDependencyLBP',
'SemanticDependencyMFVI']

__version__ = '1.1.2'
__version__ = '1.1.3'

PARSER = {parser.NAME: parser for parser in [BiaffineDependencyParser,
CRFDependencyParser,
Expand Down

0 comments on commit 1dc6b4a

Please sign in to comment.