AI

machine learning

机器学习术语表

机器学习类型

什么是机器学习?

根据机器学习系统学习进行预测或生成内容的方式,机器学习系统可分为以下一个或多个类别:

  • 监督式学习
  • 非监督式学习
  • 强化学习
  • 生成式 AI
  • 实现机器学习的一般步骤:
  1. 数据收集
  2. 数据准备
  3. 数据分析
  4. 训练算法
  5. 测试算法
  6. 应用算法

数据

训练集、验证集、测试集

FSM

The FSM can change from one state to another in response to some inputs; the change from one state to another is called a transition.

hugging face

download model

1
2
3
4
5
6
7
8
9
10
# option 1 
brew install git-lfs
git lfs install
git clone https://huggingface.co/<model-id> # e.g: git clone git@hf.co:bigscience/bloom

# option 2
pip install huggingface_hub
hf auth login
# or using an environment variable: hf auth login --token $HUGGINGFACE_TOKEN
hf download ByteDance-Seed/Seed-X-PPO-7B

reference