Update README.md
Browse files
README.md
CHANGED
@@ -15,25 +15,25 @@ Tags:
|
|
15 |
metrics:
|
16 |
- accuracy
|
17 |
---
|
18 |
-
#
|
19 |
|
20 |
## ποΈ Model description
|
21 |
-
|
22 |
-
|
23 |
It generates a probability distribution over the next word given the previous words, without incorporating future words.
|
24 |
|
25 |
-
The goal of
|
26 |
This can be useful for content creators who are looking for inspiration or who want to automate the process of generating video scripts.
|
27 |
To use ScriptGPT-medium, users can provide a prompt or a starting sentence, and the model will generate a sequence of words that follow the context and style of the training data.
|
28 |
|
29 |
Models
|
30 |
-
- [
|
31 |
-
- [
|
32 |
|
33 |
More models are coming soon...
|
34 |
|
35 |
## π Intended uses
|
36 |
-
The intended uses of
|
37 |
|
38 |
|
39 |
## π How to use
|
@@ -43,8 +43,8 @@ You can use this model directly with a pipeline for text generation.
|
|
43 |
```python
|
44 |
from transformers import AutoTokenizer, AutoModelForCausalLM
|
45 |
|
46 |
-
tokenizer = AutoTokenizer.from_pretrained("SRDdev/
|
47 |
-
model = AutoModelForCausalLM.from_pretrained("SRDdev/
|
48 |
```
|
49 |
|
50 |
2. __Pipeline__
|
|
|
15 |
metrics:
|
16 |
- accuracy
|
17 |
---
|
18 |
+
# ScriptForge-medium
|
19 |
|
20 |
## ποΈ Model description
|
21 |
+
ScriptForge-medium is a language model trained on a dataset of 250 YouTube videos that cover different domains of Youtube videos.
|
22 |
+
ScriptForge-medium is a Causal language transformer. The model resembles the GPT2 architecture, the model is a Causal Language model meaning it predicts the probability of a sequence of words based on the preceding words in the sequence.
|
23 |
It generates a probability distribution over the next word given the previous words, without incorporating future words.
|
24 |
|
25 |
+
The goal of ScriptForge-medium is to generate scripts for Youtube videos that are coherent, informative, and engaging.
|
26 |
This can be useful for content creators who are looking for inspiration or who want to automate the process of generating video scripts.
|
27 |
To use ScriptGPT-medium, users can provide a prompt or a starting sentence, and the model will generate a sequence of words that follow the context and style of the training data.
|
28 |
|
29 |
Models
|
30 |
+
- [ScriptForge](https://huggingface.co/SRDdev/ScriptForge) : AI content Model
|
31 |
+
- [ScriptForge-small](https://huggingface.co/SRDdev/ScriptForge-medium) : Generalized Content Model
|
32 |
|
33 |
More models are coming soon...
|
34 |
|
35 |
## π Intended uses
|
36 |
+
The intended uses of ScriptForge-medium include generating scripts for videos, providing inspiration for content creators, and automating the process of generating video scripts.
|
37 |
|
38 |
|
39 |
## π How to use
|
|
|
43 |
```python
|
44 |
from transformers import AutoTokenizer, AutoModelForCausalLM
|
45 |
|
46 |
+
tokenizer = AutoTokenizer.from_pretrained("SRDdev/ScriptForge-medium")
|
47 |
+
model = AutoModelForCausalLM.from_pretrained("SRDdev/ScriptForge-medium")
|
48 |
```
|
49 |
|
50 |
2. __Pipeline__
|