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
Update model card checkpoint paths
Browse files
README.md
CHANGED
|
@@ -27,11 +27,10 @@ Dataset repository: https://huggingface.co/datasets/AofaYu71/LatentSkill
|
|
| 27 |
## Contents
|
| 28 |
|
| 29 |
```text
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
train.tar.gz
|
| 35 |
```
|
| 36 |
|
| 37 |
The checkpoint archives are expected to be extracted under the code repository root:
|
|
@@ -48,9 +47,9 @@ From the root of the code repository:
|
|
| 48 |
```bash
|
| 49 |
hf download AofaYu71/LatentSkill \
|
| 50 |
--repo-type model \
|
| 51 |
-
--local-dir
|
| 52 |
-
--include "
|
| 53 |
-
"
|
| 54 |
|
| 55 |
tar -xzf checkpoints/latentskill_pretrain_qwen3_8b/pretrain.tar.gz \
|
| 56 |
-C checkpoints/latentskill_pretrain_qwen3_8b/
|
|
|
|
| 27 |
## Contents
|
| 28 |
|
| 29 |
```text
|
| 30 |
+
latentskill_pretrain_qwen3_8b/
|
| 31 |
+
pretrain.tar.gz
|
| 32 |
+
latentskill_sft_qwen3_8b/
|
| 33 |
+
train.tar.gz
|
|
|
|
| 34 |
```
|
| 35 |
|
| 36 |
The checkpoint archives are expected to be extracted under the code repository root:
|
|
|
|
| 47 |
```bash
|
| 48 |
hf download AofaYu71/LatentSkill \
|
| 49 |
--repo-type model \
|
| 50 |
+
--local-dir checkpoints \
|
| 51 |
+
--include "latentskill_pretrain_qwen3_8b/pretrain.tar.gz" \
|
| 52 |
+
"latentskill_sft_qwen3_8b/train.tar.gz"
|
| 53 |
|
| 54 |
tar -xzf checkpoints/latentskill_pretrain_qwen3_8b/pretrain.tar.gz \
|
| 55 |
-C checkpoints/latentskill_pretrain_qwen3_8b/
|