Upload folder using huggingface_hub
Browse files- .gitattributes +15 -0
- README.md +32 -3
- icarus/moon-2025-08-25/plane0_rand.ts +3 -0
- icarus/moon-2025-08-25/plane1_rand.ts +3 -0
- pdhd/dikshant/mobileunet_largedataset_fullimage.ts +3 -0
- pdhd/dikshant/mobileunet_largedataset_rebin4.ts +3 -0
- pdhd/dikshant/unet_largedataset_fullimage.ts +3 -0
- pdhd/dikshant/unet_largedataset_rebin4.ts +3 -0
- pdhd/hokyeong/CP49_mobilenetv3.ts +3 -0
- pdsp/pth-model/nestedunet-l23-cosmic500-e50.pth +3 -0
- pdsp/pth-model/unet-l23-cosmic500-e50.pth +3 -0
- pdsp/pth-model/unet-lt-cosmic500-e50.pth +3 -0
- pdsp/ts-model-1.3/nestedunet-l23-cosmic500-e50.ts +3 -0
- pdsp/ts-model-1.3/unet-l23-cosmic500-e50.ts +3 -0
- pdsp/ts-model-1.3/unet-lt-cosmic500-e50.ts +3 -0
- pdsp/ts-model-2.3/nestedunet-l23-cosmic500-e50.ts +3 -0
- pdsp/ts-model-2.3/unet-l23-cosmic500-e50.ts +3 -0
- pdsp/ts-model-2.3/unet-lt-cosmic500-e50.ts +3 -0
- sbnd/sbnd_data-v01_34_00/plane0.ts +3 -0
- sbnd/sbnd_data-v01_34_00/plane1.ts +3 -0
.gitattributes
CHANGED
@@ -33,3 +33,18 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
36 |
+
icarus/moon-2025-08-25/plane0_rand.ts filter=lfs diff=lfs merge=lfs -text
|
37 |
+
icarus/moon-2025-08-25/plane1_rand.ts filter=lfs diff=lfs merge=lfs -text
|
38 |
+
pdhd/dikshant/mobileunet_largedataset_fullimage.ts filter=lfs diff=lfs merge=lfs -text
|
39 |
+
pdhd/dikshant/mobileunet_largedataset_rebin4.ts filter=lfs diff=lfs merge=lfs -text
|
40 |
+
pdhd/dikshant/unet_largedataset_fullimage.ts filter=lfs diff=lfs merge=lfs -text
|
41 |
+
pdhd/dikshant/unet_largedataset_rebin4.ts filter=lfs diff=lfs merge=lfs -text
|
42 |
+
pdhd/hokyeong/CP49_mobilenetv3.ts filter=lfs diff=lfs merge=lfs -text
|
43 |
+
pdsp/ts-model-1.3/nestedunet-l23-cosmic500-e50.ts filter=lfs diff=lfs merge=lfs -text
|
44 |
+
pdsp/ts-model-1.3/unet-l23-cosmic500-e50.ts filter=lfs diff=lfs merge=lfs -text
|
45 |
+
pdsp/ts-model-1.3/unet-lt-cosmic500-e50.ts filter=lfs diff=lfs merge=lfs -text
|
46 |
+
pdsp/ts-model-2.3/nestedunet-l23-cosmic500-e50.ts filter=lfs diff=lfs merge=lfs -text
|
47 |
+
pdsp/ts-model-2.3/unet-l23-cosmic500-e50.ts filter=lfs diff=lfs merge=lfs -text
|
48 |
+
pdsp/ts-model-2.3/unet-lt-cosmic500-e50.ts filter=lfs diff=lfs merge=lfs -text
|
49 |
+
sbnd/sbnd_data-v01_34_00/plane0.ts filter=lfs diff=lfs merge=lfs -text
|
50 |
+
sbnd/sbnd_data-v01_34_00/plane1.ts filter=lfs diff=lfs merge=lfs -text
|
README.md
CHANGED
@@ -1,3 +1,32 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
```bash
|
2 |
+
├── icarus
|
3 |
+
│ └── moon-2025-08-25
|
4 |
+
│ ├── plane0_rand.ts
|
5 |
+
│ └── plane1_rand.ts
|
6 |
+
├── pdhd
|
7 |
+
│ ├── dikshant
|
8 |
+
│ │ ├── mobileunet_largedataset_fullimage.ts
|
9 |
+
│ │ ├── mobileunet_largedataset_rebin4.ts
|
10 |
+
│ │ ├── unet_largedataset_fullimage.ts
|
11 |
+
│ │ └── unet_largedataset_rebin4.ts
|
12 |
+
│ └── hokyeong
|
13 |
+
│ └── CP49_mobilenetv3.ts
|
14 |
+
├── pdsp
|
15 |
+
│ ├── pth-model # models in pytorch pickle format
|
16 |
+
│ │ ├── nestedunet-l23-cosmic500-e50.pth # input: loose, MP2, MP3
|
17 |
+
│ │ ├── unet-l23-cosmic500-e50.pth # input: loose, MP2, MP3
|
18 |
+
│ │ └── unet-lt-cosmic500-e50.pth # input: loose, tight
|
19 |
+
│ ├── ts-model-1.3 # TorchScript model saved using PyTorch 1.3
|
20 |
+
│ │ ├── nestedunet-l23-cosmic500-e50.ts
|
21 |
+
│ │ ├── unet-l23-cosmic500-e50.ts
|
22 |
+
│ │ └── unet-lt-cosmic500-e50.ts
|
23 |
+
│ └── ts-model-2.3 # TorchScript model saved using PyTorch 2.3
|
24 |
+
│ ├── nestedunet-l23-cosmic500-e50.ts
|
25 |
+
│ ├── unet-l23-cosmic500-e50.ts
|
26 |
+
│ └── unet-lt-cosmic500-e50.ts
|
27 |
+
├── README.md
|
28 |
+
└── sbnd
|
29 |
+
└── sbnd_data-v01_34_00
|
30 |
+
├── plane0.ts
|
31 |
+
└── plane1.ts
|
32 |
+
```
|
icarus/moon-2025-08-25/plane0_rand.ts
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:13510d9225bf4e10c940e4a720a3f8f5c366b79f492d3ec50682f50d1100f4d1
|
3 |
+
size 1063648
|
icarus/moon-2025-08-25/plane1_rand.ts
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e076b4fdd7027944454272e9197627d9d04e34e6f906e6bf7c2cd1f84ec30d56
|
3 |
+
size 1063648
|
pdhd/dikshant/mobileunet_largedataset_fullimage.ts
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:dedbe54cc923dcb926a033b8e7407e5ef6ff0c3b0b4d1c44aa19a5ae8fffde35
|
3 |
+
size 38076145
|
pdhd/dikshant/mobileunet_largedataset_rebin4.ts
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b07423514b30cc33836d7fd0c7df269dc36a3d0e0818462b8fc9f0f4f7cf2748
|
3 |
+
size 38076145
|
pdhd/dikshant/unet_largedataset_fullimage.ts
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8f8550e77389c25bd7e0030cb34be5d3bef17aa4665883aee5bbf78829748dc9
|
3 |
+
size 138257965
|
pdhd/dikshant/unet_largedataset_rebin4.ts
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3e58c39cb4b66b350a6e2511773e2f39a03f7c95ca104a00511047aba1e51940
|
3 |
+
size 138257965
|
pdhd/hokyeong/CP49_mobilenetv3.ts
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7fad394dca5c975e8141f93dd77cbc2f1f3a77b97ef3d7e72842f0e66b649fdf
|
3 |
+
size 21264426
|
pdsp/pth-model/nestedunet-l23-cosmic500-e50.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:970f75b85a3f59cbe49554bf60bbe9caa9eec0681375586dedd3321a696604fd
|
3 |
+
size 36716451
|
pdsp/pth-model/unet-l23-cosmic500-e50.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2bf1a9565852ca11c60cfca0156429075380091c8e37759f33943517a044c495
|
3 |
+
size 53635867
|
pdsp/pth-model/unet-lt-cosmic500-e50.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3f4d444018c143789c627b7197dbcf3f04c712939c44c57e6250f784ba28e020
|
3 |
+
size 53633563
|
pdsp/ts-model-1.3/nestedunet-l23-cosmic500-e50.ts
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b7f05699377bf4f8a9af15cbbd290093eceef7cdb5b15fe7cf102673bdb2d752
|
3 |
+
size 38701058
|
pdsp/ts-model-1.3/unet-l23-cosmic500-e50.ts
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:91dd0e8d2e7e9ae528a79eaed437095f50ad5e94b3a3371a81a05607d8b53e56
|
3 |
+
size 54917467
|
pdsp/ts-model-1.3/unet-lt-cosmic500-e50.ts
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:072832d8fd8bfcfb6469de67acf74724d0fefa920eb684298df8ef581a866246
|
3 |
+
size 54905627
|
pdsp/ts-model-2.3/nestedunet-l23-cosmic500-e50.ts
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7af3129f68fb36c06fc8238eb491bb9122ead450e691bf6fabe35d4ef0dd0a01
|
3 |
+
size 36885092
|
pdsp/ts-model-2.3/unet-l23-cosmic500-e50.ts
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:aba7b007a9bc151d4a7537bccb50258a39ff90bd7392788f8f4fca8fb9fd5882
|
3 |
+
size 53779292
|
pdsp/ts-model-2.3/unet-lt-cosmic500-e50.ts
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:92879cd7a58dcfb5a290346448c5ef63ed9c4a544ecda2c083900484a991e1ea
|
3 |
+
size 53776667
|
sbnd/sbnd_data-v01_34_00/plane0.ts
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:36bb362a3400d50532f5459fff3c1a3b50162dae7d8f29780d06aaaf3d0c0f12
|
3 |
+
size 14433606
|
sbnd/sbnd_data-v01_34_00/plane1.ts
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:22bf82d46d2b5f3470c25796a9ac6ddee0768e7471ff477772a8f06e05178212
|
3 |
+
size 14433606
|