Learning Temporal Embeddings for Complex Video Analysis Note here: it's a review note on novel work from Feifei-Li's group about video representations, published on ICCV2015. Link: http://www.cv-foundation.org/openaccess/content_iccv_2015/html/Ramana…
Describing Videos by Exploiting Temporal Structure Note here: it's a learning note on the topic of video representations. Link: http://120.52.73.75/arxiv.org/pdf/1502.08029.pdf Motivation: They argue that there are two categories of temporal structur…
最近在看机器学习,看能否根据已有的历史来预测Hardware的故障发生概率.下文是一篇很有意思的文章,转自 http://numenta.org/htm.html. NuPIC是一个开源项目,用来实现HTM. ------------------- There are many things humans find easy to do that computers are currently unable to do. Tasks such as visual pattern recognit…
Unsupervised Learning of Spatiotemporally Coherent Metrics Note here: it's a learning note on the topic of unsupervised learning on videos, a novel work published by Yann LeCun's group. Link: http://arxiv.org/pdf/1412.6056.pdf Motivation: Temporal co…
参考链接 Technote (troubleshooting) Problem(Abstract) Error [IBM][CLI Driver][DB2/6000] SQL0437W Performance for this complex querymay be sub-optimal.Reason Code "1". SQLSTATE=01602EXPENG-E-TYP1, The operation pack. is invalid for data type ,binary.…
A Discriminative CNN Video Representation for Event Detection Note here: it's a learning note on the topic of video representation, based on the paper below. Link: http://arxiv.org/pdf/1411.4006v1.pdf Motivation: The use of improved Dense Trajectorie…
Unsupervised Visual Representation Learning by Context Prediction Note here: it's a learning note on unsupervised learning model from Prof. Gupta's group. Link: http://120.52.73.9/www.cv-foundation.org/openaccess/content_iccv_2015/papers/Doersch_Unsu…
Unsupervised Learning of Visual Representations using Videos Note here: it's a learning note on Prof. Gupta's novel work published on ICCV2015. It's really exciting to know how unsupervised learning method can contribute to learn visual representatio…
好久没有写博客了,好惭愧啊……虽然这是一道弱题但还是写一下吧. 这道题目的思路应该说是很容易形成:字符串+最大值?自然联想到学过的AC自动机与DP.对于给定的字符串建立出AC自动机,dp状态dp[i][j]则表示第i位(我们求的字符串的第i位),匹配到自动机的第j位所能获得的最大值.只需要沿儿子节点与fail指针转移即可. #include <bits/stdc++.h> using namespace std; #define maxn 1005 int n, m, ans, cnt; ],…
Unsupervised Learning of Video Representations using LSTMs Note here: it's a learning notes on new LSTMs architecture used as an unsupervised learning way of video representations. (More unsupervised learning related topics, you can refer to: Learnin…