Advertisement
kopyl

Untitled

Apr 9th, 2023
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.83 KB | None | 0 0
  1. I developed AI logo generator which generates images to a prompt.
  2.  
  3. When a user enters a prompt, it's wrapped into another prompt:
  4.  
  5. <lora:new15:1> newlogo {prompt}
  6.  
  7. Here is an example:
  8. A user enters a prompt "deer", and it transforms into a final prompt "<lora:new15:1> newlogo deer".
  9.  
  10. But this approach has 2 drawbacks:
  11. 1. If a user enters something complicated, the AI can't figure out what it is. Here are some examples of that complicated things requested by a user:
  12. - Shopify (SomeComplexBrandName)
  13. - Hair salon (AI does not know what to generate – hair? salon? what is salon? etc)
  14.  
  15. 2. If a user enters something like "a minimal logotype of a shark", it gets injected into a final prompt which in this case would look like this: "<lora:new15:1> newlogo a minimal logotype of a shark"
  16.  
  17. So I need a user to enter a subject which can be easily understood by my AI logo generator and it has to be just a subject – meaning no redundant words
  18.  
  19. If i give you some complex user's prompt, would you be able to transform it into something which can be recognized by the AI logo generator and at the same time give a user a satisfying result?
  20.  
  21. Bad example would be:
  22. i give you: "a logo of a hair salon"
  23. you give me: "wooden box"
  24.  
  25. i give you: "think of a logo for a platform that provides services to people who are engaged in retro drops in cryptocurrency projects"
  26. you give me: "cryptocurrency retro drops"
  27.  
  28. i give you: "HCA"
  29. you give me: "HCA"
  30.  
  31. i give you: "blackbird"
  32. you give me: "blackbird"
  33.  
  34. ---
  35.  
  36. Better example would be:
  37. i give you: "a logo of a hair salon"
  38. you give me: "hair"
  39.  
  40. i give you: "think of a logo for a platform that provides services to people who are engaged in retro drops in cryptocurrency projects"
  41. you give me: "coin"
  42.  
  43. i give you: "HCA"
  44. you give me: "abstract"
  45.  
  46. i give you: "blackbird"
  47. you give me: "bird"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement