🚀 Flux_Lora_Aquarel_Watercolor
このモデルは、水彩画スタイルの画像生成に最適化されたLoRAモデルです。特定のトリガーワードを使用することで、水彩画調の画像を生成できます。
🚀 クイックスタート
このモデルは、以下のテンプレートで最適な結果が得られます。
A painting of ... In a watercolor style, AQUACOLTOK. White background.
ウィジェットでの使用例
以下は、ウィジェットを使用した具体的な入出力例です。
入力 |
出力 |
A painting of a mountain climber reaching the summit of a peak, with the word 'ASCEND' appearing in the snow patterns on the mountain's surface. In a watercolor style, AQUACOLTOK. White background. |
images/ascend.webp |
A painting of a vintage - style travel poster, with a suitcase and globe in the foreground, and the words "Destination Unknown" printed in a beautiful, cursive font on a distressed luggage tag. In a watercolor style, AQUACOLTOK. White background. |
images/vintage.webp |
A painting of a quaint, old - fashioned bookstore, with the words "Tales of Wonder" etched in gold lettering above the storefront. In a watercolor style, AQUACOLTOK. White background. |
images/bookstore.webp |
A painting of a person giving a TED talk on a TED stage with the TED logo, "the speaker". In a watercolor style, AQUACOLTOK. |
images/ted.webp |
A painting of a barista creating an intricate latte art design, with the "Coffee Creations" logo skillfully formed within the latte foam. In a watercolor style, AQUACOLTOK. White background. |
images/coffee.webp |
✨ 主な機能
- 水彩画スタイルの画像生成が可能です。
- 特定のトリガーワード
AQUACOLTOK
を使用することで、水彩画調の画像を生成できます。
📦 インストール
このモデルは、🧨 diffusers library を使用して利用できます。以下のコードを参考にしてください。
from diffusers import AutoPipelineForText2Image
import torch
pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.float16).to('cuda')
pipeline.load_lora_weights('SebastianBodza/flux_lora_aquarel_watercolor', weight_name='lora.safetensors')
image = pipeline('your prompt').images[0]
💻 使用例
基本的な使用法
from diffusers import AutoPipelineForText2Image
import torch
pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.float16).to('cuda')
pipeline.load_lora_weights('SebastianBodza/flux_lora_aquarel_watercolor', weight_name='lora.safetensors')
image = pipeline('A painting of a beautiful flower. In a watercolor style, AQUACOLTOK. White background.').images[0]
高度な使用法
LoRAの重み付け、マージ、融合などの詳細については、documentation on loading LoRAs in diffusers を参照してください。
📚 ドキュメント
トリガーワード
画像生成をトリガーするには、AQUACOLTOK
を使用する必要があります。
モデルのトレーニング
このモデルは、Replicateを使用してトレーニングされました。
https://replicate.com/ostris/flux-dev-lora-trainer/train
📄 ライセンス
このモデルは、flux - 1 - dev - non - commercial - license の下で提供されています。
属性 |
详情 |
モデルタイプ |
LoRAモデル |
ベースモデル |
black - forest - labs/FLUX.1 - dev |
トレーニングデータ |
未記載 |
パイプラインタグ |
text - to - image |