Dataset Viewer
The dataset viewer is not available for this dataset.
Unexpected token '<', "<html> <h"... is not valid JSON

Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.

YAML Metadata Warning:empty or missing yaml metadata in repo card

Check out the documentation for more information.

For info, to create tag:

from huggingface_hub import HfApi

api = HfApi()

repo_id = "StanfordAIMI/chextemporal"
tag_name = "v1.0"

refs = api.list_repo_refs(repo_id=repo_id, repo_type="dataset")

main_branch = next((ref for ref in refs.branches if ref.name == "main"), None)

if main_branch:
    latest_commit = main_branch.target_commit
    api.create_tag(
        repo_id=repo_id,
        tag=tag_name,
        revision=latest_commit,
        repo_type="dataset"
    )

    print(f"Tag {tag_name} created for commit {latest_commit}")
else:
    print("Main branch not found in the dataset repository.")
Downloads last month
64