# /// script | |
# requires-python = ">=3.12" | |
# dependencies = [ | |
# "transformers", | |
# "torch", | |
# ] | |
# /// | |
try: | |
# Load model directly | |
from transformers import AutoModelForCausalLM | |
model = AutoModelForCausalLM.from_pretrained("IntervitensInc/pangu-pro-moe-model", trust_remote_code=True) | |
with open('pangu-pro-moe-model_1.txt', 'w') as f: | |
f.write('Everything was good in pangu-pro-moe-model_1') | |
except Exception as e: | |
with open('pangu-pro-moe-model_1.txt', 'w') as f: | |
import traceback | |
traceback.print_exc(file=f) | |
finally: | |
from huggingface_hub import upload_file | |
upload_file( | |
path_or_fileobj='pangu-pro-moe-model_1.txt', | |
repo_id='model-metadata/custom_code_execution_files', | |
path_in_repo='pangu-pro-moe-model_1.txt', | |
repo_type='dataset', | |
) |