Embarking on a New Journey

Hello, everyone. I apologize for the blog being offline for nearly a month. Recently, the server that my friends and I rented expired, and at that time, I was focused on studying for a language proficiency exam, so I didn’t pay much attention to it. As a result, I lost the most recent few articles. However, I don’t plan to retrieve them now. I am starting anew, and from now on, I will primarily use English for publishing articles to practice my academic writing skills in English.

基于esp8266的小爱同学和app控制的小台灯

流程图

基于pytorch的Mnist手写体识别

腾讯极客技术挑战赛第三期码上种树Writeup

前言第一次参加网安相关的竞赛,种了一百万课数(因为要上课,只做了一天半)。看大佬们都在写Writeup(查了下意思是 ctf(信息安全夺旗赛)中的解题思路),我也来搞一篇,记录一下我的解题思路和学到<的东西(好多东西是第一次见)。

利用WSL在window环境下安装SpiningUp.md

Spining up的官方介绍 本模块包含各种有用的资源,包括: RL术语,各种算法和基本理论的简短介绍, 的文章如何成长为一个RL研究中的作用, 一个组织列表的重要论文组织了主题, 简短的,独立的关键算法实现的文档齐全的代码存储库, 并进行一些热身运动。

使用paddlepaddle实现word2vec模型

背景知识Embeddings Embedding(嵌入)是拓扑学里面的词。 在深度学习中的意思是使用低纬度的的数据表示高纬度的数据。例如,在NLP中,“ I have an apple ”这句话中的每个单词可以分别用4维向量表示。 I [1,0,0,0] have [0,1,0,0] an [0,0,1,0] apple [0,0,0,1] 这种方法叫做word embedding. One-Hot编码one-hot编码是将文本转化成二级制的一种编码。在训练word2vec模型之前,我们需要利用训练数据构建自己的词汇表,在对词汇表进行one-hot编码。

笔记

SpringBoot中静态类调用自动注入的Mapper

问题在静态的方法中使用 Mybatis Mapper, SpringBoot注解@Autowired 是不行的。 解决方法创建一个工具类,并且使用 @PostConstruct 注解 。 该注解会在类加载之前自动执行标识的方法,并在方法中把静态的类赋值给非静态的类。

java

利用csv包读取和写入tsv文件

总结一下tsv文件的操作方法,备忘。 写文件123456import csvwith open('file.tsv', 'w') as f: tsv_w = csv.writer(f, delimiter...

笔记

动物识别专家系统web版|人工智能导论

简单实现。 Demo:https://blog.sunan.me/Animal-identification-expert/ tips:Demo仅仅国外代理可以访问,国内ip自动跳转Coding Github: https://github.com/mofengboy/Animal-identification-expert

chat

Latex实现表格并排

笔记。 Latex 表格并排。 12345678910111213141516171819202122232425262728293031323334353637383940\begin{minipage}{\textw...

tools
12

© 2015 - 2024 | Mr.Su
鲁ICP备15022835号
Powered by Hexo | Theme Stellar
This site is provided with deployment services by Github Pages