摘要: External-Attention-tensorflow(点击查看代码) 🍀 Tensorflow implementation of various Attention Mechanisms, which is helpful to further understand papers.⭐⭐⭐ 阅读全文
posted @ 2022-06-21 16:00 小筱痕 阅读(370) 评论(0) 推荐(1) 编辑
摘要: 确保服务器上启用了X11Forwarding:在/etc/ssh/sshd_config设置中 X11Forwarding yes X11DisplayOffset 10 X11UseLocalhost no 在客户端(我的MacOS):在~/.ssh/config写入 ForwardX11 yes 阅读全文
posted @ 2022-07-18 16:52 小筱痕 阅读(191) 评论(0) 推荐(0) 编辑
摘要: # move n files from dir1 to dir2 ls -Q dir1 | head -n | xargs -i mv dir1/{} dir2/ 例子: $ tree -d . ├── annotations ├── train #40,000items └── val #0ite 阅读全文
posted @ 2022-07-18 15:29 小筱痕 阅读(779) 评论(0) 推荐(0) 编辑
摘要: 作者:Samyam Rajbhandari*, Jeff Rasley*, Olatunji Ruwase, Yuxiong He {samyamr, jerasley, olruwase, yuxhe}@microsoft.com 核心思想 类似参数服务器思想:当你的模型大到一个计算单元放不下的时 阅读全文
posted @ 2022-06-17 15:20 小筱痕 阅读(171) 评论(0) 推荐(0) 编辑
摘要: 格式 每次提交,Commit message 都包括三个部分 header , body , footer <type>(<scope>): <subject> <BLANK LINE> <body> <BLANK LINE> <footer> 其中,header 是必须的,body 和 foote 阅读全文
posted @ 2022-06-13 12:10 小筱痕 阅读(578) 评论(0) 推荐(0) 编辑
摘要: 第一种:lsof命令 lsof(list open files)是一个列出当前系统打开文件的工具。 lsof 可查看端口占用情况 lsof -i:端口号 第二种:netstat -tunlp命令 netstat -tunlp 用于显示 tcp,udp 的端口和进程等相关情况。 netstat -nl 阅读全文
posted @ 2022-06-11 23:08 小筱痕 阅读(330) 评论(0) 推荐(0) 编辑
摘要: du -sh *也会列出当前文件夹下所有文件对应的大小 【把*替换为具体的文件名,会给出具体文件的大小】 阅读全文
posted @ 2022-03-14 10:49 小筱痕 阅读(220) 评论(1) 推荐(0) 编辑
摘要: nethogs使用,按进程实时统计网络带宽利用率(推荐) 命令用法: 1、设置5秒钟刷新一次,通过-d来指定刷新频率:nethogs -d 5 2、监视eth0网络带宽 :nethogs eth0 3、同时监视eth0和eth1接口 : nethogs eth0 eth1交互命令:以下是NetHog 阅读全文
posted @ 2022-03-10 10:34 小筱痕 阅读(137) 评论(0) 推荐(0) 编辑
摘要: class suppress_stdout_stderr(object): ''' A context manager for doing a "deep suppression" of stdout and stderr in Python, i.e. will suppress all prin 阅读全文
posted @ 2022-02-18 11:24 小筱痕 阅读(480) 评论(0) 推荐(0) 编辑
摘要: 图像质量评估IQAtriq和hyperIQA个人理解 triq Junyong You1, Jari Korhonen2 作者单位:1. 挪威研究中心; 2. 中国深圳深圳大学 方法 解决问题:transformer或者Vit不可以输入不同尺度的图像问题。 解决方式:Feature projecti 阅读全文
posted @ 2022-01-18 17:05 小筱痕 阅读(957) 评论(0) 推荐(0) 编辑