Views
No views yet
config.json - Model configurationmodel.safetensors.index.json - SafeTensors index filemodel-00001-of-00002.safetensors - Model weights (part 1)model-00002-of-00002.safetensors - Model weights (part 2)trainer_state.json - Training state informationtraining_args.bin - Training argumentsexperiment_cfg/ - Experimental configuration files1from transformers import AutoModel, AutoTokenizer
2
3# Download and load the model
4model = AutoModel.from_pretrained("l2aggle/PPTmodel4UnitreeG1")
5tokenizer = AutoTokenizer.from_pretrained("l2aggle/PPTmodel4UnitreeG1")1# Clone the repository
2git clone https://huggingface.co/l2aggle/PPTmodel4UnitreeG1
3
4# Navigate to the model directory
5cd PPTmodel4UnitreeG1pip install torch transformers safetensors