la-min commited on
Commit
ebb58ee
1 Parent(s): 7c8aa30

update readme

Browse files
Files changed (1) hide show
  1. README.md +71 -59
README.md CHANGED
@@ -1,59 +1,71 @@
1
- # BLINKpedia Model
2
-
3
- ![BLINKpedia](https://github.com/SIRIUS-webkit/BLINKpedia/blob/master/BLINKpedia.png)
4
-
5
- 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.
6
-
7
- ## Model Details
8
-
9
- - **Model Name**: BLINKpedia
10
- - **Finetuned From Model**: [unsloth/tinyllama](https://huggingface.co/unsloth/tinyllama)
11
- - **Model Type**: Text Generation
12
- - **Training Data**: Curated datasets containing information about BLACKPINK, including lyrics, interviews, news articles, and fan content.
13
- - **Framework**: Hugging Face Transformers
14
-
15
- ## Features
16
-
17
- - **Context-Aware Generation**: Generates text that is coherent and contextually relevant to the given prompt.
18
- - **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.
19
-
20
- ## Usage
21
-
22
- 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:
23
-
24
- ```python
25
- from transformers import pipeline
26
-
27
- # Load the model
28
- generator = pipeline('text-generation', model='la-min/BLINKpedia')
29
-
30
- # Define your prompt
31
- prompt = "Blackpink is the highest-charting female Korean"
32
-
33
- # Generate text
34
- generated_text = generator(prompt, max_length=100, num_return_sequences=1)
35
-
36
- # Print the generated text
37
- print(generated_text[0]['generated_text'])
38
- ```
39
-
40
- ## Example Outputs
41
-
42
- Generated Text:
43
-
44
- ```python
45
- 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
46
- ```
47
-
48
- ## Fine-Tuning
49
-
50
- 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.
51
-
52
- ## Contributing
53
-
54
- 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.
55
-
56
- ## Contributors
57
-
58
- - [La Min Ko Ko](https://www.linkedin.com/in/la-min-ko-ko-907827205/)
59
- - [Kyu Kyu Swe](https://www.linkedin.com/in/kyu-kyu-swe-533718171/)
 
 
 
 
 
 
 
 
 
 
 
 
 
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/)