上一页 1 ··· 6 7 8 9 10
摘要: 查看规则 sudo iptables -vnL 封禁单个 IP sudo iptables -I INPUT -s x.x.x.x -j DROP -I 表示插入规则 封禁 IP 段 sudo iptables -I INPUT -s x.x.x.0/24 -j DROP 解禁 IP sudo ip 阅读全文
posted @ 2021-08-19 08:46 麦克斯的园丁 阅读(215) 评论(0) 推荐(0) 编辑
摘要: 无参考图片/视频质量评价(No-Reference Blind Video Quality Assessment) 相关论文 1. VQA_IQA 2. NRVQA 3. NIQE matlab 代码 4. NIQE python 代码 深度学习 deepbiq DIQA VSFA 传统方法 BRI 阅读全文
posted @ 2021-08-05 19:33 麦克斯的园丁 阅读(591) 评论(0) 推荐(0) 编辑
摘要: Nvidia Driver The RTX30-series has the Ampere architecture, therefore it will only work with Driver 450+ versions only. Nvidia CUDA Since we are now r 阅读全文
posted @ 2021-07-18 12:35 麦克斯的园丁 阅读(170) 评论(0) 推荐(0) 编辑
摘要: import os dbtype_list = os.listdir(sql_dir_war) for dbtype in dbtype_list: if os.path.isfile(os.path.join(sql_dir_war,dbtype)): dbtype_list.remove(dbt 阅读全文
posted @ 2021-07-18 12:29 麦克斯的园丁 阅读(427) 评论(0) 推荐(0) 编辑
摘要: 1 .bashrc 文件设置 当linux 代理软件设置好后,我们需要设置命令行代理的连接方式,这样在命令行中的软件才能使用: 设置http/https代理: export https_proxy="127.0.0.1:12333" export http_proxy="127.0.0.1:1233 阅读全文
posted @ 2021-07-18 12:06 麦克斯的园丁 阅读(755) 评论(0) 推荐(0) 编辑
摘要: Ubuntu上一个炫酷的终端程序--guake https://zhuanlan.zhihu.com/p/40684802 在ubuntu 18.04上安装guake非常简单,只需要运行命令: sudo apt install guake 在安装之后,可以对guake进行设置: 1,在终端内部点击右 阅读全文
posted @ 2021-07-16 14:38 麦克斯的园丁 阅读(103) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10