File size: 505 Bytes
497fd02 7baa06a 3f72fe0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
---
license: apache-2.0
language:
- en
pipeline_tag: summarization
---
# Meeting Notes Generator
## Intended uses
Used to generate meeting notes based on meeting trascript and starting prompts.
#
```python
# Example of usage
from transformers import pipeline
summ = pipeline("summarization", "captain-awesome/naveed-ggml-model-gpt4all-falcon-q4_0")
print(summ(text))
```
## Training data
Initialized with pre-trained weights of "gpt2" checkpoint. Fine-tuned the model on stories of various genres. |