15 Matching Annotations
  1. Nov 2020
  2. openreview.net openreview.net
    1. BERTScore leverages the pre-trained contextual embeddings from BERT and matches words in candidate and reference sentences by cosine similarity. It has been shown to correlate with human judgment on sentence-level and system-level evaluation. Moreover, BERTScore computes precision, recall, and F1 measure, which can be useful for evaluating different language generation tasks.

      TODO

    1. 领域自适应问题是迁移学习的研究内容之一,它侧重于解决特征空间一致、类别空间一致,仅特征分布不一致的问题。

      对我有用!

    Annotators

    1. Ptr-Nets can be used to learn approximate solutions to three challenginggeometric problems – finding planar convex hulls, computing Delaunay triangu-lations, and the planar Travelling Salesman Problem

      Q:为什么可以解决这么数学的问题

    2. uij=vTtanh(W1ej+W2di)

      这里query是d_i,key是e_j

      不可以拆成 (v^Ttanh(W_1e_j) + v^Ttanh(W_2d_i))

      问: key和query交互是通过非线性函数tanh?

      相关: leakyrelu https://zhuanlan.zhihu.com/p/132497231

      子豪: gat里面那个leakyrelu摘了对性能没有任何影响 也就是说从邻居那里取多少是不用考虑自己特征的 “ https://openreview.net/pdf?id=SkVhlh09tX 可以看看这篇 它做的事情是只用自己的特征来决定从邻居那里去多少 也可以match Transformer的性能 ”

    Annotators

    1. The difficulty of generating1In this paper, we use the termsinstance,sample, andexampleinterchangeably.Decision boundaryAdversarial exampleBorderline instanceFigure 1: A high-level illustration of Deep Decision bound-ary Instance Generation (DeepDIG). For a given pre-traineddeep neural network model and two classessandt, Deep-DIG tries to find instances as close as possible to the decisionboundary between the two classessandt.borderline instances stems from the fact that the input space ofDNNs is of high dimension e.g.,R784in the case of simple grayscaleMNIST images, which makes searching for instances close to thedecision boundary a non-trivial and challenging task.

      怎样衡量“近”

    Annotators