2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

AnimeGANv2に、かわいいトレーニング済みモデルが出てきて、
しかも、Torch-Hubでモデルをダウンロードできるようになって、使いやすくなった。

なにせ、以下のコードだけで写真をアニメ風に変換できる。

from PIL import Image
import torch

model = torch.hub.load("bryandlee/animegan2-pytorch:main", "generator", pretrained="face_paint_512_v2")
face2paint = torch.hub.load("bryandlee/animegan2-pytorch:main", "face2paint", size=512)

img = Image.open(input_image_path).convert("RGB")
out = face2paint(model, img)

事前トレーニング済みの重みには2021/12現在以下のバリエーションがある。

face_paint_512_v2 celeba_distill face_paint_512_v1 paprika

Colabデモ:AnimeGAN2Demo


Videoデモ: huggingface
Dec-14-2021 09-40-28.gif
Pytorchモデル:bryandlee/animegan2-pytorch
Tensorflowオリジナルリポジトリ: TachibanaYoshino/AnimeGANv2
CoreML変換記事:AnimeGANv2をCore MLに変換してiOSでつかう【変換済みモデルあり】

🐣


フリーランスエンジニアです。
お仕事のご相談こちらまで
簡単な開発内容をお書き添えの上、お気軽にご連絡ください。
rockyshikoku@gmail.com

Core MLやARKitを使ったアプリを作っています。
機械学習/AR関連の情報を発信しています。

Twitter
Medium

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?