RanM commited on
Commit
32dda0b
verified
1 Parent(s): a9b8939

Create generate_propmts.py

Browse files
Files changed (1) hide show
  1. generate_propmts.py +105 -0
generate_propmts.py ADDED
@@ -0,0 +1,105 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import base64
2
+ import re
3
+
4
+ def insert_description(sentence, character, description):
5
+ """
6
+ Integrates the character and its description at the beginning of the sentence if the character is mentioned.
7
+
8
+ Parameters:
9
+ - sentence (str): The original sentence.
10
+ - character (str): The character to be described.
11
+ - description (str): The description of the character.
12
+
13
+ Returns:
14
+ str: The sentence modified to include the character and description at the beginning.
15
+ """
16
+ # Inserts character and description at the beginning of the sentence if the character is found.
17
+ character = character.lower()
18
+ # Remove everything after the newline character
19
+ cleaned_description = re.sub(r'\n.*', '', description)
20
+ # Remove non-alphabetic characters and quotes from the description
21
+ cleaned_description = re.sub(r'[^a-zA-Z\s,]', '', cleaned_description).replace("'", '').replace('"', '')
22
+ # Check if the character appears in the sentence
23
+ if character in sentence.lower():
24
+ # Insert the character and its description at the beginning of the sentence
25
+ modified_sentence = f"{character}: {cleaned_description.strip()}. {sentence}"
26
+ return modified_sentence
27
+ else:
28
+ return sentence
29
+
30
+ def process_text(sentence, character_dict):
31
+ """
32
+ Enhances the given sentence by incorporating descriptions for each mentioned character.
33
+
34
+ Parameters:
35
+ - sentence (str): The original sentence.
36
+ - character_dict (dict): Dictionary mapping characters to their descriptions.
37
+
38
+ Returns:
39
+ str: The sentence with integrated character descriptions.
40
+ """
41
+ # Modifies sentences in the given text based on character descriptions.
42
+ modified_sentence = sentence # Initialize with the original sentence
43
+
44
+ # Iterate through each character in the dictionary
45
+ for character, descriptions in character_dict.items():
46
+ for description in descriptions:
47
+ # Update the sentence with the character and its description
48
+ modified_sentence = insert_description(modified_sentence, character, description)
49
+ return modified_sentence
50
+
51
+
52
+ def generate_prompt(text, sentence_mapping, character_dict, selected_style):
53
+ """
54
+ Generates a prompt and negative prompt for image generation based on the selected style and input text.
55
+
56
+ Parameters:
57
+ - style (str): The chosen illustration style.
58
+ - text (str): The input text for the illustration.
59
+
60
+ Returns:
61
+ tuple: A tuple containing the prompt and negative prompt strings.
62
+ """
63
+ # Retrieve the enhanced sentence associated with the original text
64
+ enhanced_sentence = sentence_mapping.get(text, text)
65
+ image_descriptions = process_text(enhanced_sentence, character_dict)
66
+ # Define prompts and other parameters
67
+ prompt = f"Make an illustration in {selected_style} style from: {image_descriptions}"
68
+ negative_prompt = "lowres, bad anatomy, bad hands, text, chat box, words, error, missing fingers, extra digit, " \
69
+ "fewer digits, cropped, worst quality, low quality, normal quality, jpeg artifacts, signature, " \
70
+ "watermark, username, blurry "
71
+ return prompt, negative_prompt
72
+
73
+ def get_image_from_space(text, sentence_mapping, character_dict, selected_style, client):
74
+ """
75
+ Requests an image from a Hugging Face space based on the provided prompt.
76
+
77
+ Parameters:
78
+ - prompt (str): The text prompt for image generation.
79
+ - negative_prompt (str): Text specifying what to avoid in the image.
80
+
81
+ Returns:
82
+ bytes: The generated image data in bytes format, or None if the request fails.
83
+ """
84
+ image_bytes = None # Initialize image bytes to None for error handling
85
+ try:
86
+ with st.spinner("注讜讚 讻诪讛 专讙注讬诐 讜讛讗讬讜专 讬讜驻讬注"):
87
+ # Define the payload with the text prompt
88
+ prompt,_ = generate_prompt(text, sentence_mapping, character_dict, selected_style)
89
+ payload = {
90
+ "inputs": prompt
91
+ }
92
+ result = client.predict(
93
+ prompt=payload,
94
+ api_name="/predict"
95
+ )
96
+
97
+ # Check if the result is a base64 encoded string
98
+ if isinstance(result, str):
99
+ image_bytes = base64.b64decode(result)
100
+ return image_bytes
101
+ else:
102
+ st.error("讗讜讬 诇讗 谞讬转谉 诇讬讬爪专 转诪讜谞讛, 讬砖 诇谞住讜转 砖讜讘 讘讛诪砖讱")
103
+ except Exception as e:
104
+ print(f"讗讜讬 诇讗 谞讬转谉 诇讬讬爪专 转诪讜谞讛, 讬砖 诇谞住讜转 砖讜讘 讘讛诪砖讱: {e}")
105
+ return image_bytes