Skip to content

Commit 4c6a0ad

Browse files
authored
Merge pull request #129 from bact/dev
Removed similar or confusing documentation files
2 parents ec914f8 + e6ef72a commit 4c6a0ad

File tree

11 files changed

+123
-368
lines changed

11 files changed

+123
-368
lines changed

AUTHORS.rst

Lines changed: 0 additions & 34 deletions
This file was deleted.

CONTRIBUTING.md

Lines changed: 37 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,18 @@ Hi! Thanks for your interest in contributing to [PyThaiNLP](https://github.com/P
44
In this document we'll try to summarize everything that you need to know to
55
do a good job.
66

7-
## Git
7+
## Contributing to Code and Documentation
88

99
### Git
1010

11-
We use [Git](http://git-scm.com/) as our [version control
12-
system](http://en.wikipedia.org/wiki/Revision_control), so the best way to
13-
contribute is to learn how to use it and put your changes on a Git repository.
11+
We use [Git](http://git-scm.com/) as our [version control system](http://en.wikipedia.org/wiki/Revision_control),
12+
so the best way to contribute is to learn how to use it and put your changes on a Git repository.
1413
There's a plenty of documentation about Git -- you can start with the [Pro Git
1514
book](http://git-scm.com/book/).
1615

17-
### Forks + GitHub Pull requests
16+
### Forks + GitHub Pull Requests
1817

19-
We use the famous
20-
[gitflow](http://nvie.com/posts/a-successful-git-branching-model/) to manage our
21-
branches.
18+
We use the famous [gitflow](http://nvie.com/posts/a-successful-git-branching-model/) to manage our branches.
2219

2320
## Code Guidelines
2421

@@ -35,11 +32,40 @@ branches.
3532
[GitHub issue system](tps://github.com/wannaphongcom/pythainlp/));
3633
- Run all tests before pushing (just execute `tox`) so you will know if your
3734
changes broke something;
38-
- Try to write both Python 2 and Python3-friendly code so won't be a pain for
39-
us to support both versions.
35+
4036

4137
# Discussion
4238

43-
https://www.facebook.com/groups/thainlp and https://github.com/wannaphongcom/pythainlp/issues
39+
- Facebook group: https://www.facebook.com/groups/thainlp
40+
- GitHub issues: https://github.com/wannaphongcom/pythainlp/issues
4441

4542
Happy hacking! (;
43+
44+
45+
# Credits
46+
47+
## Development Lead
48+
- Wannaphong Phatthiyaphaibun <wannaphong@kkumail.com>
49+
- Korakot Chaovavanich
50+
- Charin Polpanumas
51+
- Peeradej Tanruangporn
52+
53+
## newmm (onecut), mm, TCC, and Thai Soundex Code
54+
- Korakot Chaovavanich
55+
56+
## Thai2Vec & ulmfit
57+
- Charin Polpanumas
58+
59+
## Docs
60+
- Peeradej Tanruangporn
61+
62+
## Contributors
63+
- See more contributions here https://github.com/wannaphongcom/pythainlp/graphs/contributors
64+
65+
66+
# References
67+
68+
- **[Maximum Matching]** -- Manabu Sassano. Deterministic Word Segmentation Using Maximum Matching with Fully Lexicalized Rules. Retrieved from http://www.aclweb.org/anthology/E14-4016
69+
- **[MetaSound]** -- Snae & Brückner. (2009). Novel Phonetic Name Matching Algorithm with a Statistical Ontology for Analysing Names Given in Accordance with Thai Astrology. Retrieved from https://pdfs.semanticscholar.org/3983/963e87ddc6dfdbb291099aa3927a0e3e4ea6.pdf
70+
- **[Thai Character Cluster]** -- T. Teeramunkong, V. Sornlertlamvanich, T. Tanhermhong and W. Chinnan, “Character cluster based Thai information retrieval,” in IRAL '00 Proceedings of the fifth international workshop on on Information retrieval with Asian languages, 2000.
71+
- เพ็ญศิริ ลี้ตระกูล. การเลือกประโยคสำคัญในการสรุปความภาษาไทย โดยใช้แบบจำลองแบบลำดับชั้น (Selection of Important Sentences in Thai Text Summarization Using a Hierarchical Model). Retrieved from http://digi.library.tu.ac.th/thesis/st/0192/

LICENSE.txt

Lines changed: 0 additions & 211 deletions
This file was deleted.

MANIFEST.in

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
include AUTHORS.rst
2-
include CONTRIBUTING.rst
1+
include CONTRIBUTING.md
32
include LICENSE
4-
include README.rst
3+
include README.md
54

65
recursive-include tests *
76
recursive-exclude * __pycache__
8-
recursive-exclude * *.py[co]
7+
recursive-exclude * *.py[co]
Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88
[![Coverage Status](https://coveralls.io/repos/github/PyThaiNLP/pythainlp/badge.svg?branch=dev)](https://coveralls.io/github/PyThaiNLP/pythainlp?branch=dev)
99
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
1010

11-
12-
1311
PyThaiNLP is a Python library for natural language processing (NLP) of Thai language.
1412

15-
## What's new in PyThaiNLP 1.7 ?
13+
PyThaiNLP features include Thai word and subword segmentations, soundex, romanization, part-of-speech taggers, and spelling corrections.
14+
15+
## What's new in version 1.7 ?
1616

1717
- Deprecate Python 2 support
1818
- Refactor pythainlp.tokenize.pyicu for readability
@@ -22,22 +22,20 @@ PyThaiNLP is a Python library for natural language processing (NLP) of Thai lang
2222
- Add ULMFit utility to PyThaiNLP
2323
- Add Thai romanization model thai2rom
2424
- Retrain POS-tagging model
25-
- Improve word tokenize (newmm,mm) and dict_word_tokenize
25+
- Improved word_tokenize (newmm, mm) and dict_word_tokenize
2626
- Documentation added
2727

2828
## Install
2929

30-
```
30+
```sh
3131
pip install pythainlp
3232
```
3333

34-
**Note for Windows**: marisa-trie wheels can be obtained from https://www.lfd.uci.edu/~gohlke/pythonlibs/#marisa-trie , then install it with pip, for example: `pip install marisa_trie‑0.7.5‑cp36‑cp36m‑win32.whl`
35-
36-
37-
38-
Docs : https://thainlp.org/pythainlp/docs/1.7/
39-
40-
GitHub : https://github.com/PyThaiNLP/pythainlp
34+
**Note for Windows**: `marisa-trie` wheels can be obtained from https://www.lfd.uci.edu/~gohlke/pythonlibs/#marisa-trie
35+
Install it with pip, for example: `pip install marisa_trie‑0.7.5‑cp36‑cp36m‑win32.whl`
4136

42-
Issues : https://github.com/PyThaiNLP/pythainlp/issues
37+
## Links
4338

39+
- Docs: https://thainlp.org/pythainlp/docs/1.7/
40+
- GitHub: https://github.com/PyThaiNLP/pythainlp
41+
- Issues: https://github.com/PyThaiNLP/pythainlp/issues

0 commit comments

Comments
 (0)