这是来自谷歌云平台指南上的Python笔记本。
您能向我解释一下如何解释和理解这段代码吗?
%%bash
export PROJECT=$(gcloud config list project --format "value(core.project)")
echo "Your current GCP Project Name is: "$PROJECT
Run Code Online (Sandbox Code Playgroud)
它给出以下输出:
Your current GCP Project Name is: cpb123-123123
Run Code Online (Sandbox Code Playgroud) list(gensim.utils.simple_preprocess("i you he she I it we you they", deacc=True))
Run Code Online (Sandbox Code Playgroud)
结果如下:
['you', 'he', 'she', 'it', 'we', 'you', 'they']
Run Code Online (Sandbox Code Playgroud)
正常吗?有没有跳过的单词?我应该使用另一个标记器吗?
额外问题:“deacc=True”参数是什么意思?