Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,85 @@
|
|
1 |
---
|
2 |
-
license:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
license: cc-by-nc-4.0
|
3 |
+
datasets:
|
4 |
+
- Intel/orca_dpo_pairs
|
5 |
+
- athirdpath/DPO_Pairs-Roleplay-Alpaca-NSFW
|
6 |
+
language:
|
7 |
+
- en
|
8 |
+
pipeline_tag: text-generation
|
9 |
+
tags:
|
10 |
+
- mistral
|
11 |
+
- bruins
|
12 |
+
- starling
|
13 |
---
|
14 |
+
|
15 |
+
|
16 |
+
|
17 |
+
![image/png](https://cdn-uploads.huggingface.co/production/uploads/63a259d0f30c46422789d38d/tmdM1fjNAmzV125zWd3_J.png)
|
18 |
+
|
19 |
+
# Go Bruins V2 11B - A Fine-tuned Language Model Given More Headroom
|
20 |
+
|
21 |
+
## Updates
|
22 |
+
|
23 |
+
## Overview
|
24 |
+
|
25 |
+
**Go Bruins-V2** is a language model fine-tuned on the rwitz/go-bruins architecture by rwitz. It's designed to push the boundaries of NLP applications, offering unparalleled performance in generating human-like text. This is the 11b version, which in theory should help improve overall quality.
|
26 |
+
|
27 |
+
## Capabilities
|
28 |
+
|
29 |
+
Go Bruins excels in a variety of NLP tasks, including but not limited to:
|
30 |
+
- Text generation
|
31 |
+
- Language understanding
|
32 |
+
- Sentiment analysis
|
33 |
+
|
34 |
+
## Usage
|
35 |
+
|
36 |
+
**Warning:** This model may output NSFW or illegal content. Use with caution and at your own risk.
|
37 |
+
|
38 |
+
### For Direct Use:
|
39 |
+
|
40 |
+
```python
|
41 |
+
from transformers import pipeline
|
42 |
+
|
43 |
+
model_name = "rwitz/go-bruins-v2"
|
44 |
+
inference_pipeline = pipeline('text-generation', model=model_name)
|
45 |
+
|
46 |
+
input_text = "Your input text goes here"
|
47 |
+
output = inference_pipeline(input_text)
|
48 |
+
|
49 |
+
print(output)
|
50 |
+
```
|
51 |
+
|
52 |
+
|
53 |
+
### Not Recommended For:
|
54 |
+
|
55 |
+
- Illegal activities
|
56 |
+
- Harassment
|
57 |
+
- Professional advice or crisis situations
|
58 |
+
|
59 |
+
## Training and Evaluation
|
60 |
+
|
61 |
+
Trained on a dataset from [athirdpath/DPO_Pairs-Roleplay-Alpaca-NSFW](https://huggingface.co/datasets/athirdpath/DPO_Pairs-Roleplay-Alpaca-NSFW), Go Bruins V2 has shown promising improvements over its predecessor, Go Bruins.
|
62 |
+
|
63 |
+
# Evaluations
|
64 |
+
|
65 |
+
PENDING
|
66 |
+
|
67 |
+
## Contact
|
68 |
+
|
69 |
+
For any inquiries or feedback, reach out to Ryan Witzman on Discord: `rwitz_`.
|
70 |
+
|
71 |
+
---
|
72 |
+
## Citations
|
73 |
+
```
|
74 |
+
@misc{unacybertron7b,
|
75 |
+
title={Cybertron: Uniform Neural Alignment},
|
76 |
+
author={Xavier Murias},
|
77 |
+
year={2023},
|
78 |
+
publisher = {HuggingFace},
|
79 |
+
journal = {HuggingFace repository},
|
80 |
+
howpublished = {\url{https://huggingface.co/fblgit/una-cybertron-7b-v2-bf16}},
|
81 |
+
}
|
82 |
+
```
|
83 |
+
|
84 |
+
*This model card was created with care by Ryan Witzman.*
|
85 |
+
rewrite this model card for new version called go-bruins-v2 that is finetuned on dpo on the original go-bruins model on athirdpath/DPO_Pairs-Roleplay-Alpaca-NSFW
|