相关文章
TransFormer 视频笔记
TransFormer BasicsAttention单头注意力 single head attentionQ: query 查寻矩阵 128*12288K key matrix 128*12288SoftMax 归一 ![在这里插入图片描述](https://i-blog.csdnimg.cn/direct/19e3cf1ea28442eca60d5fc1303921f4.png)Value matrix 12288*12288 MLP Bas…
建站知识
2025/1/9 16:23:51
2024年9月文章一览
2024年9月编程人总共更新了2篇文章:
1.2024年8月文章一览
2.《Programming from the Ground Up》阅读笔记:p117-p146
欢迎搜索及关注:编程人(a_codists)
建站知识
2024/12/29 9:35:26
集合框架01:集合的概念、Collection体系、Collection接口
1.集合的概念
集合是对象的容器,定义了多个对象进行操作的常用方法。可实现数组的功能。
集合和数组的区别: 1.数组长度固定,集合长度不固定; 2.数组可以存储基本类型和引用类型,集合只能存储引用类型;
…
建站知识
2024/12/29 9:35:27
MacOS Sequoia安装geant4.10.07
1,安装Geant4需求环境
(1,)安装xcode,在~/.bash_profile中添加其环境变量
export PATH"/Applications/CMake.app/Contents/bin":"$PATH"
(2,)brew install clhep
(3,)brew install cmake
(4,)brew install qt5
(5,)brew insta…
建站知识
2024/12/29 9:35:28
isinstance()学习
aa {}
if isinstance(aa,dict):print("是")aa 2
if isinstance(aa,dict):print("是")aa 2
if isinstance(aa,int):print("是")aa []
if isinstance(aa,list):print("list")aa [1,2,3]
if isinstance(aa,list):print("list"…
建站知识
2024/12/29 9:35:29
Vue Mini基于 Vue 3 的小程序框架
新的小程序框架
https://vuemini.org/
Vue Mini 是一个基于 Vue 3 的小程序框架,它允许开发者利用 Vue 3 的强大功能来构建微信小程序。Vue Mini 的核心优势在于它的响应式系统和组合式 API,这些特性让开发者能够以一种更声明式、更高效的方式来编写和…
建站知识
2024/12/28 12:27:21
C++语言学习(7):《C++程序设计原理与实践》第二章笔记
这一章很简单,可以直接跳过。
编译: 链接:
可移植性的说明,以及错误的类型细分:
编译时错误链接时错误运行时错误(逻辑错误)
思考题 Q & A
“Hello, World!” 程序的目的是什么&…
建站知识
2024/12/29 9:35:34
Java Web 之 Session 详解
在 JavaWeb 开发中,Session 就像网站的专属记忆管家,为每个用户保管着重要的信息和状态,确保用户在网站的旅程顺畅无阻。
场景一:
想象你去一家大型超市购物,推着购物车挑选商品。这个购物车就如同 Sessionÿ…
建站知识
2024/12/29 9:35:33