cutycat2000x
commited on
Commit
•
918d3e0
1
Parent(s):
3a056a0
Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,57 @@
|
|
1 |
---
|
2 |
license: mit
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: mit
|
3 |
+
language:
|
4 |
+
- en
|
5 |
+
library_name: transformers
|
6 |
+
pipeline_tag: text-generation
|
7 |
+
datasets:
|
8 |
+
- Open-Orca/OpenOrca
|
9 |
+
tags:
|
10 |
+
- freeai
|
11 |
+
- conversational
|
12 |
+
- meowgpt
|
13 |
+
- gpt
|
14 |
+
- free
|
15 |
+
- opensource
|
16 |
+
- splittic
|
17 |
+
- ai
|
18 |
+
widget:
|
19 |
+
- text: <s> [|User|] Hello World </s>[|Assistant|]
|
20 |
---
|
21 |
+
# MeowGPT Readme
|
22 |
+
|
23 |
+
## Overview
|
24 |
+
MeowGPT, developed by CutyCat2000, is a language model based on Llama with the checkpoint version 3. Trained on the OpenOrca dataset, this model is designed to generate text in a conversational manner and can be used for various natural language processing tasks.
|
25 |
+
|
26 |
+
## Usage
|
27 |
+
### Loading the Model
|
28 |
+
To use MeowGPT, you can load it via the `transformers` library in Python using the following code:
|
29 |
+
|
30 |
+
```python
|
31 |
+
from transformers import LlamaTokenizer, AutoModelForCausalLM, AutoTokenizer
|
32 |
+
|
33 |
+
tokenizer = LlamaTokenizer.from_pretrained("cutycat2000x/MeowGPT-3")
|
34 |
+
model = AutoModelForCausalLM.from_pretrained("cutycat2000x/MeowGPT-3")
|
35 |
+
```
|
36 |
+
|
37 |
+
### Example Prompt
|
38 |
+
An example of how to prompt the model for generating text:
|
39 |
+
|
40 |
+
```python
|
41 |
+
prompt = "<s> [|User|] Hello World </s>[|Assistant|]"
|
42 |
+
```
|
43 |
+
|
44 |
+
The <s> and </s> are start and end tokens.
|
45 |
+
|
46 |
+
## About the Model
|
47 |
+
- **Base Model**: Llama
|
48 |
+
- **Checkpoint Version**: 3
|
49 |
+
- **Dataset Used**: OpenOrca
|
50 |
+
|
51 |
+
## Citation
|
52 |
+
If you use MeowGPT in your research or projects, please consider citing CutyCat2000 and the relevant resources associated with the OpenOrca dataset.
|
53 |
+
|
54 |
+
## Disclaimer
|
55 |
+
Please note that while MeowGPT is trained to assist in generating text based on given prompts, it may not always provide accurate or contextually appropriate responses. It's recommended to review and validate the generated content before usage in critical applications.
|
56 |
+
|
57 |
+
For more information or support, refer to the `transformers` library documentation or CutyCat2000's resources.
|