Zuntan commited on
Commit
6177cfc
·
1 Parent(s): 2f2b91b

Upload 14 files

Browse files
models/G_10000_c.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:17380bb3599cff9d5b15fcbde967fe415e7e60b747d737009d98feea6347ba7a
3
+ size 200687248
models/G_12000_c.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:64ba3b258b6388eecfbf5e1f3e362b62c2e77c701bccdd01a4ebb760a811e6fc
3
+ size 200687248
models/G_14000_c.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fee8cd724862a78f61195e5142858bb1b8edb58c319059fe8ef21360d08247e4
3
+ size 200687248
models/G_16000_c.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2994877ea1ca0bf2191c23440d17eb4455cf69a6730a97706402727e74cba42b
3
+ size 200687248
models/G_18000_c.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bd517508c2b75225de6751f1bb89e5bb65952961fc113551d29d3be578f8bca4
3
+ size 200687248
models/G_20000_c.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9432c6c302da07bdbb15af9ea6cb49148083a81e0b082cfedebd294d66eb9d64
3
+ size 200687248
models/G_2000_c.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8dfc712c3bc8073387d536b0bd25249a005dcaeb61b52cb793ab6b1306a18fd0
3
+ size 200686222
models/G_22000_c.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a9f461be5dd08521cc149936e393d31c26e358874abf3bc08b8aa23082e8752f
3
+ size 200687248
models/G_24000_c.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dc62c4c83bcb4523f36756396200f88a5b64e34e23019ba8b77ea32e4e1d07b9
3
+ size 200687248
models/G_26000_c.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:733829c0d0de0f842cc2c4747a1fe62b1c02896174f6424a08b5da9b469131cd
3
+ size 200687248
models/G_4000_c.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:09016da71d49b3bb4e534bd254eb04ec684c9af8b9603e877751ba2ee15a134f
3
+ size 200686222
models/G_6000_c.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3b222e7bfd71036347ab5829e80be9949b09e02106f5c1f23950087f381aaf9b
3
+ size 200686222
models/G_8000_c.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:96cbc5a550ebc608eb74e62b0dea4659f321aa991709549344b4a89876c10e1e
3
+ size 200686222
models/G_WebUi.bat ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @echo off
2
+ chcp 65001 > NUL
3
+ pushd %~dp0..\..\..\
4
+
5
+ if "%~1" == "" (
6
+ echo [ERROR] G_*000.pth のモデルファイルをドラッグ&ドロップしてください。
7
+ pause & popd & exit /b 1
8
+ )
9
+
10
+ call venv\Scripts\activate.bat
11
+ if %errorlevel% neq 0 ( pause & popd & exit /b %errorlevel% )
12
+
13
+ set PS_CMD=PowerShell -Version 5.1 -ExecutionPolicy Bypass
14
+ %PS_CMD% "&{(Get-Content '%~dp0..\config.yml' -Encoding UTF8) -replace 'models/G_.*\.pth', 'models/%~n1.pth' | Set-Content '%~dp0..\config.yml' -Encoding UTF8 }"
15
+
16
+ copy /Y %~dp0..\config.yml config.yml > NUL
17
+ if %errorlevel% neq 0 ( pause & popd & exit /b %errorlevel% )
18
+
19
+ python webui.py
20
+ if %errorlevel% neq 0 ( pause & popd & exit /b %errorlevel% )
21
+
22
+ popd rem %~dp0..\..\..\