發表文章

目前顯示的是 2023的文章

[筆記] macro, micro 與 binary 不同版本的 acc., precision, recall, fscore 計算方法

圖片
使用套件:  https://scikit-learn.org/stable/modules/generated/sklearn.metrics.precision_recall_fscore_support.html 這篇舉例說明頗清楚: https://blog.csdn.net/jmh1996/article/details/114935105 我也來舉個例子: Notations gt: ground truth pred: predict result 檢測陽性,正樣本 + : label 為 1 檢測陰性,負樣本 - : label 為 0 看表格解釋

[筆記] 使用 pygsheets 記錄實驗數據到 google sheet

圖片
  設定 Google Drive API 去 google cloud console 上建一個專案 https://console.cloud.google.com/ 接著在專案裡面搜尋 Google Drive API 接著啟用它

[Debug] 使用 Python argparse 遇到 error: unrecognized arguments

圖片
情境說明 我在  main.py  裡面定義了許多 argument 參數例如長這樣 然後我的  cmd.sh  長這樣 python main.py --model GaussianCopula \ --input_path data/train_raw.csv \ --output_dir data/ \ --num_rows 1000 \ --save_output \ --gen_dim 23 45 24 99