こすたろーんエンジニアの試行錯誤部屋

作成物の備忘録を書いていきますー

2023-11-01から1ヶ月間の記事一覧

【Stable Diffusion】リアル系マージモデルのyayoi_mixを使ってみた

スポンサーリンク (adsbygoogle = window.adsbygoogle || []).push({}); 以前にリアル系の画像生成が得意なBRA(Beautiful Realistic Asians)を使って画像生成を行いました 今回はBRAを含めたマージモデルのyayoi_mixを使って画像生成を行ってみたいと思い…

【Stable Diffusion】アニメ画像が生成できるMeinaPastelを試してみた

スポンサーリンク (adsbygoogle = window.adsbygoogle || []).push({}); narutoのLoRAを試している中でMeinaPastelなるモデルがあることを知ったので 早速試してみようかと思います 目次 目次 この記事でわかること 1.実行環境 2.生成結果 3.参考 所感 スポ…

【pandas】how to deal with the error that is "ValueError Unknown engine openpyxl"

スポンサーリンク (adsbygoogle = window.adsbygoogle || []).push({}); ValueError: Unknown engine: openpyxl" may occur when reading excel in the pandas module. This article is a reminder of what to do when the above error occurs even though t…

【GAN】try to use RealESRGAN on google colab to enhance image quality

GAN

スポンサーリンク (adsbygoogle = window.adsbygoogle || []).push({}); This time I tried RealESRGAN on google colab, which allows for higher resolution. This article is a reminder to get RealESRGAN working. contents contents abstract 1.requir…

【docker】I made a dockerfile for python 3.7 on ubuntu18.

スポンサーリンク (adsbygoogle = window.adsbygoogle || []).push({}); ubuntu18.04 comes with python3.6 by default. Recent modules such as mlflow require python 3.7 or higher, so you will need to upgrade your python version. Create a dockerfi…

【Stable Diffusion】I try to create a kimono image with Diffusers and lora files

スポンサーリンク (adsbygoogle = window.adsbygoogle || []).push({}); Last time I tried to generate an image of a yukata. technoxs-stacker.hatenablog.com This time, I tried to see if I could create a kimono image with a lora file using a dif…

【pandas】pd.read_excelでopenpyxlエンジン指定時「ValueError: Unknown engine: openpyxl」が発生したときの対処法

スポンサーリンク (adsbygoogle = window.adsbygoogle || []).push({}); pandasモジュールでエクセルを読む込む際「ValueError: Unknown engine: openpyxl」が発生することがあります この記事は関連モジュールはインストール済みにもかかわらず上記エラーが…

【GAN】google colab上でRealESRGANを使って画像を高画質化する

GAN

スポンサーリンク (adsbygoogle = window.adsbygoogle || []).push({}); 今回は高解像度化ができるRealESRGANをgoogle colab上で試してみました この記事はRealESRGANを動作させるまでの備忘録になります 目次 目次 この記事でわかること 1.実行環境 2.環境…

google colab上でdiffusersとRealESRGANを使う際に発生したDetected that PyTorch and torchvision were compiled with different CUDA major versionsの対処法

スポンサーリンク (adsbygoogle = window.adsbygoogle || []).push({}); google colab上iffusersとRealESRGANを使うためにモジュールをインストールして実行した際に Detected that PyTorch and torchvision were compiled with different CUDA major versio…

【Docker】ubuntu18でpython3.7が使えるdockerfileを作ってみた

スポンサーリンク (adsbygoogle = window.adsbygoogle || []).push({}); ubuntu18.04はデフォルトでpython3.6が入ってます mlflowなどの最近のモジュールではpython3.7以上が必要となるので、どうしてもpythonのバージョンアップが 必要になります 今回ubunt…

【Stable Diffusion】I ran SDXL with google colab and Diffusers.

スポンサーリンク (adsbygoogle = window.adsbygoogle || []).push({}); Stability AI's image generation AI model SDXL 1.0 is now available. Not only has the detailed description, which was a weakness of the existing generation AI, been improve…