Aster
commited on
Commit
β’
75e5423
1
Parent(s):
52bc64f
Upload 7 layers of enlarged convolution
Browse files- Cargo.toml +28 -0
- models/{srcnn β upconv7}/noise0_model.onnx +0 -0
- models/{srcnn β upconv7}/noise1_model.onnx +0 -0
- models/{srcnn β upconv7}/noise2_model.onnx +0 -0
- models/{srcnn β upconv7}/noise3_model.onnx +0 -0
- models/{srcnn β upconv7}/scale2.0x_model.onnx +0 -0
- models/upconv7trans/noise0_scale2.0x_model.onnx +3 -0
- models/upconv7trans/noise1_scale2.0x_model.onnx +3 -0
- models/upconv7trans/noise2_scale2.0x_model.onnx +3 -0
- models/upconv7trans/noise3_scale2.0x_model.onnx +3 -0
- models/upconv7trans/scale2.0x_model.onnx +3 -0
- package.json +6 -0
Cargo.toml
ADDED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[package]
|
2 |
+
name = "waifu2x-tests"
|
3 |
+
version = "0.1.0"
|
4 |
+
authors = ["Aster <192607617@qq.com>"]
|
5 |
+
description = "Waifu2X super resolution in rust"
|
6 |
+
repository = "https://github.com/oovm/sub_projects"
|
7 |
+
documentation = "https://docs.rs/waifu2x"
|
8 |
+
readme = "Readme.md"
|
9 |
+
license = "MPL-2.0"
|
10 |
+
edition = "2021"
|
11 |
+
|
12 |
+
[dependencies]
|
13 |
+
|
14 |
+
[dependencies.image]
|
15 |
+
version = "0.24.5"
|
16 |
+
features = ["png", "jpeg", "jpeg_rayon"]
|
17 |
+
default-features = false
|
18 |
+
|
19 |
+
[dependencies.ort]
|
20 |
+
version = "1.14.1"
|
21 |
+
#features = []
|
22 |
+
default-features = false
|
23 |
+
|
24 |
+
[dev-dependencies]
|
25 |
+
|
26 |
+
|
27 |
+
[features]
|
28 |
+
default = []
|
models/{srcnn β upconv7}/noise0_model.onnx
RENAMED
File without changes
|
models/{srcnn β upconv7}/noise1_model.onnx
RENAMED
File without changes
|
models/{srcnn β upconv7}/noise2_model.onnx
RENAMED
File without changes
|
models/{srcnn β upconv7}/noise3_model.onnx
RENAMED
File without changes
|
models/{srcnn β upconv7}/scale2.0x_model.onnx
RENAMED
File without changes
|
models/upconv7trans/noise0_scale2.0x_model.onnx
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:fefe9cc0ff4dcdbdd60f03d5ad59b5566505b1016063f1e6f55c88b3623c305f
|
3 |
+
size 2212274
|
models/upconv7trans/noise1_scale2.0x_model.onnx
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0dd752bc0f69d9c1eee094be813dafb00a6d78834594a3ca1d6502b73ee47d1d
|
3 |
+
size 2212274
|
models/upconv7trans/noise2_scale2.0x_model.onnx
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:93f5e1539ad74ac8f05046343f029c3757e49fdab36afb60bb46f219b855953a
|
3 |
+
size 2212274
|
models/upconv7trans/noise3_scale2.0x_model.onnx
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d80adc9df903aa09c43d2cae7802af57c013be4a66265992fe1637f706fe6dde
|
3 |
+
size 2212274
|
models/upconv7trans/scale2.0x_model.onnx
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e0c0250973ca87ba58fe17479b6e1a1fa9db006a1166cb70ac4f168d87712fc3
|
3 |
+
size 2212274
|
package.json
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"private": true,
|
3 |
+
"scripts": {
|
4 |
+
"p": "cargo publish --allow-dirty"
|
5 |
+
}
|
6 |
+
}
|