AI · NLP · ML · Engineering

Practical AI Notes, Systems, and Engineering

围绕 NLP、LLM、机器学习与工程实践,持续沉淀值得复用的方法、系统设计、实验记录与项目思考。

Focus NLP / LLM / ML
Style Notes · Practice · Systems
Content Articles · Experiments · Engineering
Latest Posts

Java

«««< HEAD layout: post title: “java” subtitle: “ "java"” date: 2021-05-25 18:00:00 author: “zwt” header-img: “img/post-bg-2015.jpg” c...

springboot

"spring boot"

项目结构 一般结构 多模块结构 报错处理 包冲突问题 参考 项目结构 一般结构 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 com +- example +- my...

mysql

"mysql"

软件地址 安装过程 索引 全文索引 基础 操作 查询sql性能 profile分析 explain show processlist 用ip访问mysql sql 注意 其他操...

tensorflow

"tf"

tensorflow tensorflow 限制gpu: 1 2 3 4 5 6 7 8 9 import os os.environ["CUDA_VISIBLE_DEVICES"] = "1" import tensorflow as tf from keras.backend.tensorflow...

Redis

«««< HEAD layout: post title: “redis” subtitle: “ "redis"” date: 2020-11-30 15:30:00 mathjax: true author: “zwt” header-img: “img/p...

focal-loss

"损失函数"

目的 详述 参考 目的 Focal Loss 就是一个解决分类问题中类别不平衡、分类难度差异的一个 loss。 自动鉴别样本的难和易,从而让模型在后期尽量去学习那些hard example 详述 通常计算分类的损失为: \(C E=\left\{\begin{aligned} -\log ...

python

"python"

环境 正则 一些例子 字典 运行超时跳过 注意 时间戳 多线程多进程 相似度计算 json文件比较 正则 一些例子 字典 运行超时跳过 注意 时间戳 多线程多进程 相似度计算 ...

Pandas

«««< HEAD layout: post title: “pandas” subtitle: “ "pandas"” date: 2021-03-04 18:00:00 author: “zwt” header-img: “img/post-bg-2015.jp...

warpctc

"语音识别"

安装 安装 1 2 3 4 5 6 7 8 9 10 11 pip --default-timeout=100 install torch===1.3.1 -f https://download.pytorch.org/whl/torch_stable.html pip install torchvi...

排序算法

"排序"

相关概念 1. 冒泡排序 1.1 算法描述 1.2 动图演示 1.3 代码 1.4 算法分析 2.选择排序 2.1 描述 2.2动态演示 2.3 代码实现 2.4 算法分析...