上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 60 下一页
摘要: hevi Arnau478/hevi: Hex viewer brew install hevi binsider orhun/binsider: Analyze ELF binaries like a boss ️‍♂️ binsider.dev binsider 是一个多功能 ELF 文件分析工 阅读全文
posted @ 2025-06-22 02:50 undefined443 阅读(111) 评论(0) 推荐(0)
摘要: 这篇文章使用经典的 Cora 引文网络数据集来训练一个简单的 GCN(Graph Convolutional Network),完成一个半监督节点分类任务。 安装依赖: pip install torch -i https://download.pytorch.org/whl/cu128 pip i 阅读全文
posted @ 2025-06-20 21:11 undefined443 阅读(66) 评论(0) 推荐(0)
摘要: K-Means 是一种常用的无监督聚类算法,主要功能是将一组未标注的数据样本自动划分为 \(K\) 个簇(Cluster)。它的核心目标可理解为:将数据点根据彼此之间的相似程度(通常用欧氏距离度量)进行分组,使得组内数据越紧凑、组间越分散越好。 K-Means 的数学目标可简单表示为最小化簇内平均距 阅读全文
posted @ 2025-06-20 21:03 undefined443 阅读(75) 评论(0) 推荐(0)
摘要: 2018 年,OpenAI 提出了基于 Transformer Decoder 架构的语言模型 GPT,并将在 5 年后轰动全世界…… 论文:Improving Language Understanding by Generative Pre-Training 博客:Improving langua 阅读全文
posted @ 2025-06-18 20:04 undefined443 阅读(40) 评论(0) 推荐(0)
摘要: GB/T 7714-2015 GB/T 7714-2015 是中国学位论文参考文献的标准格式。 常见类型格式 文献类型 格式示例 期刊 [序号] 作者. 题名[J]. 刊名, 年, 卷(期): 起止页码. 图书 [序号] 作者. 书名[M]. 出版地: 出版社, 年: 页码. 会议论文 [序号] 作 阅读全文
posted @ 2025-06-18 13:22 undefined443 阅读(439) 评论(0) 推荐(0)
摘要: ViT 实现了将 Transformer 应用到 CV 领域。 输入处理:将图像分割成补丁(patches)并线性投影,而非直接处理离散 token 位置编码:使用可学习的 2D 绝对位置编码,而非正弦或相对位置编码 [CLS] token:在序列开头添加分类 token,原始 Transforme 阅读全文
posted @ 2025-06-17 22:44 undefined443 阅读(67) 评论(0) 推荐(0)
摘要: Setup pip install torch torchvision -i https://download.pytorch.org/whl/cu126 定义模型和数据: from torchvision.models import resnet18 import torch as th x = 阅读全文
posted @ 2025-06-17 19:06 undefined443 阅读(52) 评论(0) 推荐(0)
摘要: tcc(Tiny C Compiler)是一个轻量级的 C 编译器。可以将 C 语言以脚本的形式运行。 安装 tcc: sudo apt install tcc 编写代码: vim main.c #!/usr/bin/tcc -run #include <stdio.h> int main() { 阅读全文
posted @ 2025-06-17 02:39 undefined443 阅读(56) 评论(0) 推荐(0)
摘要: 安装 gradio 库: pip install gradio 编写代码: vim app.py import gradio as gr # 定义要展示的函数 def greet(name, intensity): return "Hello, " + name + "!" * int(intens 阅读全文
posted @ 2025-06-16 23:56 undefined443 阅读(66) 评论(0) 推荐(0)
摘要: 初始配置 安装依赖: pip install sphinx 创建文档项目: sphinx-quickstart docs Separate source and build directories: y 编辑首页: docs/source/index.rst: Welcome to Lumache' 阅读全文
posted @ 2025-06-12 19:16 undefined443 阅读(38) 评论(0) 推荐(0)
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 60 下一页