原创 文本摘要

當前ROUGE和MENTOR的侷限性: 他們只評估內容選擇,不考慮其他質量方面,如流利性,語法性,連貫性等。 爲了評估內容選擇,他們主要依賴於詞彙重疊,儘管抽象概要可以表達相同的內容作爲參考而沒有任何詞彙重疊 鑑於摘要的主觀性和註釋

原创 筆記本加裝固態硬盤,安裝Ubuntu

先吐槽一下ubuntu 18.10 之前一直用14.04,感覺14.04的界面很簡潔,使用起來也很流暢,沒啥多餘的操作; 18.10的界面頂欄設計是真的醜,沒有考慮到筆記本佔屏問題,且系統不能設置隱藏(需要安裝額外的插件,hide-

原创 USACO-wormhole

參考:大佬 http://www.itdaan.com/blog/2017/12/24/bfe98fc214c07d61e76dbe9743aa3700.html USACO遇到的第一道磕腦袋題; /* ID: xiao TASK:

原创 USACO-dualpal

/* ID: xiao TASK: dualpal LANG: C++ */ #include <iostream> #include <fstream> #include <string> #include <algorithm>

原创 USACO-transform

/* ID: xiao TASK: transform LANG: C++ */ #include <iostream> #include <fstream> #include <string> using namespace s

原创 生成式文本摘要

[1]《A Neural Attention Model for Abstractive Sentence Summarization》EMNLP-2015 文章地址: https://www.aclweb.org/anthology

原创 USACO-Palindromic Squares

/* ID: xiao TASK: palsquare LANG: C++ */ #include <iostream> #include <fstream> #include <string> #include <algorith

原创 USACO-name that number

/* ID: xiao TASK: namenum LANG: C++ */ #include <iostream> #include <fstream> #include <string> #include <map> #incl

原创 USACO-milk2

/* ID: xiao TASK: milk2 LANG: C++ */ #include <iostream> #include <fstream> #include <algorithm> using namespace std;

原创 USACO-beads

/* ID: xiao TASK: beads LANG: C++ */ #include <iostream> #include <fstream> #include <string> #incl

原创 USACO-friday

/* ID: xiao TASK: friday LANG: C++ */ #include <iostream> #include <fstream> using namespace std;

原创 USACO-gift1

USACO gift1 /* ID: xiao TASK: gift1 LANG: C++ */ #include <iostream> #include <string> #include <fst

原创 錯誤的行爲

非理性行爲清單 《Judgement under Uncertainty: Heuristics and Biases 》文章認爲人類的時間和腦力是有限的,所以人們會使用簡單的啓發法做出判斷。 啓發法是什麼?啓發法大概就是經驗法則。當

原创 函數

KNN 主要記錄一些函數的使用方法。 shape : 用來計算矩陣行列數 >>> c = zeros((3,2)) >>> c array([[ 0., 0.], [ 0., 0.], [ 0.,

原创 Tensorflow

tf.train.Supervisor https://www.cnblogs.com/zhouyang209117/p/7088051.html