-
Notifications
You must be signed in to change notification settings - Fork 274
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from wannaphongcom/develop
Update to PyThaiNLP 1.1
- Loading branch information
Showing
42 changed files
with
398 additions
and
252 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
python setup.py sdist | ||
python setup.py bdist_wheel |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,17 @@ | ||
# -*- coding: utf-8 -*- | ||
from __future__ import absolute_import | ||
from __future__ import unicode_literals | ||
from __future__ import print_function | ||
from __future__ import division | ||
from future import standard_library | ||
standard_library.install_aliases() | ||
# -*- coding: utf-8 -*- | ||
from __future__ import absolute_import,unicode_literals | ||
__author__ = 'Wannaphong Phatthiyaphaibun' | ||
__email__ = '[email protected]' | ||
__version__ = '1.0.0' | ||
__version__ = '1.1' | ||
from pythainlp.romanization import * | ||
from pythainlp.segment import * | ||
from pythainlp.segment import * # เตรียมลบออก 1 | ||
from pythainlp.tokenize import * # แทนที่ 1 | ||
from pythainlp.rank import * | ||
from pythainlp.change import * | ||
from pythainlp.number import * | ||
from pythainlp.date import * | ||
from pythainlp.postaggers import * | ||
from pythainlp.postaggers import * # เตรียมลบออก 2 | ||
from pythainlp.tag import * # แทนที่ 2 | ||
from pythainlp.collation import * | ||
from pythainlp.spell import * | ||
from pythainlp.spell import * | ||
from pythainlp.test import * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# -*- coding: utf-8 -*- | ||
from __future__ import absolute_import | ||
# TODO |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
Copyright: 2011 NICT | ||
|
||
Thai WordNet | ||
|
||
This software and database is being provided to you, the LICENSEE, by | ||
the National Institute of Information and Communications Technology | ||
under the following license. By obtaining, using and/or copying this | ||
software and database, you agree that you have read, understood, and | ||
will comply with these terms and conditions: | ||
|
||
Permission to use, copy, modify and distribute this software and | ||
database and its documentation for any purpose and without fee or | ||
royalty is hereby granted, provided that you agree to comply with | ||
the following copyright notice and statements, including the | ||
disclaimer, and that the same appear on ALL copies of the software, | ||
database and documentation, including modifications that you make | ||
for internal use or for distribution. | ||
|
||
Thai WordNet Copyright 2011 by the National Institute of | ||
Information and Communications Technology (NICT). All rights | ||
reserved. | ||
|
||
THIS SOFTWARE AND DATABASE IS PROVIDED "AS IS" AND NICT MAKES NO | ||
REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. BY WAY OF EXAMPLE, | ||
BUT NOT LIMITATION, NICT MAKES NO REPRESENTATIONS OR WARRANTIES OF | ||
MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE | ||
OF THE LICENSED SOFTWARE, DATABASE OR DOCUMENTATION WILL NOT INFRINGE | ||
ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS. | ||
|
||
The name of the National Institute of Information and Communications | ||
Technology may not be used in advertising or publicity pertaining to | ||
distribution of the software and/or database. Title to copyright in | ||
this software, database and any associated documentation shall at all | ||
times remain with National Institute of Information and Communications | ||
Technology and LICENSEE agrees to preserve same. |
Oops, something went wrong.