Skip to content

Commit

Permalink
Merge pull request #7 from wannaphong/add-word2vec
Browse files Browse the repository at this point in the history
LaoNLP v0.7
  • Loading branch information
wannaphong authored Jul 14, 2022
2 parents d227123 + e3a04db commit 4f7352d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,11 @@ Lao language Natural Language Processing (NLP)

- Word tokenizer
- Sentence tokenizer
- Part-of-speech (new)
- Part-of-speech
- Lao to Thai script
- Thai to Lao script
- Word dictionary
- Word Vector (**New**)

## Install
```
Expand Down Expand Up @@ -46,7 +47,7 @@ or BibTeX entry:
## License

```
Copyright 2020 Wannaphong Phatthiyaphaibun
Copyright 2020 - 2022 Wannaphong Phatthiyaphaibun
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
numpy
pythainlp>=3.0.0
huggingface_hub
gensim
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
with open("README.md","r",encoding="utf-8-sig") as f:
readme = f.read()

requirements = [
"pythainlp>=2.1.0"
]
with open("requirements.txt","r",encoding="utf-8-sig") as f:
requirements = [i.strip() for i in f.readlines()]

setup(
name="LaoNLP",
version="0.6",
version="0.7",
description="Lao Natural Language Processing library",
long_description=readme,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit 4f7352d

Please sign in to comment.