Community Tab
Interact with Discussions and Pull Requests
Retrieve Discussions and Pull Requests from the Hub
>>> from boincai_hub import get_repo_discussions
>>> for discussion in get_repo_discussions(repo_id="bigscience/bloom-1b3"):
... print(f"{discussion.num} - {discussion.title}, pr: {discussion.is_pull_request}")
# 11 - Add Flax weights, pr: True
# 10 - Update README.md, pr: True
# 9 - Training languages in the model card, pr: True
# 8 - Update tokenizer_config.json, pr: True
# 7 - Slurm training script, pr: False
[...]Create and edit a Discussion or Pull Request programmatically
Push changes to a Pull Request
See also
Last updated