相关文章
一些很好的网站或博客链接
NLP实操101 (30道NLP考题检验你的NLP实力):链接
中文NLP必知必会30题:链接
一个NLP模型综述类的文章:浅析Self-Attention、ELMO、Transformer、BERT、ERNIE、GPT、ChatGPT等NLP models
七月在线发布的面试题:自然语言处理面试3…
建站知识
2024/10/22 12:50:28
Medium: 9 Important Things to Remember for AB Test
There are lots of things that can go wrong [存在隐患] when you try to create AB tests. Goal & Motivation
Making it clear helps align the team toward the goal. Hypothesis
Your hypothesis should be short and to the point. It should not run into a coup…
建站知识
2024/11/25 7:16:43
docker笔记3 Docker常规安装
1.安装tomcat
docker hub上面查找tomcat镜像 docker search tomcat
从docker hub上拉取tomcat镜像到本地
docker pull tomcat docker images查看是否有拉取到的tomcat 使用tomcat镜像创建容器实例(也叫运行镜像) docker run -it -p 8080:8080 tomcat
-p 小写,主…
建站知识
2024/11/25 7:23:01
【C++ 学习 ⑳】- 详解二叉搜索树
目录
一、概念
二、实现
2.1 - BST.h
2.2 - test.cpp
三、应用
四、性能分析 一、概念
二叉搜索树(BST,Binary Search Tree),又称二叉排序树或二叉查找树。
二叉搜索树是一棵二叉树,可以为空;如果不…
建站知识
2024/11/16 8:17:49
详解 sudo usermod -aG docker majn
这个命令涉及到几个 Linux 系统管理的基础概念,包括 sudo、usermod 和用户组管理。我们可以逐一地解析它们: sudo: sudo(superuser do)允许一个已经被授权的用户以超级用户或其他用户的身份执行一个命令。当使用 sudo 前缀一个命令…
建站知识
2024/10/22 20:56:21
SpringBoot粗浅分析
应用分析
1、依赖管理机制 在springBoot项目中,导入starter-web所有想换依赖都会被导入,甚至不用去规定它们的版本号。它是根据Maven的依赖传递原则来设置,只需要导入场景启动器,场景启动器自动把这个场景的所有核心依赖全部导入…
建站知识
2024/10/22 20:53:02
K8S之使用yaml格式定义pod
mysql-pod.yaml
# overView:
# 1. web服务与db打包放在同一个pod中,本地通过localhost来访问,并附带存活性/可用性检测
# 2. 补充重启策略/镜像拉去策略
# 3. 对容器资源进行限制apiVersion: apps/v1
kind: Pod
metadata:name: pub-oanamespace: hunte…
建站知识
2024/10/22 21:13:20