Datasets:
Upload folder using huggingface_hub
Browse filesThis view is limited to 50 files because it contains too many changes. See raw diff
- README.md +37 -26
- data/nasar-train-000000.tar +2 -2
- data/nasar-train-000001.tar +2 -2
- data/nasar-train-000002.tar +2 -2
- data/nasar-train-000003.tar +2 -2
- data/nasar-train-000004.tar +2 -2
- data/nasar-train-000005.tar +2 -2
- data/nasar-train-000006.tar +2 -2
- data/nasar-train-000007.tar +2 -2
- data/nasar-train-000008.tar +2 -2
- data/nasar-train-000009.tar +2 -2
- data/nasar-train-000010.tar +2 -2
- data/nasar-train-000011.tar +2 -2
- data/nasar-train-000012.tar +2 -2
- data/nasar-train-000013.tar +2 -2
- data/nasar-train-000014.tar +2 -2
- data/nasar-train-000015.tar +2 -2
- data/nasar-train-000016.tar +2 -2
- data/nasar-train-000017.tar +2 -2
- data/nasar-train-000018.tar +2 -2
- data/nasar-train-000019.tar +2 -2
- data/nasar-train-000020.tar +2 -2
- data/nasar-train-000021.tar +2 -2
- data/nasar-train-000022.tar +2 -2
- data/nasar-train-000023.tar +2 -2
- data/nasar-train-000024.tar +2 -2
- data/nasar-train-000025.tar +2 -2
- data/nasar-train-000026.tar +2 -2
- data/nasar-train-000027.tar +2 -2
- data/nasar-train-000028.tar +2 -2
- data/nasar-train-000029.tar +2 -2
- data/nasar-train-000030.tar +2 -2
- data/nasar-train-000031.tar +2 -2
- data/nasar-train-000032.tar +2 -2
- data/nasar-train-000033.tar +2 -2
- data/nasar-train-000034.tar +2 -2
- data/nasar-train-000035.tar +2 -2
- data/nasar-train-000036.tar +2 -2
- data/nasar-train-000037.tar +2 -2
- data/nasar-train-000038.tar +2 -2
- data/nasar-train-000039.tar +2 -2
- data/nasar-train-000040.tar +2 -2
- data/nasar-train-000041.tar +2 -2
- data/nasar-train-000042.tar +2 -2
- data/nasar-train-000043.tar +2 -2
- data/nasar-train-000044.tar +2 -2
- data/nasar-train-000045.tar +2 -2
- data/nasar-train-000046.tar +2 -2
- data/nasar-train-000047.tar +2 -2
- data/nasar-train-000048.tar +2 -2
README.md
CHANGED
|
@@ -19,7 +19,7 @@ task_categories:
|
|
| 19 |
# NA-SAR
|
| 20 |
|
| 21 |
NA-SAR is a North America synthetic aperture radar pretraining dataset built
|
| 22 |
-
from
|
| 23 |
pretraining of SAR foundation models.
|
| 24 |
|
| 25 |
This release is an unsplit pretraining corpus. There are no train/validation/test
|
|
@@ -30,6 +30,7 @@ appropriate splits.
|
|
| 30 |
## Dataset Contents
|
| 31 |
|
| 32 |
- Samples: 1,099,604
|
|
|
|
| 33 |
- Patch size: 128 x 128 pixels
|
| 34 |
- RTC views: two spatial views per sample
|
| 35 |
- Temporal RTC acquisitions: prime and secondary
|
|
@@ -37,9 +38,8 @@ appropriate splits.
|
|
| 37 |
- Incidence angle: one channel per spatial view
|
| 38 |
- InSAR phase: stored as cos(phi), sin(phi)
|
| 39 |
- Coherence: one channel per spatial view
|
| 40 |
-
- DEM elevation:
|
| 41 |
-
- DEM
|
| 42 |
-
- DEM slope: one normalized slope-degree channel per sample
|
| 43 |
|
| 44 |
Each tensor sample contains:
|
| 45 |
|
|
@@ -55,14 +55,16 @@ Each tensor sample contains:
|
|
| 55 |
| `coh_view_0` | `(1, 128, 128)` | Coherence for view 0 |
|
| 56 |
| `ifg_view_1` | `(2, 128, 128)` | InSAR phase for view 1 as cos/sin |
|
| 57 |
| `coh_view_1` | `(1, 128, 128)` | Coherence for view 1 |
|
| 58 |
-
| `dem` | `(1, 128, 128)` |
|
| 59 |
-
| `
|
| 60 |
-
|
|
|
|
|
|
|
| 61 |
|
| 62 |
## Metadata
|
| 63 |
|
| 64 |
-
`
|
| 65 |
-
|
| 66 |
availability, and the following sharding columns:
|
| 67 |
|
| 68 |
- `sample_key`: sample key inside the WebDataset shard
|
|
@@ -72,8 +74,8 @@ availability, and the following sharding columns:
|
|
| 72 |
|
| 73 |
The metadata is filtered to samples with `quality_score > 0.53`.
|
| 74 |
|
| 75 |
-
`webdataset_summary.json` records the shard count and
|
| 76 |
-
`dem_extended
|
| 77 |
|
| 78 |
## Loading With Hugging Face Datasets
|
| 79 |
|
|
@@ -99,19 +101,25 @@ print(arrays.files)
|
|
| 99 |
|
| 100 |
## Loading With PyTorch
|
| 101 |
|
| 102 |
-
The
|
|
|
|
| 103 |
|
| 104 |
```python
|
| 105 |
-
from nasar_dataset import
|
| 106 |
|
| 107 |
-
rtc_ds =
|
| 108 |
-
insar_ds =
|
| 109 |
```
|
| 110 |
|
| 111 |
-
For
|
| 112 |
-
|
| 113 |
-
|
| 114 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 115 |
|
| 116 |
## Preprocessing Notes
|
| 117 |
|
|
@@ -132,16 +140,17 @@ zero-padded after preprocessing.
|
|
| 132 |
InSAR phase is stored as cosine and sine channels instead of wrapped phase
|
| 133 |
radians to avoid phase discontinuities at the wrap boundary.
|
| 134 |
|
| 135 |
-
DEM
|
| 136 |
-
|
| 137 |
-
|
| 138 |
-
|
| 139 |
-
|
| 140 |
|
| 141 |
## Source and Scope
|
| 142 |
|
| 143 |
-
The source data comes from OPERA
|
| 144 |
-
|
|
|
|
| 145 |
|
| 146 |
## Intended Use
|
| 147 |
|
|
@@ -156,3 +165,5 @@ self-supervised pretraining. It is not an evaluation benchmark by itself.
|
|
| 156 |
- Missing RTC polarizations are represented by zero-padded channels. The
|
| 157 |
metadata includes polarization availability flags so users can distinguish
|
| 158 |
true zeros from missing channels.
|
|
|
|
|
|
|
|
|
| 19 |
# NA-SAR
|
| 20 |
|
| 21 |
NA-SAR is a North America synthetic aperture radar pretraining dataset built
|
| 22 |
+
from NASA OPERA products. It is intended for self-supervised and masked-image
|
| 23 |
pretraining of SAR foundation models.
|
| 24 |
|
| 25 |
This release is an unsplit pretraining corpus. There are no train/validation/test
|
|
|
|
| 30 |
## Dataset Contents
|
| 31 |
|
| 32 |
- Samples: 1,099,604
|
| 33 |
+
- Shards: 91 WebDataset tar shards
|
| 34 |
- Patch size: 128 x 128 pixels
|
| 35 |
- RTC views: two spatial views per sample
|
| 36 |
- Temporal RTC acquisitions: prime and secondary
|
|
|
|
| 38 |
- Incidence angle: one channel per spatial view
|
| 39 |
- InSAR phase: stored as cos(phi), sin(phi)
|
| 40 |
- Coherence: one channel per spatial view
|
| 41 |
+
- DEM elevation: raw elevation in meters
|
| 42 |
+
- DEM slope: raw terrain slope in degrees
|
|
|
|
| 43 |
|
| 44 |
Each tensor sample contains:
|
| 45 |
|
|
|
|
| 55 |
| `coh_view_0` | `(1, 128, 128)` | Coherence for view 0 |
|
| 56 |
| `ifg_view_1` | `(2, 128, 128)` | InSAR phase for view 1 as cos/sin |
|
| 57 |
| `coh_view_1` | `(1, 128, 128)` | Coherence for view 1 |
|
| 58 |
+
| `dem` | `(1, 128, 128)` | Raw DEM elevation in meters |
|
| 59 |
+
| `slope_deg` | `(1, 128, 128)` | Raw terrain slope angle in degrees |
|
| 60 |
+
|
| 61 |
+
`dem_relief` and normalized `slope` are not stored in the WebDataset. They are
|
| 62 |
+
derived at loading time from the raw `dem` and `slope_deg` arrays.
|
| 63 |
|
| 64 |
## Metadata
|
| 65 |
|
| 66 |
+
`metadata.parquet` is the publishable metadata table for the sharded release. It
|
| 67 |
+
includes OPERA provenance, patch geometry, quality score, polarization
|
| 68 |
availability, and the following sharding columns:
|
| 69 |
|
| 70 |
- `sample_key`: sample key inside the WebDataset shard
|
|
|
|
| 74 |
|
| 75 |
The metadata is filtered to samples with `quality_score > 0.53`.
|
| 76 |
|
| 77 |
+
`webdataset_summary.json` records the shard count and DEM storage policy. For
|
| 78 |
+
this release, `dem_extended` is `"raw"` and `dem_arrays` is `["dem", "slope_deg"]`.
|
| 79 |
|
| 80 |
## Loading With Hugging Face Datasets
|
| 81 |
|
|
|
|
| 101 |
|
| 102 |
## Loading With PyTorch
|
| 103 |
|
| 104 |
+
The release includes `nasar_dataset.py`, a lightweight PyTorch loader for the
|
| 105 |
+
local shard layout:
|
| 106 |
|
| 107 |
```python
|
| 108 |
+
from nasar_dataset import NASARWebRTCDataset, NASARWebInSARDataset
|
| 109 |
|
| 110 |
+
rtc_ds = NASARWebRTCDataset("/path/to/NA-SAR-HF")
|
| 111 |
+
insar_ds = NASARWebInSARDataset("/path/to/NA-SAR-HF", require_dem=True)
|
| 112 |
```
|
| 113 |
|
| 114 |
+
For InSAR, `NASARWebInSARDataset` returns SAR arrays plus DEM-derived channels:
|
| 115 |
+
|
| 116 |
+
| Loader output key | Source array | Default normalization |
|
| 117 |
+
| --- | --- | --- |
|
| 118 |
+
| `dem_view_0/1` | `dem` | global elevation, `(-100 m, 4000 m) -> [0, 1]` |
|
| 119 |
+
| `dem_relief_view_0/1` | `dem` | patch-local p5/p95 relief -> `[0, 1]` |
|
| 120 |
+
| `slope_view_0/1` | `slope_deg` | slope degrees, `(0 deg, 45 deg) -> [0, 1]` |
|
| 121 |
+
|
| 122 |
+
These normalization ranges can be changed through the loader constructor.
|
| 123 |
|
| 124 |
## Preprocessing Notes
|
| 125 |
|
|
|
|
| 140 |
InSAR phase is stored as cosine and sine channels instead of wrapped phase
|
| 141 |
radians to avoid phase discontinuities at the wrap boundary.
|
| 142 |
|
| 143 |
+
DEM arrays are static for the spatial patch and shared across both orbit views.
|
| 144 |
+
`dem` is raw elevation in meters. `slope_deg` is raw terrain slope in degrees.
|
| 145 |
+
Derived terrain features, including global-normalized DEM, patch-local relief,
|
| 146 |
+
and normalized slope, are intentionally computed during loading rather than
|
| 147 |
+
stored as processed arrays.
|
| 148 |
|
| 149 |
## Source and Scope
|
| 150 |
|
| 151 |
+
The source SAR data comes from NASA OPERA products over North America. Terrain
|
| 152 |
+
comes from aligned DEM patches. Users should follow the applicable terms and
|
| 153 |
+
citation guidance for OPERA and DEM source products.
|
| 154 |
|
| 155 |
## Intended Use
|
| 156 |
|
|
|
|
| 165 |
- Missing RTC polarizations are represented by zero-padded channels. The
|
| 166 |
metadata includes polarization availability flags so users can distinguish
|
| 167 |
true zeros from missing channels.
|
| 168 |
+
- DEM fields are aligned to the 128 x 128 patch grid and should not be treated as
|
| 169 |
+
a standalone high-resolution terrain product.
|
data/nasar-train-000000.tar
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a3738d9f62b775391bdedc686c69adf3c9e3db86dc4a43d36612e67dc200f076
|
| 3 |
+
size 12258744320
|
data/nasar-train-000001.tar
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c66352a6b9617aa7b3e8c2aad616c5fd4867345e723aeb5c55d2c40a3ac32aea
|
| 3 |
+
size 12094156800
|
data/nasar-train-000002.tar
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:aa0335cdd0118fe173e95a09da3deae6fdc0108fe9d0a81ab50881d2a25c34f4
|
| 3 |
+
size 12044544000
|
data/nasar-train-000003.tar
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:54678967a2dfd87b0c9cf43682f3dbb3ee530232f4f27a357b334a707a85f55e
|
| 3 |
+
size 12049213440
|
data/nasar-train-000004.tar
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bed9eb8018139e73c1a2d05ba42b51abc83f06cd66915971b18d3e8ca88a5f40
|
| 3 |
+
size 12062945280
|
data/nasar-train-000005.tar
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:72416b5ddae96c4e77db41e1a22b19e09720be0dd8cc282b9f6f23475ea5c15b
|
| 3 |
+
size 12060999680
|
data/nasar-train-000006.tar
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2c8d1dfb15cfb58ebb6396752d85596ce3cbb091fad077ee61718fbf477ea444
|
| 3 |
+
size 12071587840
|
data/nasar-train-000007.tar
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5bc6e5c40836e499f5c84156500b8b10476917990ad89a27acf0873fff0d5bd0
|
| 3 |
+
size 12071577600
|
data/nasar-train-000008.tar
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bf1a9652ebf44905eea992771e5f4079f94009e402d7bc2aeeeb844ea4597920
|
| 3 |
+
size 12067461120
|
data/nasar-train-000009.tar
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fee8b123a74f0a8a50812c27a9f6f97f5d304d0aba5ab2f518d0cc63c1632ddb
|
| 3 |
+
size 12088494080
|
data/nasar-train-000010.tar
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b87b0e04417cba0eb71a64fc94182ed7d5d7d64d249528221e3ecbb961ef1280
|
| 3 |
+
size 12120647680
|
data/nasar-train-000011.tar
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3acb43e2a7fe21a2693724fec87444376d4c6e0f89511eae95ba06fa68eba15b
|
| 3 |
+
size 12091361280
|
data/nasar-train-000012.tar
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8d172d54b6fcb990655a1b2643183ff41cb0bb23aa63abf36b20b9fc8099eaa2
|
| 3 |
+
size 12093112320
|
data/nasar-train-000013.tar
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4def9bcc71e3b20944a306e9c5f8374dd63cdd58cd25127349d9b5919b87fe8c
|
| 3 |
+
size 12082176000
|
data/nasar-train-000014.tar
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e4d5df4426aaeaf2baf5a721fe2b801be7b53617bc5fb4dd9db499894684ab5e
|
| 3 |
+
size 12075264000
|
data/nasar-train-000015.tar
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:872107a3d85d86f93eb5589d00359b1e425b90546118696a80430985b9486e2d
|
| 3 |
+
size 12079319040
|
data/nasar-train-000016.tar
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:acebea5e6c8039bd15437b49cc370f2159942c4f150779f22c9439130337edac
|
| 3 |
+
size 12092170240
|
data/nasar-train-000017.tar
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:72f92f828a00f11dad56badae91e473028e865ed831c06a686aabc07c9ba49cd
|
| 3 |
+
size 12096993280
|
data/nasar-train-000018.tar
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1c33b017f05e63890b82591e455bba32e1dc4889c50d8aa160c0ed8a2984ea5e
|
| 3 |
+
size 12083937280
|
data/nasar-train-000019.tar
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b9a82910c62904a04b6865897081aa1be2a733f989ef53aebc4a569e5e4ee0d4
|
| 3 |
+
size 12083896320
|
data/nasar-train-000020.tar
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:513b3908bbf0788b10d9e724925d82e51ad0000831e743ec96361da09d028448
|
| 3 |
+
size 12107929600
|
data/nasar-train-000021.tar
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:eac53fb92cacc92b8dd66898468a270ef94c339c9874d8d2b44a0a11f509731a
|
| 3 |
+
size 12089815040
|
data/nasar-train-000022.tar
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:57b07a83e9c363c8f0e32dd58fb18dec6d9f8d1f2c667f609d8bdeda994b3140
|
| 3 |
+
size 12102031360
|
data/nasar-train-000023.tar
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5c97a8f09dee037af8c1eb35377e562175a2b6c812a99c183e39bda93d00a934
|
| 3 |
+
size 12103823360
|
data/nasar-train-000024.tar
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:710cfaeef3e7097d3919d5264f1a5d6115493bf4b67fc9a7c1694a354847853f
|
| 3 |
+
size 12074977280
|
data/nasar-train-000025.tar
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8ca438fc1df28d2c114647d182d665a79d95b45bbd3259598f1d155a2afa14e7
|
| 3 |
+
size 12089436160
|
data/nasar-train-000026.tar
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:114d36b599fa7b20db27ee0a2bd84fcdb900fba4bb6031f8424ecb084e8bf733
|
| 3 |
+
size 12086886400
|
data/nasar-train-000027.tar
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:709d40fa25aae3179dd0eca23063d53428494969f6781e3c11accdff6a2d7da5
|
| 3 |
+
size 12083988480
|
data/nasar-train-000028.tar
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6bcf851936b671ac75ea3bae06fb259a1befb785f02d48ee4ff9253e838271bc
|
| 3 |
+
size 12107806720
|
data/nasar-train-000029.tar
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:98c3828319b3531d4c0ffaa03ff9186cbec0529ea399acc9a2da4d6f8a90412e
|
| 3 |
+
size 12090972160
|
data/nasar-train-000030.tar
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d1cefa6ce0c7f5052cb3eca5c88552a4f81f5ea7b1c8391b7c43ce1b1a990e85
|
| 3 |
+
size 12077905920
|
data/nasar-train-000031.tar
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f2fd50f7fd7740f64678efd6561dd22c496d4e9f338b8139a9ea1a7a2a5ce2dd
|
| 3 |
+
size 12083148800
|
data/nasar-train-000032.tar
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d01e8d265f5a033325fafced600cfecb98031fa0446a6ad7a262217a3e3ea25f
|
| 3 |
+
size 12082872320
|
data/nasar-train-000033.tar
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:18f47393afd2636f0b509db2930bdb80b70cb9b53b3944edb6c098f94fc5b848
|
| 3 |
+
size 12096645120
|
data/nasar-train-000034.tar
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e6a2d15e7cb4875fab525901fb64765fdc082240dc5ab87dac84f3b90ee5e942
|
| 3 |
+
size 12094351360
|
data/nasar-train-000035.tar
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:13f0e753e691a65331c775461c836f286062032a5bd031cc8da1aaee83424eee
|
| 3 |
+
size 12104499200
|
data/nasar-train-000036.tar
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f07f6d3c81f92f8da44c3a979944c6cdfa7810b92b6d98120b9cccbb22964a64
|
| 3 |
+
size 12094976000
|
data/nasar-train-000037.tar
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b78bae62cb5381ea7b517699c972e2c1690edd4405cefd225fd6e81b1d97591b
|
| 3 |
+
size 12079370240
|
data/nasar-train-000038.tar
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:16d6c83ec6a36058d9c95a6dde67e314bbf3585b861188e449df1035779c7391
|
| 3 |
+
size 12086353920
|
data/nasar-train-000039.tar
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5536f5cf214865520d1aa9c6bc7830e2d60c353085a6c941250f2af755381789
|
| 3 |
+
size 12079073280
|
data/nasar-train-000040.tar
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:db77de14fc9638edd171b22c297276d6240b4c3ad3bd2ba21912d20a3db4f498
|
| 3 |
+
size 12071393280
|
data/nasar-train-000041.tar
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:30ebf32c8a4d4bc74ff2c6727820ea6494f779a205c4e752fc332dfe81e010b6
|
| 3 |
+
size 12046714880
|
data/nasar-train-000042.tar
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:de0330793ad336725693b117616591d6c3e09e57e97f313b1484df987920fbc5
|
| 3 |
+
size 12058900480
|
data/nasar-train-000043.tar
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fca1008148c0952f30e73686a87f1e7fa66513914a55072260ed20bdbbf5361a
|
| 3 |
+
size 12065761280
|
data/nasar-train-000044.tar
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b6bb4c248c70d1cd1a9b7a1a1ff0f2ffe565207b14ea488fa1013630cd862f84
|
| 3 |
+
size 12053483520
|
data/nasar-train-000045.tar
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ad93291c25ed8c0bb810958973342328bbf82e9669f0443d85597fcab12e2d0d
|
| 3 |
+
size 12057978880
|
data/nasar-train-000046.tar
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b4106f1631be8b055f8db681c07ea4ef1f51d3af542ed1685be7530c275316e5
|
| 3 |
+
size 12084490240
|
data/nasar-train-000047.tar
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:439314b4dc7e0a5183499356850a0b7375875a0cc5b8f6e2a28fbd04390ff3c9
|
| 3 |
+
size 12077271040
|
data/nasar-train-000048.tar
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:98c50a978dbb07c792db299a2e1de1668b4c2f00b47967a335837149458560f3
|
| 3 |
+
size 12063201280
|