uploaded readme
Browse files
README.md
ADDED
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Quantization made by Richard Erkhov.
|
2 |
+
|
3 |
+
[Github](https://github.com/RichardErkhov)
|
4 |
+
|
5 |
+
[Discord](https://discord.gg/pvy7H8DZMG)
|
6 |
+
|
7 |
+
[Request more models](https://github.com/RichardErkhov/quant_request)
|
8 |
+
|
9 |
+
|
10 |
+
fine-tuned-gpt-neo - bnb 8bits
|
11 |
+
- Model creator: https://huggingface.co/Torrchy/
|
12 |
+
- Original model: https://huggingface.co/Torrchy/fine-tuned-gpt-neo/
|
13 |
+
|
14 |
+
|
15 |
+
|
16 |
+
|
17 |
+
Original model description:
|
18 |
+
---
|
19 |
+
license: mit
|
20 |
+
language:
|
21 |
+
- en
|
22 |
+
base_model:
|
23 |
+
- EleutherAI/gpt-neo-1.3B
|
24 |
+
library_name: transformers
|
25 |
+
---
|
26 |
+
# Fine-tuned GPT-Neo Model
|
27 |
+
This is a fine-tuned version of GPT-Neo for specific tasks.
|
28 |
+
|
29 |
+
## Model Details
|
30 |
+
- **Model Type**: GPT-Neo
|
31 |
+
- **Fine-tuned for**: [Specify tasks or datasets]
|
32 |
+
|
33 |
+
## Usage
|
34 |
+
To use the model, run the following code:
|
35 |
+
```python
|
36 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
37 |
+
|
38 |
+
model = AutoModelForCausalLM.from_pretrained("Torrchy/fine-tuned-gpt-neo")
|
39 |
+
tokenizer = AutoTokenizer.from_pretrained("Torrchy/fine-tuned-gpt-neo")
|
40 |
+
|