Skip to content

Commit d8d2159

Browse files
authored
GH-233: add lang_detect pipeline (#736)
1 parent 8fee5e9 commit d8d2159

File tree

5 files changed

+59
-8
lines changed

5 files changed

+59
-8
lines changed
+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
on:
2+
pull_request:
3+
branches: [ main ]
4+
types:
5+
- labeled
6+
- synchronize
7+
8+
jobs:
9+
ci-langdetect:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Get PR Labels
13+
env:
14+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
15+
run: |
16+
PR_LABELS=$(gh pr view https://github.com/${{ github.repository }}/pull/${{ github.event.pull_request.number }} --json labels --jq '[.labels[].name]')
17+
echo "$PR_LABELS"
18+
echo "PR_LABELS=$PR_LABELS" >> $GITHUB_ENV
19+
- name: Checkout
20+
if: contains(env.PR_LABELS, 'ci-langdetect')
21+
uses: actions/checkout@v2
22+
- name: Set up Python 3.7
23+
if: contains(env.PR_LABELS, 'ci-langdetect')
24+
uses: actions/setup-python@v2
25+
with:
26+
python-version: 3.7
27+
- name: Install dependencies
28+
if: contains(env.PR_LABELS, 'ci-langdetect')
29+
run: |
30+
python -m pip install --upgrade pip
31+
pip install pytest tox
32+
- name: Run Test
33+
if: contains(env.PR_LABELS, 'ci-langdetect')
34+
run: |
35+
tox -e langdetect

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -304,13 +304,13 @@ Lang Detect API. Thanks to awesome work from [FastText](https://fasttext.cc/docs
304304
Install extend dependencies and models
305305

306306
```bash
307-
$ pip install underthesea[lang-detect]
307+
$ pip install underthesea[langdetect]
308308
```
309309

310310
Usage examples in script
311311

312312
```python
313-
>>> from underthesea.pipeline.lang_detect import lang_detect
313+
>>> from underthesea import lang_detect
314314

315315
>>> lang_detect("Cựu binh Mỹ trả nhật ký nhẹ lòng khi thấy cuộc sống hòa bình tại Việt Nam")
316316
vi

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@
4343
'prompt': [
4444
'openai'
4545
],
46-
'lang-detect': [
47-
'fasttext '
46+
'langdetect': [
47+
'fasttext'
4848
]
4949
}
5050
setup(

tox.ini

+19-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = traditional,deep,prompt
2+
envlist = traditional,deep,prompt,langdetect
33

44
[testenv:traditional]
55
basepython = python3.7
@@ -62,8 +62,23 @@ setenv =
6262
OPENAI_API_KEY = {env:OPENAI_API_KEY:}
6363

6464
commands =
65-
; Modules with deep learning
65+
; Modules with prompt
6666
pip install -e .[prompt]
6767

68-
; ner module
69-
python -m unittest tests.pipeline.classification.test_prompt
68+
; prompt module
69+
python -m unittest tests.pipeline.classification.test_prompt
70+
71+
[testenv:langdetect]
72+
basepython = python3.7
73+
deps=
74+
pip>=20.3
75+
76+
setenv =
77+
PYTHONPATH = {toxinidir}:{toxinidir}/underthesea
78+
79+
commands =
80+
; install dependencies
81+
pip install -e .[langdetect]
82+
83+
; lang_detect module
84+
python -m unittest tests.pipeline.lang_detect.test_lang_detect

underthesea/cli.py

+1
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@ def info():
9696
print(" classify : OK")
9797
print(" sentiment : OK")
9898
print(" dependency_parse : OK")
99+
print(" lang_detect : OK")
99100
print(" resources : OK")
100101

101102

0 commit comments

Comments
 (0)