If you need to connect to an Amazon EC2 instance without an …
2023
[Python] Selenium Little Known Tips 你可能不知道的 Selenium 技巧
There are some Selenium functions or techniques that I haven’t used before and I don’t know how to write them like this, or they are less intuitive; because they are all fragmented, I will organize them into this article. 有些 Selenium 功能或技巧,沒用過不知道應該要這樣寫,或是比較不直覺的做法;因為都比較零碎,我將它整理到這篇。
文本翻譯指標介紹:BLUE
BLEU(Bilingual Evaluation Understudy)是一種用於機器翻譯品質評估的評估指標。BLEU …
文本摘要指標介紹:ROUGE
ROUGE(Recall-Oriented Understudy for Gisting Evaluation)是一種評 …
【論文筆記】DCFEE:基於自動標記訓練數據的文檔級中文金融事件抽取系統
抽取金融事件能幫助用戶獲得競爭對手的戰略,預測股票市場做出正確的投資決策。舉例來說,股權凍結事件將對公司產生不利影響,股票持有者應迅速判斷避險
使用 OpenAI Finetune API 微調出自己的模型(附程式碼)
今天這篇要教大家如何使用 OpenAI Finetune API 微調出自己的模型。 想必大家都學會使用網頁版 Chat …
[PyTorch] 使用 torch.distributed 在單機多 GPU 上進行分散式訓練
Finetune 語言模型所需要的 GPU memory 比較多,往往會需要我們能夠利用到多顆 GPU 的資源。今天這篇文章會說明 DataParallel 和 DistributedDataParallel + DistributedSampler 兩種進行模型分散式訓練的方式。