2024年4月14日
『TecoGAN』の記事が人気あるので、
さらに手軽に実装できる『Vsual Studio Code Remote Container』仕様のTecoGANを作成してみました。
Windows11 pro (Windows Insier Program)
マウスコンピューター製G-Tune E5-144
CPU:インテル(R) Core(TM) i7-10875H プロセッサー
メモリ:32GB メモリ
SSD (M.2):512GB NVMe SSD
グラフィックス:NVIDIA GeForce RTX2060 / 6GB
Githubからクローン→フォルダへ移動→フォルダ内容をVSCodeで開く
1 2 3 |
git clone https://github.com/supplepentan/penta-tecogan-vscode-remote-container.git cd penta-tecogan-vscode-remote-container code . |
左下の緑のタブからのリモートウィンドウを開き、”Reopen in Container”をクリックしコンテナ作成・起動。
新しいターミナルを開きコマンド。(操作方法は、こちらを参照してください。)
1 2 3 4 5 6 7 8 9 10 |
# Download our TecoGAN model, the _Vid4_ and _TOS_ scenes shown in our paper and video. python3 runGan.py 0 # Run the inference mode on the calendar scene. # You can take a look of the parameter explanations in the runGan.py, feel free to try other scenes! python3 runGan.py 1 # Evaluate the results with 4 metrics, PSNR, LPIPS[1], and our temporal metrics tOF and tLP with pytorch. # Take a look at the paper for more details! python3 runGan.py 2 |
結果は、こちらを参考ください。
『TecoGAN』の記事が人気あるのですが、
そんなに応用できるものではないと思います、、、
ニュースで上がっているような目的のために再学習させるなら、
他のAIコードを使った方が手っ取り早いと思います、、、
(‘ω’)