nielsr HF Staff commited on
Commit
769e9a4
·
verified ·
1 Parent(s): 91d6a88

Add metadata and link to AdaGC paper

Browse files

Hi! I'm Niels from the Hugging Face community science team.

I noticed this repository implements techniques from the paper [AdaGC: Enhancing LLM Pretraining Stability via Adaptive Gradient Clipping](https://huggingface.co/papers/2502.11034), but it currently lacks structured metadata to help users find it on the Hub.

This PR adds:
- YAML metadata including the `pipeline_tag`, `library_name`, and `license`.
- A direct link to the paper page on Hugging Face.
- A link to the official code repository.

These changes will ensure the repository is correctly indexed and more discoverable for researchers working on LLM pretraining stability.

Files changed (1) hide show
  1. README.md +10 -0
README.md CHANGED
@@ -1,5 +1,15 @@
 
 
 
 
 
 
1
  # Self-Healing Training System (SHTS)
2
 
 
 
 
 
3
  > **Fully autonomous debugging and error recovery for Hugging Face TRL trainers. Add one callback, wrap with `SelfHealingTrainer`, and cut debugging costs to near zero.**
4
 
5
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
 
1
+ ---
2
+ license: mit
3
+ library_name: transformers
4
+ pipeline_tag: text-generation
5
+ ---
6
+
7
  # Self-Healing Training System (SHTS)
8
 
9
+ This repository is associated with the paper [AdaGC: Enhancing LLM Pretraining Stability via Adaptive Gradient Clipping](https://huggingface.co/papers/2502.11034).
10
+
11
+ Official implementation: [PaddleFleet](https://github.com/PaddlePaddle/PaddleFleet) (see Research/AdaGC).
12
+
13
  > **Fully autonomous debugging and error recovery for Hugging Face TRL trainers. Add one callback, wrap with `SelfHealingTrainer`, and cut debugging costs to near zero.**
14
 
15
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)