Instructions to use AofaYu71/LatentSkill with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use AofaYu71/LatentSkill with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("AofaYu71/LatentSkill", dtype="auto") - Notebooks
- Google Colab
- Kaggle
Add model download tracking config
Browse files- config.json +18 -0
config.json
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"name": "LatentSkill",
|
| 3 |
+
"repo_type": "model",
|
| 4 |
+
"base_model": "Qwen/Qwen3-8B",
|
| 5 |
+
"checkpoint_format": "tar.gz",
|
| 6 |
+
"loader": "https://github.com/yuaofan0-oss/LatentSkill",
|
| 7 |
+
"download_tracking": "This top-level config.json is intentionally included as the Hugging Face model download-statistics query file. It is metadata for the checkpoint bundle, not a standalone Transformers runtime configuration.",
|
| 8 |
+
"artifacts": {
|
| 9 |
+
"pretrain": {
|
| 10 |
+
"path": "latentskill_pretrain_qwen3_8b/pretrain.tar.gz",
|
| 11 |
+
"local_extract_dir": "checkpoints/latentskill_pretrain_qwen3_8b/pretrain/"
|
| 12 |
+
},
|
| 13 |
+
"sft": {
|
| 14 |
+
"path": "latentskill_sft_qwen3_8b/train.tar.gz",
|
| 15 |
+
"local_extract_dir": "checkpoints/latentskill_sft_qwen3_8b/train/"
|
| 16 |
+
}
|
| 17 |
+
}
|
| 18 |
+
}
|