摘要: https://github.com/fatedier/frp frp is a fast reverse proxy that allows you to expose a local server located behind a NAT or firewall to the Internet. 阅读全文
posted @ 2024-05-07 17:32 zxcayumi 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 对于需要以服务形式运行的程序,使用systemd来设置开机自启动是一种更专业的方法。systemd是现代Linux系统用来初始化系统资源、管理服务的系统和服务管理器。 创建服务文件:在/etc/systemd/system/目录下创建一个.service文件,例如myapp.service。编辑服务 阅读全文
posted @ 2024-05-07 17:31 zxcayumi 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 修改了本地的代码,然后使用: git add file git commit -m '修改原因' 执行commit后,还没执行push时,想要撤销这次的commit,该怎么办? 解决方案: 使用命令: git reset --soft HEAD^ 这样就成功撤销了commit,如果想要连着add也撤 阅读全文
posted @ 2023-01-11 00:21 zxcayumi 阅读(417) 评论(0) 推荐(0) 编辑
摘要: python中采用配置文件实现方法 阅读全文
posted @ 2022-10-31 20:40 zxcayumi 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 变分自编码器Pytorch实现。 1 class VAE(nn.Module): 2 def __init__(self): 3 super(VAE, self).__init__() 4 5 self.fc1 = nn.Linear(784, 400) 6 self.fc21 = nn.Linea 阅读全文
posted @ 2022-09-25 13:04 zxcayumi 阅读(195) 评论(0) 推荐(0) 编辑
摘要: 随着 .NET 5 正式版的发布,越来越多的人开始向 .NET 5 、.NET Core 平台迁移。尽管微软已经在 2020 年 1 月 14 日停止了对 Windows 7 的支持,但仍有大批客户的操作系统对 Windows 7 恋恋不舍。为此,我们需要解决 .NET 5 运行时(Runtime) 阅读全文
posted @ 2022-09-12 09:06 zxcayumi 阅读(1202) 评论(0) 推荐(0) 编辑
摘要: 文本结构: https://englishforkids.tutykid.com/blog/seven-types-of-text-structure/ 阅读全文
posted @ 2022-07-20 22:17 zxcayumi 阅读(19) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/marmove/rss/list?spm=1001.2014.3001.5494 链接: https://pan.baidu.com/s/1H2mxeRMui1k1VySI80EZaQ 提取码: yaij 阅读全文
posted @ 2022-04-27 15:06 zxcayumi 阅读(74) 评论(0) 推荐(0) 编辑
摘要: 1)Augmenter WordNet (https://github.com/QData/TextAttack) 2)Augmenter Contextual(https://github.com/makcedward/nlpaug) 3)Paraphrase via back translati 阅读全文
posted @ 2022-04-26 23:09 zxcayumi 阅读(49) 评论(0) 推荐(0) 编辑
摘要: google的bert预训练模型: BERT-Large, Uncased (Whole Word Masking): 24-layer, 1024-hidden, 16-heads, 340M parameters BERT-Large, Cased (Whole Word Masking): 2 阅读全文
posted @ 2022-04-26 18:20 zxcayumi 阅读(1526) 评论(0) 推荐(0) 编辑