Views
No views yet
| Parameter | Value |
|---|---|
| Learning rate | 7x10-5 |
| Warm-up steps | 20 |
| Grad clip by norm | 1.0 |
| Epochs | 2 |
| Padding side | "right" |
| Add EOS token | True |
| min_lr_rate | 0.01 |
1from transformers import pipeline
2
3seq_classifier = pipeline(
4 task="sentiment-analysis",
5 model="fromthesky/PLDR-LLM-v52-81M-FT-SC-1",
6 device="cuda", # or "cpu"
7 trust_remote_code=True
8 )
9
10text="""
11Star Trek the Next Generation was arguably one of the most successful sci-fi shows \
12in the late eighties and early nineties. With a cast that complemented each other's character \
13seamlessly, the stories covered in the show touched on a wide variety of thought \
14provoking issues such as a dying civilization's daring attempt to be remembered in \
15"the Inner Light" and action packed two part episode with a cliffhanger in \
16"Best of Both Worlds" against the formidable Borg Collective. The end result was \
17a show that kept the audience engaged and entertained for the majority of the time it was on air.
18"""
19output=seq_classifier(text)
20print(f"PREDICTION: {output}")PREDICTION: [{'label': 'POSITIVE', 'score': 0.9999229907989502}]| Metric | Value |
|---|---|
| Accuracy | 0.9466 |
| Precision | 0.9463 |
| Recall | 0.9489 |
| F1 | 0.9476 |
1@misc{gokden2025pldrllmkvgcache,
2 title={PLDR-LLMs Learn A Generalizable Tensor Operator That Can Replace Its Own Deep Neural Net At Inference},
3 author={Burc Gokden},
4 year={2025},
5 eprint={2502.13502},
6 archivePrefix={arXiv},
7 primaryClass={cs.CL},
8 url={https://arxiv.org/abs/2502.13502},
9}
10
11@misc{gokden2024pldrllm,
12 title={PLDR-LLM: Large Language Model from Power Law Decoder Representations},
13 author={Burc Gokden},
14 year={2024},
15 eprint={2410.16703},
16 archivePrefix={arXiv},
17 primaryClass={cs.CL},
18 url={https://arxiv.org/abs/2410.16703},
19}