Spaces:
Sleeping
Sleeping
update readme
Browse files
README.md
CHANGED
@@ -1,59 +1,71 @@
|
|
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 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
##
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
title: BLINKpedia
|
3 |
+
emoji: 🏆
|
4 |
+
colorFrom: indigo
|
5 |
+
colorTo: green
|
6 |
+
sdk: streamlit
|
7 |
+
sdk_version: 1.35.0
|
8 |
+
app_file: app.py
|
9 |
+
pinned: false
|
10 |
+
license: creativeml-openrail-m
|
11 |
+
---
|
12 |
+
|
13 |
+
# BLINKpedia Model
|
14 |
+
|
15 |
+
![BLINKpedia](https://github.com/SIRIUS-webkit/BLINKpedia/blob/master/BLINKpedia.png)
|
16 |
+
|
17 |
+
This model is designed to generate text content related to BLACKPINK, a globally renowned K-pop girl group. It leverages state-of-the-art natural language processing techniques to produce coherent and contextually relevant text based on input prompts.
|
18 |
+
|
19 |
+
## Model Details
|
20 |
+
|
21 |
+
- **Model Name**: BLINKpedia
|
22 |
+
- **Finetuned From Model**: [unsloth/tinyllama](https://huggingface.co/unsloth/tinyllama)
|
23 |
+
- **Model Type**: Text Generation
|
24 |
+
- **Training Data**: Curated datasets containing information about BLACKPINK, including lyrics, interviews, news articles, and fan content.
|
25 |
+
- **Framework**: Hugging Face Transformers
|
26 |
+
|
27 |
+
## Features
|
28 |
+
|
29 |
+
- **Context-Aware Generation**: Generates text that is coherent and contextually relevant to the given prompt.
|
30 |
+
- **Customizable Prompts**: Users can input various prompts related to BLACKPINK to generate different types of content, such as news articles, social media posts, fan fiction, and more.
|
31 |
+
|
32 |
+
## Usage
|
33 |
+
|
34 |
+
To use the BLACKPINK Text Generation model, you can load it using the Hugging Face Transformers library. Here’s an example of how to use the model in Python:
|
35 |
+
|
36 |
+
```python
|
37 |
+
from transformers import pipeline
|
38 |
+
|
39 |
+
# Load the model
|
40 |
+
generator = pipeline('text-generation', model='la-min/BLINKpedia')
|
41 |
+
|
42 |
+
# Define your prompt
|
43 |
+
prompt = "Blackpink is the highest-charting female Korean"
|
44 |
+
|
45 |
+
# Generate text
|
46 |
+
generated_text = generator(prompt, max_length=100, num_return_sequences=1)
|
47 |
+
|
48 |
+
# Print the generated text
|
49 |
+
print(generated_text[0]['generated_text'])
|
50 |
+
```
|
51 |
+
|
52 |
+
## Example Outputs
|
53 |
+
|
54 |
+
Generated Text:
|
55 |
+
|
56 |
+
```python
|
57 |
+
Blackpink is the highest-charting female Korean act on the Billboard 200, with their debut album Born Pink (2018) debuting at number one on the Circle Album Chart and the group's second album Born
|
58 |
+
```
|
59 |
+
|
60 |
+
## Fine-Tuning
|
61 |
+
|
62 |
+
You can fine-tune this model with additional data to better suit specific needs or to improve its performance on particular types of content. Refer to the Hugging Face documentation for guidance on fine-tuning models.
|
63 |
+
|
64 |
+
## Contributing
|
65 |
+
|
66 |
+
If you'd like to contribute to the development of this model, please reach out or submit a pull request. Contributions can include improvements to the model, new training data, or enhancements to the documentation.
|
67 |
+
|
68 |
+
## Contributors
|
69 |
+
|
70 |
+
- [La Min Ko Ko](https://www.linkedin.com/in/la-min-ko-ko-907827205/)
|
71 |
+
- [Kyu Kyu Swe](https://www.linkedin.com/in/kyu-kyu-swe-533718171/)
|