clarify artifact rights and fix repository identifier
Browse files
README.md
CHANGED
|
@@ -18,6 +18,16 @@ pipeline_tag: text-generation
|
|
| 18 |
|
| 19 |
Teaching archive for the Slayer GPT-style Polish language-model experiment.
|
| 20 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 21 |
This repo is meant to help people replicate the workflow, not just store artifacts. It includes a runnable local GPT checkpoint, the custom tokenizer it was trained with, a later tokenizer variant, the Slayer H100 training scripts, run logs, and replication docs.
|
| 22 |
|
| 23 |
This is a raw PyTorch/custom-code checkpoint, not a Transformers-native `AutoModelForCausalLM` repository.
|
|
@@ -47,8 +57,8 @@ Option 1: clone the model repo and run the bundled sampler:
|
|
| 47 |
|
| 48 |
```bash
|
| 49 |
git lfs install
|
| 50 |
-
git clone https://huggingface.co/SlayerLab/slayer-
|
| 51 |
-
cd slayer-
|
| 52 |
python3 -m venv .venv
|
| 53 |
source .venv/bin/activate
|
| 54 |
pip install -r requirements.txt
|
|
@@ -71,7 +81,7 @@ import torch
|
|
| 71 |
from huggingface_hub import hf_hub_download
|
| 72 |
from tokenizers import Tokenizer
|
| 73 |
|
| 74 |
-
repo_id = "SlayerLab/slayer-
|
| 75 |
|
| 76 |
model_py = hf_hub_download(repo_id, "scripts/model.py")
|
| 77 |
ckpt_path = hf_hub_download(repo_id, "model/ckpt.pt")
|
|
|
|
| 18 |
|
| 19 |
Teaching archive for the Slayer GPT-style Polish language-model experiment.
|
| 20 |
|
| 21 |
+
> **Rights and provenance status:** this repository is published for inspection
|
| 22 |
+
> and reproducibility review. The exact training-corpus provenance and the
|
| 23 |
+
> resulting permission scope for the checkpoint have not yet been documented to
|
| 24 |
+
> release-gate standard. `license: other` does **not** grant a blanket licence to
|
| 25 |
+
> the model weights, tokenizer or training material. Do not redistribute,
|
| 26 |
+
> fine-tune or use the checkpoint commercially unless a licence for the relevant
|
| 27 |
+
> artifact is stated expressly in this repository or you have obtained separate
|
| 28 |
+
> permission. Source-code files remain subject only to any licence notice stated
|
| 29 |
+
> for those files. Contact: k.wikiel@gmail.com.
|
| 30 |
+
|
| 31 |
This repo is meant to help people replicate the workflow, not just store artifacts. It includes a runnable local GPT checkpoint, the custom tokenizer it was trained with, a later tokenizer variant, the Slayer H100 training scripts, run logs, and replication docs.
|
| 32 |
|
| 33 |
This is a raw PyTorch/custom-code checkpoint, not a Transformers-native `AutoModelForCausalLM` repository.
|
|
|
|
| 57 |
|
| 58 |
```bash
|
| 59 |
git lfs install
|
| 60 |
+
git clone https://huggingface.co/SlayerLab/slayer-scratch
|
| 61 |
+
cd slayer-scratch
|
| 62 |
python3 -m venv .venv
|
| 63 |
source .venv/bin/activate
|
| 64 |
pip install -r requirements.txt
|
|
|
|
| 81 |
from huggingface_hub import hf_hub_download
|
| 82 |
from tokenizers import Tokenizer
|
| 83 |
|
| 84 |
+
repo_id = "SlayerLab/slayer-scratch"
|
| 85 |
|
| 86 |
model_py = hf_hub_download(repo_id, "scripts/model.py")
|
| 87 |
ckpt_path = hf_hub_download(repo_id, "model/ckpt.pt")
|