zhanglinfeng1997 / Sentiment-Analysis-via-GCN

Chinese text sentiment analysis via Graph Convolution Neural Networks
49 stars 13 forks source link

数据问题 #2

Open feileyu opened 4 years ago

feileyu commented 4 years ago

请问在百度云盘下载的数据怎么是乱码呀?原来是什么编码的?

zhanglinfeng1997 commented 4 years ago

那个数据是已经处理后的,用二进制保存后的数据,包括文本,以及词之间的关系。 读取数据的方法可以参考我们的训练代码。

------------------ 原始邮件 ------------------ 发件人: "feileyu"<notifications@github.com>; 发送时间: 2020年3月28日(星期六) 下午5:14 收件人: "zhanglinfeng1997/Sentiment-Analysis-via-GCN"<Sentiment-Analysis-via-GCN@noreply.github.com>; 抄送: "Subscribed"<subscribed@noreply.github.com>; 主题: [zhanglinfeng1997/Sentiment-Analysis-via-GCN] 数据问题 (#2)

请问在百度云盘下载的数据怎么是乱码呀?原来是什么编码的?

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub, or unsubscribe.

feileyu commented 4 years ago

这样啊,感谢

qojjs commented 2 years ago

请问在哪里可以看到数据不同维度代表的含义呢?看了论文的解释但是维度数据有点对不上

qojjs commented 2 years ago

或者能提供一下语句预处理的代码吗 非常感谢

jiangguangjie commented 2 years ago

我下载的也是乱码 怎么处理的呢?上面说到用那个文本保存后的数据是什么意思呀

17866633816 commented 1 year ago

请问代码里的那个百分位池化的方法为什么没有调用呢? 我发现删掉这个给方法对模型也没有什么影响 def kmax_pooling(x, dim, k): index = x.topk(k, dim=dim)[1].sort(dim=dim)[0] return x.gather(dim, index)