File tree 11 files changed +23
-28
lines changed
11 files changed +23
-28
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,11 @@ includes:
17
17
dir : try-autogpt/
18
18
optional : true
19
19
20
+ spacy :
21
+ taskfile : try-spacy/
22
+ dir : try-spacy/
23
+ optional : true
24
+
20
25
#
21
26
# global vars: https://taskfile.dev/#/usage?id=variables
22
27
#
Original file line number Diff line number Diff line change 1
1
# python AI(LLM/GPT):
2
2
3
- - AI 相关的生态库 & 项目 验证
3
+ - 人工智能 AI(Artificial Intelligence) 相关的生态库 & 项目 验证
4
+ - 机器学习 ML(Machine Learning) 相关的生态库 & 项目 验证
5
+ - NLP(Natural Language Processing) 相关的生态库 & 项目 验证
6
+ - 语音识别相关的生态库 & 项目 验证
7
+ - 语音合成相关的生态库 & 项目 验证
File renamed without changes.
Original file line number Diff line number Diff line change 15
15
16
16
17
17
tasks :
18
+ poetry :
19
+ aliases : [ 'p', 'pm' ]
20
+ cmds :
21
+ - poetry {{.CLI_ARGS}} # install, update
18
22
19
23
install :
24
+ aliases : [ 'i' ]
20
25
cmds :
21
26
- poetry install
22
27
23
28
add :
29
+ aliases : [ 'a' ]
24
30
cmds :
25
- - poetry add typer[all]
26
- - poetry add spacy[apple] # macos + m1
31
+ - poetry add {{.CLI_ARGS}} # --dev
27
32
28
- add:dev :
33
+ add:all :
34
+ aliases : [ 'aa' ]
29
35
cmds :
30
- - poetry add ${PACKAGE} --dev
36
+ - poetry add typer[all]
37
+ - poetry add spacy[apple] # macos + m1
31
38
32
39
download :
40
+ aliases : [ 'dl' ]
33
41
cmds :
34
42
- poetry run python -m spacy download en_core_web_sm # english
35
43
- poetry run python -m spacy download ja_core_news_sm # japanese
36
44
37
- update :
38
- cmds :
39
- - poetry update
40
-
41
- config :
42
- cmds :
43
- - poetry config virtualenvs.in-project false --local
44
- - poetry config virtualenvs.create false --local
45
-
46
- env :
47
- cmds :
48
- - poetry
49
- - poetry env list
50
- - poetry cache list
51
- - poetry debug info
52
- - poetry debug resolve
53
-
54
-
55
45
run :
46
+ aliases : [ 'r' ]
56
47
cmds :
57
48
- poetry run python src/try_spacy/run01.py
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change @@ -16,11 +16,6 @@ includes:
16
16
dir : try-typer/
17
17
optional : true
18
18
19
- spacy :
20
- taskfile : try-spacy/
21
- dir : try-spacy/
22
- optional : true
23
-
24
19
jieba :
25
20
aliases : [ "j" ]
26
21
taskfile : try-jieba/
You can’t perform that action at this time.
0 commit comments