ARTS 打卡 week#2
Review:
Paper: paraphrase generation with latent bag of words
https://github.com/FranxYao/dgm_latent_bow
Share:
Useful Linux command:
To count the number of lines, use “wc” with “l” as
To count the number of words, use “wc” with “w” option as
And to count the total number of characters, use “wc” with “c” as
Using wc with no options will get you the counts of bytes, lines, and words (-c, -l and -w option).
head [-n -k ]... [FILE]...
默认是显示开头前10行。
tail用于输出文件尾部的内容,命令用法:
tail [选项] file
,默认显示最后10行。
-f
:实时刷新文件尾部信息,常用于日志信息监测。
评论