1. 在執行程式時,報錯如下:
usage: run.py [-h] --model MODEL [--embedding EMBEDDING] [--word WORD]
run.py: error: the following arguments are required: --model
答: 出現這個問題是因為對於程式碼不夠理解,對於在程式碼包中有多個models時,舉例如下:
不同的model類似於定義了不同的函式,但是在run.py檔案中到底呼叫哪一個,是需要在終端中,進入到對應的資料夾路徑,然後明確說明的,即:
python run.py --model xxx
xxx是具體想執行的某一個model。而對於只有一個model的程式,則可以不用說明。
2. 在終端透過命令端切換路徑
答:
cd
進入下一級資料夾
cd ..
返回上一級資料夾
3. 在pycharm中執行ipynb檔案
答: 安裝jupyter notebook外掛(plugins)。
(後續內容待補充)