Skip to content

Commit

Permalink
update lora defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
genekogan committed Sep 20, 2023
1 parent 3531ec3 commit e9526d1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions bots/banny/banny.py
Expand Up @@ -123,7 +123,7 @@ async def create(

if "banny" in text_input.lower():
config.lora = '6509cd50762edacfc4ef8434'
config.lora_scale = 0.8
config.lora_scale = 0.65

start_bot_message = f"**{text_input}** - <@!{ctx.author.id}>\n"
await ctx.respond("Starting to create...")
Expand Down Expand Up @@ -175,7 +175,7 @@ async def remix(
)

config.lora = '6509cd50762edacfc4ef8434'
config.lora_scale = 0.8
config.lora_scale = 0.65

start_bot_message = f"**Remix** by <@!{ctx.author.id}>\n"
await ctx.respond("Remixing...")
Expand Down Expand Up @@ -244,7 +244,7 @@ async def real2real(
)

config.lora = '6509cd50762edacfc4ef8434'
config.lora_scale = 0.8
config.lora_scale = 0.65

start_bot_message = f"**Real2Real** by <@!{ctx.author.id}>\n"
await ctx.respond("Lerping...")
Expand Down Expand Up @@ -322,7 +322,7 @@ async def lerp(

if "banny" in interpolation_texts[0].lower() or "banny" in interpolation_texts[1].lower():
config.lora = '6509cd50762edacfc4ef8434'
config.lora_scale = 0.8
config.lora_scale = 0.65

start_bot_message = (
f"**{text_input1}** to **{text_input2}** - <@!{ctx.author.id}>\n"
Expand Down
8 changes: 4 additions & 4 deletions bots/kojii/kojii.py
Expand Up @@ -123,7 +123,7 @@ async def create(

if "kojii" in text_input.lower():
config.lora = '6509d065762edacfc4f060fb'
config.lora_scale = 0.8
config.lora_scale = 0.65

start_bot_message = f"**{text_input}** - <@!{ctx.author.id}>\n"
await ctx.respond("Starting to create...")
Expand Down Expand Up @@ -175,7 +175,7 @@ async def remix(
)

config.lora = '6509d065762edacfc4f060fb'
config.lora_scale = 0.8
config.lora_scale = 0.65

start_bot_message = f"**Remix** by <@!{ctx.author.id}>\n"
await ctx.respond("Remixing...")
Expand Down Expand Up @@ -244,7 +244,7 @@ async def real2real(
)

config.lora = '6509d065762edacfc4f060fb'
config.lora_scale = 0.8
config.lora_scale = 0.65

start_bot_message = f"**Real2Real** by <@!{ctx.author.id}>\n"
await ctx.respond("Lerping...")
Expand Down Expand Up @@ -322,7 +322,7 @@ async def lerp(

if "kojii" in interpolation_texts[0].lower() or "kojii" in interpolation_texts[1].lower():
config.lora = '6509d065762edacfc4f060fb'
config.lora_scale = 0.8
config.lora_scale = 0.65

start_bot_message = (
f"**{text_input1}** to **{text_input2}** - <@!{ctx.author.id}>\n"
Expand Down

0 comments on commit e9526d1

Please sign in to comment.