gitextract_brvqcrv9/ ├── .claude-plugin/ │ ├── marketplace.json │ └── plugin.json ├── .cursor-plugin/ │ ├── marketplace.json │ └── plugin.json ├── .github/ │ └── workflows/ │ ├── SECURITY.md │ ├── generate-agents.yml │ ├── push-evals-leaderboard.yml │ ├── push-hackers-leaderboard.yml │ └── push-quests.yml ├── .gitignore ├── .mcp.json ├── LICENSE ├── README.md ├── agents/ │ └── AGENTS.md ├── apps/ │ ├── evals-leaderboard/ │ │ ├── app.py │ │ ├── collect_evals.py │ │ └── requirements.txt │ ├── hackers-leaderboard/ │ │ ├── README.md │ │ ├── app.py │ │ ├── collect_points.py │ │ └── requirements.txt │ └── quests/ │ ├── 02_evaluate-hub-model.md │ ├── 03_publish-hub-dataset.md │ ├── 04_sft-finetune-hub.md │ └── README.md ├── gemini-extension.json ├── hf-mcp/ │ └── skills/ │ └── hf-mcp/ │ └── SKILL.md ├── scripts/ │ ├── AGENTS_TEMPLATE.md │ ├── UV_RULES.md │ ├── generate_agents.py │ ├── generate_cursor_plugin.py │ ├── publish.sh │ └── run_skills_help.py └── skills/ ├── hf-cli/ │ └── SKILL.md ├── hugging-face-dataset-viewer/ │ └── SKILL.md ├── hugging-face-datasets/ │ ├── SKILL.md │ ├── examples/ │ │ ├── diverse_training_examples.json │ │ ├── system_prompt_template.txt │ │ └── training_examples.json │ ├── scripts/ │ │ ├── dataset_manager.py │ │ └── sql_manager.py │ └── templates/ │ ├── chat.json │ ├── classification.json │ ├── completion.json │ ├── custom.json │ ├── qa.json │ └── tabular.json ├── hugging-face-evaluation/ │ ├── SKILL.md │ ├── examples/ │ │ ├── USAGE_EXAMPLES.md │ │ ├── artificial_analysis_to_hub.py │ │ ├── example_readme_tables.md │ │ └── metric_mapping.json │ └── scripts/ │ ├── evaluation_manager.py │ ├── inspect_eval_uv.py │ ├── inspect_vllm_uv.py │ ├── lighteval_vllm_uv.py │ ├── run_eval_job.py │ ├── run_vllm_eval_job.py │ └── test_extraction.py ├── hugging-face-jobs/ │ ├── SKILL.md │ ├── index.html │ ├── references/ │ │ ├── hardware_guide.md │ │ ├── hub_saving.md │ │ ├── token_usage.md │ │ └── troubleshooting.md │ └── scripts/ │ ├── cot-self-instruct.py │ ├── finepdfs-stats.py │ └── generate-responses.py ├── hugging-face-model-trainer/ │ ├── SKILL.md │ ├── references/ │ │ ├── gguf_conversion.md │ │ ├── hardware_guide.md │ │ ├── hub_saving.md │ │ ├── local_training_macos.md │ │ ├── reliability_principles.md │ │ ├── trackio_guide.md │ │ ├── training_methods.md │ │ ├── training_patterns.md │ │ ├── troubleshooting.md │ │ └── unsloth.md │ └── scripts/ │ ├── convert_to_gguf.py │ ├── dataset_inspector.py │ ├── estimate_cost.py │ ├── train_dpo_example.py │ ├── train_grpo_example.py │ ├── train_sft_example.py │ └── unsloth_sft_example.py ├── hugging-face-paper-pages/ │ └── SKILL.md ├── hugging-face-paper-publisher/ │ ├── SKILL.md │ ├── examples/ │ │ └── example_usage.md │ ├── references/ │ │ └── quick_reference.md │ ├── scripts/ │ │ └── paper_manager.py │ └── templates/ │ ├── arxiv.md │ ├── ml-report.md │ ├── modern.md │ └── standard.md ├── hugging-face-tool-builder/ │ ├── SKILL.md │ └── references/ │ ├── baseline_hf_api.py │ ├── baseline_hf_api.sh │ ├── baseline_hf_api.tsx │ ├── find_models_by_paper.sh │ ├── hf_enrich_models.sh │ ├── hf_model_card_frontmatter.sh │ └── hf_model_papers_auth.sh ├── hugging-face-trackio/ │ ├── .claude-plugin/ │ │ └── plugin.json │ ├── SKILL.md │ └── references/ │ ├── alerts.md │ ├── logging_metrics.md │ └── retrieving_metrics.md ├── hugging-face-vision-trainer/ │ ├── SKILL.md │ ├── references/ │ │ ├── finetune_sam2_trainer.md │ │ ├── hub_saving.md │ │ ├── image_classification_training_notebook.md │ │ ├── object_detection_training_notebook.md │ │ ├── reliability_principles.md │ │ └── timm_trainer.md │ └── scripts/ │ ├── dataset_inspector.py │ ├── estimate_cost.py │ ├── image_classification_training.py │ ├── object_detection_training.py │ └── sam_segmentation_training.py ├── huggingface-gradio/ │ ├── SKILL.md │ └── examples.md └── transformers.js/ ├── SKILL.md └── references/ ├── CACHE.md ├── CONFIGURATION.md ├── EXAMPLES.md ├── MODEL_ARCHITECTURES.md ├── PIPELINE_OPTIONS.md └── TEXT_GENERATION.md