kongds

Results 44 comments of kongds

I don't run RTE. But i have reproduced STS-B. The result of W1A1 is around 67.0 compared to 71.1 in paper.

It seems that we cannot reproduce the result of STS-B. The settings of STS-B are: https://github.com/facebookresearch/bit/blob/071a9749e024e8e151c55adbeb6ef3aaf5b8a283/utils_glue.py#L689 According to paper, authors use grid searching to get the result of STS-B

Hi, I still can't get the correct result for W1A1 STS-B and don't know why.

感谢关注我们的论文 1. 我们用的100,000的句子是随机抽取的,且这个值计算是根据100,000*100,000的句子对平均而来的。即使存在100个相同主题的句子,这些句子对对于结果的影响也只有千分之一。 2. 虽然使用[cls]也不会存在token bias的问题,但是[cls]主要的问题是没法直接利用原始预训练模型来表示句子表征。prompt和cls最主要的区别是直接利用template来帮助预训练模型表示句子。

Ok, I will take a look. > @kongds Can you help to fix this issue? > > I found when we call `lsp-bridge-popup-complete-menu` in org file, lsp server return candidates'...

This might be a problem with the previous design. If the file is not modified, there might not be a need for completion. If the lsp server is initialized for...

我也有类似的问题 好像是每回`ivy-posframe--display`时都会调用`posframe-show`导致的。所以只在第一次时调用`posframe-show`,就不会闪了。 有闪烁问题的可以试试看下面的代码 ```elisp (defvar ivy-posframe--first-show t) (defun ivy-posframe-cleanup () "Cleanup ivy's posframe." (setq ivy-posframe--first-show t) (when (posframe-workable-p) (posframe-hide ivy-posframe-buffer))) (defun ivy-posframe--display (str &optional poshandler) "Show STR in ivy's posframe...

可能是没法访问github的关系,我这边可以正常登录。可以用proxy试试

因该需要用`lsp-bridge`的这个参数`acm-backend-copilot-network-proxy`来设置,具体可以看帮助 或者用`setenv`也行 ```elisp (setenv "https_proxy" "http://127.0.0.1:7890") (setenv "http_proxy" "http://127.0.0.1:7890") ```