| import argparse |
| import sys |
| from pathlib import Path |
| from pprint import pformat |
| from typing import List |
|
|
| import numpy as np |
| from tenacity import retry, stop_after_attempt, wait_fixed |
|
|
| HUGGINGFACE_VIDEO_PREVIEW_FILE_NAME = "replay.mp4" |
| HUGGINGFACE_README_FILE_NAME = "README.md" |
|
|
|
|
| @retry(stop=stop_after_attempt(10), wait=wait_fixed(3)) |
| def push_to_hub( |
| args: argparse.Namespace, |
| episodic_returns: List, |
| repo_id: str, |
| algo_name: str, |
| folder_path: str, |
| video_folder_path: str = "", |
| revision: str = "main", |
| create_pr: bool = False, |
| private: bool = False, |
| ): |
| |
| from huggingface_hub import CommitOperationAdd, CommitOperationDelete, HfApi |
| from huggingface_hub.repocard import metadata_eval_result, metadata_save |
|
|
| api = HfApi() |
| repo_url = api.create_repo( |
| repo_id=repo_id, |
| exist_ok=True, |
| private=private, |
| ) |
| |
| entity, repo = repo_url.split("/")[-2:] |
| repo_id = f"{entity}/{repo}" |
|
|
| |
| |
| operations = [ |
| CommitOperationDelete(path_in_repo=file) |
| for file in api.list_repo_files(repo_id=repo_id) |
| if ".tfevents" in file or file.endswith(".mp4") |
| ] |
|
|
| |
| algorithm_variant_filename = sys.argv[0].split("/")[-1] |
| model_card = f""" |
| # (CleanRL) **{algo_name}** Agent Playing **{args.env_id}** |
| |
| This is a trained model of a {algo_name} agent playing {args.env_id}. |
| The model was trained by using [CleanRL](https://github.com/vwxyzjn/cleanrl) and the most up-to-date training code can be |
| found [here](https://github.com/vwxyzjn/cleanrl/blob/master/cleanrl/{args.exp_name}.py). |
| |
| ## Get Started |
| |
| To use this model, please install the `cleanrl` package with the following command: |
| |
| ``` |
| pip install "cleanrl[{args.exp_name}]" |
| python -m cleanrl_utils.enjoy --exp-name {args.exp_name} --env-id {args.env_id} |
| ``` |
| |
| Please refer to the [documentation](https://docs.cleanrl.dev/get-started/zoo/) for more detail. |
| |
| |
| ## Command to reproduce the training |
| |
| ```bash |
| curl -OL https://huggingface.co/{repo_id}/raw/main/{algorithm_variant_filename} |
| curl -OL https://huggingface.co/{repo_id}/raw/main/pyproject.toml |
| curl -OL https://huggingface.co/{repo_id}/raw/main/poetry.lock |
| poetry install --all-extras |
| python {algorithm_variant_filename} {" ".join(sys.argv[1:])} |
| ``` |
| |
| # Hyperparameters |
| ```python |
| {pformat(vars(args))} |
| ``` |
| """ |
| readme_path = Path(folder_path) / HUGGINGFACE_README_FILE_NAME |
| readme = model_card |
|
|
| |
| metadata = {} |
| metadata["tags"] = [ |
| args.env_id, |
| "deep-reinforcement-learning", |
| "reinforcement-learning", |
| "custom-implementation", |
| ] |
| metadata["library_name"] = "cleanrl" |
| eval = metadata_eval_result( |
| model_pretty_name=algo_name, |
| task_pretty_name="reinforcement-learning", |
| task_id="reinforcement-learning", |
| metrics_pretty_name="mean_reward", |
| metrics_id="mean_reward", |
| metrics_value=f"{np.average(episodic_returns):.2f} +/- {np.std(episodic_returns):.2f}", |
| dataset_pretty_name=args.env_id, |
| dataset_id=args.env_id, |
| ) |
| metadata = {**metadata, **eval} |
|
|
| with open(readme_path, "w", encoding="utf-8") as f: |
| f.write(readme) |
| metadata_save(readme_path, metadata) |
|
|
| |
| if video_folder_path: |
| |
| video_files = list(Path(video_folder_path).glob("*.mp4")) |
| operations += [CommitOperationAdd(path_or_fileobj=str(file), path_in_repo=str(file)) for file in video_files] |
| |
| latest_file = max(video_files, key=lambda file: int("".join(filter(str.isdigit, file.stem)))) |
| operations.append( |
| CommitOperationAdd(path_or_fileobj=str(latest_file), path_in_repo=HUGGINGFACE_VIDEO_PREVIEW_FILE_NAME) |
| ) |
|
|
| |
| operations += [ |
| CommitOperationAdd(path_or_fileobj=str(item), path_in_repo=str(item.relative_to(folder_path))) |
| for item in Path(folder_path).glob("*") |
| ] |
|
|
| |
| operations.append(CommitOperationAdd(path_or_fileobj=sys.argv[0], path_in_repo=sys.argv[0].split("/")[-1])) |
|
|
| |
| git_root = Path(__file__).parent.parent |
| operations.append(CommitOperationAdd(path_or_fileobj=str(git_root / "pyproject.toml"), path_in_repo="pyproject.toml")) |
| operations.append(CommitOperationAdd(path_or_fileobj=str(git_root / "poetry.lock"), path_in_repo="poetry.lock")) |
|
|
| api.create_commit( |
| repo_id=repo_id, |
| operations=operations, |
| commit_message="pushing model", |
| revision=revision, |
| create_pr=create_pr, |
| ) |
| print(f"Model pushed to {repo_url}") |
| return repo_url |
|
|