原创 Dialog System與NLP的一些工具

【1】《Dialog System 總結》 Rachel-Zhang https://blog.csdn.net/abcjennifer/article/details/53428053 【2】《awesome-questi

原创 安裝Brat標記工具

0. 引入 0.0 問題 按照官網來安裝,運行standalone.py,總是在瀏覽器上下載文件,並沒有顯示達到預期。未找到原因,如有知道,請留言賜教。 鑑於這個問題沒有解決,另尋新路。安裝了httpd,把brat佈署其中,可運行

原创 DL--Pytorch入門小例:線性迴歸模型

對於Pytorch,來一個感性開始,做一個最簡單的模型,讓pytorch跑起來。第一步是代碼;第二步看結果。 1. 代碼 # -*- coding: utf-8 -*- # @Time : 2020/3/5 16:43 #

原创 關於pytorch的調試工具之torchsnooper

1. 代碼 import torch def my_fun(mask, x): y = torch.zeros(5, 6) y.masked_fill_(mask, x) return y x = [5,

原创 關於pytorch用tensor索引另一個tensor問題

1. 問題 在項目中關於如下代碼出現問題: def fun1(): start_transitions = torch.nn.Parameter(torch.empty(5)) torch.nn.init.unif

原创 DM13---結合Scikit-learn介紹幾種常用的特徵選擇方法

原文地址:https://www.cnblogs.com/hhh5460/p/5186226.html 作者:Edwin Jarvis 特徵選擇(排序)對於數據科學家、機器學習從業者來說非常重要。好的特徵選擇能夠提升模型的性能,更

原创 DM08--不平衡數據分類算法介紹與比較

轉自:http://blog.csdn.net/a358463121/article/details/52304670 原文:https://arxiv.org/pdf/1608.06048.pdf 介紹 在數據挖掘中,經常

原创 一篇BiLSTM-CRF比較易懂的文章

轉自:https://createmomo.github.io/ [2017] CRF Layer on the Top of BiLSTM (BiLSTM-CRF) CRF Layer on the Top of BiLSTM

原创 DM11---數據可視化[圖片數字]

基於TSNE可視化 例子01: import matplotlib import matplotlib.pyplot as plt import pandas as pd import seaborn as sns from

原创 機器學習--論文INFO

1.歷屆NIPS論文【神經信息處理系統大會(Conference and Workshop on Neural Information Processing Systems)】 http://papers.nips.cc/

原创 CCF推薦國際學術會議

http://history.ccf.org.cn/sites/ccf/aboutpm.jsp?contentId=2567814757463

原创 DM09---Cox-Box

1. 相關參考內容 CoxBox論文 G.E.P. Box and D.R. Cox, “An Analysis of Transformations”, Journal of the Royal Statistical Soci

原创 NLP|Stanford Parser句法分析標註

詞性解釋 CC: conjunction, coordinatin 表示連詞 CD: numeral, cardinal 表示基數詞 DT: determiner 表示限定詞 EX: existential there 存在句 F

原创 大數據學習[21]---java操作ES一例

一個常用的java操作ES的例子: //GET info/_search //{ // "query": { // "nested": { // "path": "keywords02", // "sc

原创 DM12---xgboost學習

基本資料 論文: https://arxiv.org/abs/1603.02754 原理博客: 《機器學習(四)— 從gbdt到xgboost》 https://www.cnblogs.com/mfryf/p/594681