AI tools

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