摘要: 1.查看本地环境检查GPU型号 lspci | grep -i nvidia查看linux系统版本 uname -m && cat /etc/redhat-release 禁用nouveau lsmod | grep nouveau #打开如下文件sudo vim /usr/lib/modprobe 阅读全文
posted @ 2024-04-30 16:42 LCarrey 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 数据包封装过程 原文: TLS record size has an important impact on the performance of HTTPS. Here we discuss the effect of record size on data encapsulation, as s 阅读全文
posted @ 2024-03-09 16:48 LCarrey 阅读(3) 评论(0) 推荐(0) 编辑
摘要: TLS解密 参考以下链接:Wireshark 解密 TLS报文_在线tls解密-CSDN博客 总结: 配置环境变量 wireshark首选项配置 TCP 重组 Frame 2700 Frame 2714 分析:Frame 2700 tcp共分8个segment,Frame 2700大小是800byt 阅读全文
posted @ 2024-02-29 21:17 LCarrey 阅读(30) 评论(0) 推荐(0) 编辑
摘要: with open('name.txt', 'r+') as file: lines = file.readlines() file.seek(0) # 将文件指针移回文件开头 file.truncate() # 清空文件内容 for line in lines: new_line = '"' + 阅读全文
posted @ 2023-04-26 14:32 LCarrey 阅读(85) 评论(0) 推荐(0) 编辑
摘要: // ==UserScript== // @name 延时跳转页面示例 // @description 自动延时跳转到指定的一系列页面,页面跳转时间为2秒 // @include * // ==/UserScript== // 指定要跳转的页面 URL 列表 var urls = ["https:/ 阅读全文
posted @ 2023-04-26 14:31 LCarrey 阅读(707) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-03-29 21:48 LCarrey 阅读(74) 评论(0) 推荐(0) 编辑
摘要: 将 lr = scheduler.get_lr() 改为 lr = scheduler.get_last_lr() 阅读全文
posted @ 2021-03-16 21:06 LCarrey 阅读(4750) 评论(0) 推荐(1) 编辑
摘要: https://blog.csdn.net/qq_33209019/article/details/91902042 差分隐私 ADVERSARIAL TRAINING AND PROVABLE DEFENSES:BRIDGING THE GAP provable defenses? certifi 阅读全文
posted @ 2021-03-10 12:50 LCarrey 阅读(107) 评论(0) 推荐(0) 编辑
摘要: (以下内容重新更新,主要讲解FID的意义,为何FID能够表示生成图像的多样性和质量,为什么FID越小,则图像多样性越好,质量也越好) 在计算FID中我们也同样使用inception network网络。我们还是先来简单回顾一下什么是inception network,它就是一个特征提取的深度网络,最 阅读全文
posted @ 2021-03-07 14:09 LCarrey 阅读(1368) 评论(0) 推荐(0) 编辑