custom_code_py_files / DeepSeek-R1-0528_1.py
ariG23498's picture
ariG23498 HF Staff
Upload DeepSeek-R1-0528_1.py with huggingface_hub
3e14f65 verified
raw
history blame contribute delete
927 Bytes
# /// script
# requires-python = ">=3.12"
# dependencies = [
# "transformers",
# "torch",
# ]
# ///
try:
# Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("deepseek-ai/DeepSeek-R1-0528", trust_remote_code=True)
model = AutoModelForCausalLM.from_pretrained("deepseek-ai/DeepSeek-R1-0528", trust_remote_code=True)
with open('DeepSeek-R1-0528_1.txt', 'w') as f:
f.write('Everything was good in DeepSeek-R1-0528_1')
except Exception as e:
with open('DeepSeek-R1-0528_1.txt', 'w') as f:
import traceback
traceback.print_exc(file=f)
finally:
from huggingface_hub import upload_file
upload_file(
path_or_fileobj='DeepSeek-R1-0528_1.txt',
repo_id='model-metadata/custom_code_execution_files',
path_in_repo='DeepSeek-R1-0528_1.txt',
repo_type='dataset',
)