schattin commited on
Commit
a28d0af
·
verified ·
1 Parent(s): 9fcb5b9

Upload 15 files

Browse files
README.md CHANGED
@@ -1,5 +1,76 @@
1
- ---
2
- license: other
3
- license_name: private
4
- license_link: LICENSE
5
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: other
3
+ pretty_name: sd96-roccastrada-10m
4
+ task_categories:
5
+ - other
6
+ language:
7
+ - multilingual
8
+ tags:
9
+ - seismic
10
+ - dispersion-curves
11
+ - synthetic
12
+ - forward-modeling
13
+ - BayHunter
14
+ - inverse-problem
15
+ size_categories:
16
+ - 10K<n<100K
17
+ ---
18
+
19
+ ## Dataset Description
20
+ This dataset contains synthetic seismic models and their corresponding Rayleigh-wave dispersion curves, generated using forward modeling. It is designed for benchmarking inversion algorithms and training machine learning models in geophysics.
21
+
22
+ ## Data Structure
23
+ Each sample contains the following fields:
24
+
25
+ ```json
26
+ {
27
+ "vs": [
28
+ 2.3,
29
+ 2.7,
30
+ 3.2
31
+ ],
32
+ "z": [
33
+ 1.2,
34
+ 2.5,
35
+ 5.0
36
+ ],
37
+ "vpvs": 1.73,
38
+ "disp_x": [
39
+ 1.0,
40
+ 2.0,
41
+ 3.0
42
+ ],
43
+ "disp_y": [
44
+ 3.5,
45
+ 3.3,
46
+ 3.1
47
+ ],
48
+ "wave_type": "Rayleigh",
49
+ "velocity_type": "group"
50
+ }
51
+ ```
52
+
53
+ ## Sample Visualization
54
+ The dataset includes a visualization of a sample model and its dispersion curves. You can find this visualization in the `sample_plot.png` file in the dataset directory.
55
+
56
+ ![Sample Plot](sample_plot.png)
57
+
58
+ ## Generation Steps
59
+ The dataset was generated using the following commands:
60
+
61
+ ```bash
62
+ python3 migrate/cli/main.py generate-dataset-surfdisp96 --name Surfdisp96-Roccastrada-10m --pretty-name sd96-roccastrada-10m --description "This dataset contains synthetic seismic models and their corresponding Rayleigh-wave dispersion curves generated using forward modeling with the Roccastrada priors. It is designed for benchmarking inversion algorithms and training machine learning models in geophysics." license-name "other" --created-by "" --prior-file /datadisk/Projets/RECHERCHES/Recherches/MIGRATE/reps/migrate/conf/priors/roccastrada_prior.yaml --output-dir "/datadisk/Projets/RECHERCHES/Recherches/MIGRATE/reps/migrate/data/seismic/Dispsurf96-Roccastrada-10k" --n-samples 10000 --samples-per-shard 1000 --length 108 --test-ratio 0.2 --fold (2, 5, 10) --seed 43 --low-range 1.0,5.0 --middle-range 1.0,15.0 --high-range 1.0,30.0
63
+ ```
64
+
65
+ ## Download Instructions
66
+ You can download the dataset via the 🤗 Hub CLI:
67
+
68
+ ```bash
69
+ huggingface-cli download dataset <repo-id> --local-dir ./seismic-dataset
70
+ ```
71
+
72
+ Or use `datasets` in Python:
73
+ ```python
74
+ from datasets import load_dataset
75
+ ds = load_dataset('<repo-id>', split='train')
76
+ ```
dataset_info.json ADDED
@@ -0,0 +1,74 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_name": "Surfdisp96-Roccastrada-10m",
3
+ "description": "This dataset contains synthetic seismic models and their corresponding Rayleigh-wave dispersion curves generated using forward modeling with the Roccastrada priors. It is designed for benchmarking inversion algorithms and training machine learning models in geophysics.",
4
+ "priors": {
5
+ "vs": [
6
+ 0.5,
7
+ 4.0
8
+ ],
9
+ "z": [
10
+ 0.0,
11
+ 5.0
12
+ ],
13
+ "layers": [
14
+ 2,
15
+ 20
16
+ ],
17
+ "vpvs": 1.3,
18
+ "mohoest": null,
19
+ "mantle": null,
20
+ "thickmin": 0.1,
21
+ "lvz": null,
22
+ "hvz": null
23
+ },
24
+ "model_parameters": {
25
+ "dispersion_curve_length": 108
26
+ },
27
+ "folds": {
28
+ "available": [
29
+ "2fold",
30
+ "5fold",
31
+ "10fold"
32
+ ],
33
+ "fold_file": "folds.json"
34
+ },
35
+ "format": "parquet",
36
+ "license": "other",
37
+ "created_by": "",
38
+ "creation_date": "2025-09-16 15:39:27",
39
+ "generation": {
40
+ "seed": 43,
41
+ "random_generator": "numpy.default_rng",
42
+ "n_samples": 10000,
43
+ "samples_per_shard": 1000,
44
+ "n_shards": 10,
45
+ "source": "sample_model + forward"
46
+ },
47
+ "features": {
48
+ "vs": {
49
+ "type": "list<float32>",
50
+ "variable_length": true
51
+ },
52
+ "z": {
53
+ "type": "list<float32>",
54
+ "variable_length": true
55
+ },
56
+ "vpvs": {
57
+ "type": "float32"
58
+ },
59
+ "disp_x": {
60
+ "type": "list<float32>",
61
+ "length": 108
62
+ },
63
+ "disp_y": {
64
+ "type": "list<float32>",
65
+ "length": 108
66
+ },
67
+ "wave_type": {
68
+ "type": "string"
69
+ },
70
+ "velocity_type": {
71
+ "type": "string"
72
+ }
73
+ }
74
+ }
folds.json ADDED
@@ -0,0 +1,72 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "2-fold": {
3
+ "train": [
4
+ "shard_00008.parquet",
5
+ "shard_00006.parquet",
6
+ "shard_00003.parquet",
7
+ "shard_00007.parquet",
8
+ "shard_00009.parquet",
9
+ "shard_00004.parquet",
10
+ "shard_00000.parquet",
11
+ "shard_00005.parquet"
12
+ ],
13
+ "test": [
14
+ "shard_00001.parquet",
15
+ "shard_00002.parquet"
16
+ ]
17
+ },
18
+ "5-fold": {
19
+ "0": [
20
+ "shard_00008.parquet",
21
+ "shard_00006.parquet"
22
+ ],
23
+ "1": [
24
+ "shard_00003.parquet",
25
+ "shard_00007.parquet"
26
+ ],
27
+ "2": [
28
+ "shard_00009.parquet",
29
+ "shard_00004.parquet"
30
+ ],
31
+ "3": [
32
+ "shard_00000.parquet",
33
+ "shard_00005.parquet"
34
+ ],
35
+ "4": [
36
+ "shard_00001.parquet",
37
+ "shard_00002.parquet"
38
+ ]
39
+ },
40
+ "10-fold": {
41
+ "0": [
42
+ "shard_00008.parquet"
43
+ ],
44
+ "1": [
45
+ "shard_00006.parquet"
46
+ ],
47
+ "2": [
48
+ "shard_00003.parquet"
49
+ ],
50
+ "3": [
51
+ "shard_00007.parquet"
52
+ ],
53
+ "4": [
54
+ "shard_00009.parquet"
55
+ ],
56
+ "5": [
57
+ "shard_00004.parquet"
58
+ ],
59
+ "6": [
60
+ "shard_00000.parquet"
61
+ ],
62
+ "7": [
63
+ "shard_00005.parquet"
64
+ ],
65
+ "8": [
66
+ "shard_00001.parquet"
67
+ ],
68
+ "9": [
69
+ "shard_00002.parquet"
70
+ ]
71
+ }
72
+ }
sample.csv ADDED
@@ -0,0 +1,109 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ vs,z,h,z_disc,vp,vpvs,nlayers,L_disp_x,L_disp_y,L_wave_type,L_velocity_type,M_disp_x,M_disp_y,M_wave_type,M_velocity_type,H_disp_x,H_disp_y,H_wave_type,H_velocity_type,velmap_vs,velmap_z
2
+ 1.3378816843032837,0.5357730388641357,0.9627412995863338,0.9627413153648376,1.7392462609032415,1.3,7,1.0,1.0973522663116455,Rayleigh,group,1.0,1.0973522663116455,Rayleigh,group,1.0,1.0973522663116455,Rayleigh,group,1.3378817,0.041666668
3
+ 1.4746156930923462,1.3897095918655396,0.5629147056746351,1.52565598487854,1.9170003270498623,,,1.0373831987380981,1.095284104347229,,,1.1308411359786987,1.0889426469802856,,,1.2710280418395996,1.076117753982544,,,1.3378817,0.125
4
+ 2.7122883796691895,1.6616023778915405,0.42195116231402974,1.947607159614563,3.525974881101382,,,1.0747663974761963,1.0931727886199951,,,1.2616822719573975,1.0798938274383545,,,1.5420560836791992,1.0524051189422607,,,1.3378817,0.20833333
5
+ 3.826298475265503,2.233611822128296,0.7540938876644445,2.7017011642456055,4.974187990324626,,,1.1121494770050049,1.0908735990524292,,,1.3925234079360962,1.0680551528930664,,,1.8130841255187988,1.0178784132003784,,,1.3378817,0.29166666
6
+ 3.0510141849517822,3.169790267944336,0.8621095065154027,3.5638105869293213,3.9663185298197723,,,1.149532675743103,1.0884459018707275,,,1.523364543914795,1.0550329685211182,,,2.0841121673583984,0.9811469316482544,,,1.3378817,0.375
7
+ 1.771653652191162,3.9578309059143066,0.8577329191262346,4.421543598175049,2.3031497842269677,,,1.1869158744812012,1.0858021974563599,,,1.654205560684204,1.0400201082229614,,,2.355140209197998,0.9407075643539429,,,1.3378817,0.45833334
8
+ 3.585695266723633,4.885255813598633,0.0,,4.661403802134862,,,1.2242990732192993,1.083018183708191,,,1.7850466966629028,1.0234464406967163,,,2.6261682510375977,0.9088712334632874,,,1.3378817,0.5416667
9
+ ,,,,,,,1.2616822719573975,1.080123782157898,,,1.9158878326416016,1.0056428909301758,,,2.8971962928771973,0.8838130235671997,,,1.3378817,0.625
10
+ ,,,,,,,1.2990654706954956,1.0770126581192017,,,2.04672908782959,0.9865947961807251,,,3.168224334716797,0.8970767855644226,,,1.3378817,0.7083333
11
+ ,,,,,,,1.3364485502243042,1.0738276243209839,,,2.177570104598999,0.9671225547790527,,,3.4392523765563965,0.9234047532081604,,,1.3378817,0.7916667
12
+ ,,,,,,,1.3738317489624023,1.0704110860824585,,,2.308411121368408,0.9474804997444153,,,3.710280418395996,0.9923020601272583,,,1.3378817,0.875
13
+ ,,,,,,,1.4112149477005005,1.0669419765472412,,,2.4392523765563965,0.9281203150749207,,,3.9813084602355957,1.0630974769592285,,,1.4746157,0.9583333
14
+ ,,,,,,,1.4485981464385986,1.0632067918777466,,,2.5700933933258057,0.910945475101471,,,4.252336502075195,1.1249943971633911,,,1.4746157,1.0416666
15
+ ,,,,,,,1.4859813451766968,1.0593994855880737,,,2.700934648513794,0.8957429528236389,,,4.523364543914795,1.1765908002853394,,,1.4746157,1.125
16
+ ,,,,,,,1.523364543914795,1.055428147315979,,,2.831775665283203,0.8850328326225281,,,4.7943925857543945,1.2047244310379028,,,1.4746157,1.2083334
17
+ ,,,,,,,1.5607476234436035,1.0513291358947754,,,2.9626169204711914,0.8798943161964417,,,5.065420627593994,1.2197617292404175,,,1.4746157,1.2916666
18
+ ,,,,,,,1.5981308221817017,1.047098159790039,,,3.0934579372406006,0.8805196285247803,,,5.336448669433594,1.221251130104065,,,1.4746157,1.375
19
+ ,,,,,,,1.6355140209197998,1.0426974296569824,,,3.2242989540100098,0.8912036418914795,,,5.607476711273193,1.2139441967010498,,,1.4746157,1.4583334
20
+ ,,,,,,,1.672897219657898,1.038216233253479,,,3.355140209197998,0.9066655039787292,,,5.878504753112793,1.2024592161178589,,,2.7122884,1.5416666
21
+ ,,,,,,,1.710280418395996,1.0335109233856201,,,3.4859812259674072,0.9338686466217041,,,6.149532794952393,1.1911344528198242,,,2.7122884,1.625
22
+ ,,,,,,,1.7476634979248047,1.028761863708496,,,3.6168224811553955,0.963279128074646,,,6.420560836791992,1.1804230213165283,,,2.7122884,1.7083334
23
+ ,,,,,,,1.7850466966629028,1.0238491296768188,,,3.7476634979248047,0.9995154738426208,,,6.691588878631592,1.180687427520752,,,2.7122884,1.7916666
24
+ ,,,,,,,1.822429895401001,1.0188831090927124,,,3.878504753112793,1.035643219947815,,,6.962616920471191,1.1854888200759888,,,2.7122884,1.875
25
+ ,,,,,,,1.8598130941390991,1.0137455463409424,,,4.009346008300781,1.0714219808578491,,,7.233644962310791,1.2048736810684204,,,3.8262985,1.9583334
26
+ ,,,,,,,1.8971962928771973,1.0085368156433105,,,4.140186786651611,1.1047136783599854,,,7.504673004150391,1.2330032587051392,,,3.8262985,2.0416667
27
+ ,,,,,,,1.9345794916152954,1.003231406211853,,,4.2710280418396,1.1346230506896973,,,7.77570104598999,1.273025631904602,,,3.8262985,2.125
28
+ ,,,,,,,1.971962571144104,0.997846782207489,,,4.401869297027588,1.159617304801941,,,8.04672908782959,1.3228771686553955,,,3.8262985,2.2083333
29
+ ,,,,,,,2.009345769882202,0.9924116134643555,,,4.532710075378418,1.181471347808838,,,8.317756652832031,1.3790082931518555,,,3.8262985,2.2916667
30
+ ,,,,,,,2.04672908782959,0.9869323372840881,,,4.663551330566406,1.1968237161636353,,,8.588785171508789,1.4419842958450317,,,3.8262985,2.375
31
+ ,,,,,,,2.0841121673583984,0.9814417362213135,,,4.7943925857543945,1.2105159759521484,,,8.85981273651123,1.506707787513733,,,3.8262985,2.4583333
32
+ ,,,,,,,2.121495246887207,0.9757246375083923,,,4.925233840942383,1.2172660827636719,,,9.130841255187988,1.5731581449508667,,,3.8262985,2.5416667
33
+ ,,,,,,,2.1588785648345947,0.9700115919113159,,,5.056074619293213,1.2229379415512085,,,9.40186882019043,1.6391808986663818,,,3.8262985,2.625
34
+ ,,,,,,,2.1962616443634033,0.9643373489379883,,,5.186915874481201,1.2239139080047607,,,9.672897338867188,1.7029623985290527,,,3.0510142,2.7083333
35
+ ,,,,,,,2.233644962310791,0.958651602268219,,,5.3177571296691895,1.2234675884246826,,,9.943924903869629,1.7649505138397217,,,3.0510142,2.7916667
36
+ ,,,,,,,2.2710280418395996,0.9529451727867126,,,5.4485979080200195,1.2204481363296509,,,10.214953422546387,1.8236937522888184,,,3.0510142,2.875
37
+ ,,,,,,,2.308411121368408,0.9472804069519043,,,5.579439163208008,1.2161073684692383,,,10.485980987548828,1.8791958093643188,,,3.0510142,2.9583333
38
+ ,,,,,,,2.345794439315796,0.9416508674621582,,,5.710280418395996,1.2106519937515259,,,10.757009506225586,1.9319629669189453,,,3.0510142,3.0416667
39
+ ,,,,,,,2.3831775188446045,0.9361165761947632,,,5.841121673583984,1.2044867277145386,,,11.028037071228027,1.9803680181503296,,,3.0510142,3.125
40
+ ,,,,,,,2.420560836791992,0.9306177496910095,,,5.9719624519348145,1.1980572938919067,,,11.299065589904785,2.0271499156951904,,,3.0510142,3.2083333
41
+ ,,,,,,,2.457943916320801,0.9252816438674927,,,6.102803707122803,1.1920629739761353,,,11.570093154907227,2.0688934326171875,,,3.0510142,3.2916667
42
+ ,,,,,,,2.4953269958496094,0.9199907183647156,,,6.233644962310791,1.1862928867340088,,,11.841121673583984,2.1096506118774414,,,3.0510142,3.375
43
+ ,,,,,,,2.532710313796997,0.9149657487869263,,,6.364486217498779,1.1821463108062744,,,12.112149238586426,2.1458184719085693,,,3.0510142,3.4583333
44
+ ,,,,,,,2.5700933933258057,0.9100477695465088,,,6.495326995849609,1.178853154182434,,,12.383177757263184,2.1807446479797363,,,1.7716537,3.5416667
45
+ ,,,,,,,2.6074767112731934,0.9053939580917358,,,6.626168251037598,1.1776684522628784,,,12.654205322265625,2.2126033306121826,,,1.7716537,3.625
46
+ ,,,,,,,2.644859790802002,0.9009262919425964,,,6.757009506225586,1.178358793258667,,,12.925233840942383,2.2426888942718506,,,1.7716537,3.7083333
47
+ ,,,,,,,2.6822431087493896,0.8966646790504456,,,6.887850284576416,1.1811251640319824,,,13.196261405944824,2.2708113193511963,,,1.7716537,3.7916667
48
+ ,,,,,,,2.7196261882781982,0.8928576111793518,,,7.018691539764404,1.186965823173523,,,13.467289924621582,2.2967689037323,,,1.7716537,3.875
49
+ ,,,,,,,2.757009267807007,0.8892836570739746,,,7.149532794952393,1.1943830251693726,,,13.738317489624023,2.3216166496276855,,,1.7716537,3.9583333
50
+ ,,,,,,,2.7943925857543945,0.8862712383270264,,,7.280374050140381,1.2059874534606934,,,14.009346008300781,2.3440639972686768,,,1.7716537,4.0416665
51
+ ,,,,,,,2.831775665283203,0.8833864331245422,,,7.411214828491211,1.2185109853744507,,,14.280373573303223,2.365999221801758,,,1.7716537,4.125
52
+ ,,,,,,,2.869158983230591,0.881259024143219,,,7.542056083679199,1.235748529434204,,,14.55140209197998,2.3856594562530518,,,1.7716537,4.2083335
53
+ ,,,,,,,2.9065420627593994,0.8793364763259888,,,7.6728973388671875,1.2539892196655273,,,14.822429656982422,2.4048402309417725,,,1.7716537,4.2916665
54
+ ,,,,,,,2.943925142288208,0.8781390190124512,,,7.803738117218018,1.2757792472839355,,,15.09345817565918,2.4223248958587646,,,1.7716537,4.375
55
+ ,,,,,,,2.9813084602355957,0.877375602722168,,,7.934579372406006,1.299087405204773,,,15.364485740661621,2.439089059829712,,,3.5856953,4.4583335
56
+ ,,,,,,,3.0186915397644043,0.8772450685501099,,,8.065420150756836,1.324609637260437,,,15.635514259338379,2.4548022747039795,,,3.5856953,4.5416665
57
+ ,,,,,,,3.056074857711792,0.8777826428413391,,,8.196261405944824,1.3518685102462769,,,15.90654182434082,2.4696924686431885,,,3.5856953,4.625
58
+ ,,,,,,,3.0934579372406006,0.8787782788276672,,,8.327102661132812,1.380318284034729,,,16.177570343017578,2.484018087387085,,,3.5856953,4.7083335
59
+ ,,,,,,,3.130841016769409,0.8807299733161926,,,8.4579439163208,1.410395860671997,,,16.448598861694336,2.4971911907196045,,,3.5856953,4.7916665
60
+ ,,,,,,,3.168224334716797,0.8829517364501953,,,8.588785171508789,1.4409334659576416,,,16.71962547302246,2.5100388526916504,,,3.5856953,4.875
61
+ ,,,,,,,3.2056074142456055,0.8863782286643982,,,8.719626426696777,1.472577691078186,,,16.99065399169922,2.521662473678589,,,3.5856953,4.9583335
62
+ ,,,,,,,3.242990732192993,0.890042245388031,,,8.850467681884766,1.5043388605117798,,,17.261682510375977,2.5331103801727295,,,,
63
+ ,,,,,,,3.2803738117218018,0.8947910070419312,,,8.981307983398438,1.5365335941314697,,,17.532711029052734,2.5438215732574463,,,,
64
+ ,,,,,,,3.3177568912506104,0.8999546766281128,,,9.112149238586426,1.5686957836151123,,,17.80373764038086,2.5542068481445312,,,,
65
+ ,,,,,,,3.355140209197998,0.9059274792671204,,,9.242990493774414,1.6007945537567139,,,18.074766159057617,2.5639572143554688,,,,
66
+ ,,,,,,,3.3925232887268066,0.9125009179115295,,,9.373831748962402,1.6325818300247192,,,18.345794677734375,2.573261022567749,,,,
67
+ ,,,,,,,3.4299066066741943,0.9196169376373291,,,9.50467300415039,1.6640877723693848,,,18.616823196411133,2.5821614265441895,,,,
68
+ ,,,,,,,3.467289686203003,0.9274619817733765,,,9.635514259338379,1.6948513984680176,,,18.887849807739258,2.5905842781066895,,,,
69
+ ,,,,,,,3.5046730041503906,0.9356021881103516,,,9.766355514526367,1.7253144979476929,,,19.158878326416016,2.598813772201538,,,,
70
+ ,,,,,,,3.542056083679199,0.9445285201072693,,,9.897195816040039,1.7549424171447754,,,19.429906845092773,2.6064491271972656,,,,
71
+ ,,,,,,,3.579439163208008,0.9536007046699524,,,10.028037071228027,1.7843555212020874,,,19.70093536376953,2.6139674186706543,,,,
72
+ ,,,,,,,3.6168224811553955,0.9632866382598877,,,10.158878326416016,1.812470555305481,,,19.971961975097656,2.6209466457366943,,,,
73
+ ,,,,,,,3.654205560684204,0.9731108546257019,,,10.289719581604004,1.8401886224746704,,,20.242990493774414,2.627798318862915,,,,
74
+ ,,,,,,,3.691588878631592,0.983306884765625,,,10.420560836791992,1.8668400049209595,,,20.514019012451172,2.6343064308166504,,,,
75
+ ,,,,,,,3.7289719581604004,0.9936534762382507,,,10.55140209197998,1.8929334878921509,,,20.78504753112793,2.6406028270721436,,,,
76
+ ,,,,,,,3.766355037689209,1.004178524017334,,,10.682243347167969,1.9183659553527832,,,21.056074142456055,2.6466481685638428,,,,
77
+ ,,,,,,,3.8037383556365967,1.0147514343261719,,,10.81308364868164,1.942793369293213,,,21.327102661132812,2.6524369716644287,,,,
78
+ ,,,,,,,3.8411214351654053,1.02535080909729,,,10.943924903869629,1.966665506362915,,,21.59813117980957,2.6580841541290283,,,,
79
+ ,,,,,,,3.878504753112793,1.035933256149292,,,11.074766159057617,1.9893755912780762,,,21.869159698486328,2.6633896827697754,,,,
80
+ ,,,,,,,3.9158878326416016,1.0465081930160522,,,11.205607414245605,2.0118281841278076,,,22.140186309814453,2.6686208248138428,,,,
81
+ ,,,,,,,3.95327091217041,1.056837558746338,,,11.336448669433594,2.0330910682678223,,,22.41121482849121,2.6735546588897705,,,,
82
+ ,,,,,,,3.990654230117798,1.0671000480651855,,,11.467289924621582,2.0540945529937744,,,22.68224334716797,2.6784284114837646,,,,
83
+ ,,,,,,,4.0280375480651855,1.0771006345748901,,,11.59813117980957,2.0740814208984375,,,22.953271865844727,2.6830668449401855,,,,
84
+ ,,,,,,,4.065420627593994,1.0869399309158325,,,11.728972434997559,2.0935511589050293,,,23.22429847717285,2.687608480453491,,,,
85
+ ,,,,,,,4.102803707122803,1.0965267419815063,,,11.85981273651123,2.112211227416992,,,23.49532699584961,2.6919987201690674,,,,
86
+ ,,,,,,,4.140186786651611,1.105774998664856,,,11.990653991699219,2.1302990913391113,,,23.766355514526367,2.6961874961853027,,,,
87
+ ,,,,,,,4.17756986618042,1.1147743463516235,,,12.121495246887207,2.147966146469116,,,24.037384033203125,2.700227975845337,,,,
88
+ ,,,,,,,4.214953422546387,1.123336672782898,,,12.252336502075195,2.164752960205078,,,24.30841064453125,2.7042250633239746,,,,
89
+ ,,,,,,,4.252336502075195,1.131763219833374,,,12.383177757263184,2.1812660694122314,,,24.579439163208008,2.7082085609436035,,,,
90
+ ,,,,,,,4.289719581604004,1.1395618915557861,,,12.514019012451172,2.196834087371826,,,24.850467681884766,2.711827278137207,,,,
91
+ ,,,,,,,4.3271026611328125,1.1472424268722534,,,12.64486026763916,2.2122275829315186,,,25.121496200561523,2.7154135704040527,,,,
92
+ ,,,,,,,4.364486217498779,1.1543837785720825,,,12.775700569152832,2.226832151412964,,,25.39252281188965,2.7189202308654785,,,,
93
+ ,,,,,,,4.401869297027588,1.161283254623413,,,12.90654182434082,2.2411751747131348,,,25.663551330566406,2.722334384918213,,,,
94
+ ,,,,,,,4.4392523765563965,1.1676734685897827,,,13.037383079528809,2.25496768951416,,,25.934579849243164,2.7255539894104004,,,,
95
+ ,,,,,,,4.476635456085205,1.1737250089645386,,,13.168224334716797,2.268345832824707,,,26.205608367919922,2.728717803955078,,,,
96
+ ,,,,,,,4.514018535614014,1.1794490814208984,,,13.299065589904785,2.2813234329223633,,,26.476634979248047,2.731827735900879,,,,
97
+ ,,,,,,,4.5514020919799805,1.1846922636032104,,,13.429906845092773,2.293781042098999,,,26.747663497924805,2.7348501682281494,,,,
98
+ ,,,,,,,4.588785171508789,1.1897244453430176,,,13.560748100280762,2.3060100078582764,,,27.018692016601562,2.7378342151641846,,,,
99
+ ,,,,,,,4.626168251037598,1.19419264793396,,,13.691588401794434,2.31758975982666,,,27.28972053527832,2.740654945373535,,,,
100
+ ,,,,,,,4.663551330566406,1.198541522026062,,,13.822429656982422,2.3290395736694336,,,27.560747146606445,2.7434475421905518,,,,
101
+ ,,,,,,,4.700934410095215,1.202292561531067,,,13.95327091217041,2.3399014472961426,,,27.831775665283203,2.7461559772491455,,,,
102
+ ,,,,,,,4.738317966461182,1.2058875560760498,,,14.084112167358398,2.350616455078125,,,28.10280418395996,2.748830556869507,,,,
103
+ ,,,,,,,4.77570104598999,1.2090247869491577,,,14.214953422546387,2.360900640487671,,,28.37383270263672,2.751406192779541,,,,
104
+ ,,,,,,,4.813084125518799,1.211904764175415,,,14.345794677734375,2.370962381362915,,,28.644859313964844,2.753922700881958,,,,
105
+ ,,,,,,,4.850467205047607,1.2144581079483032,,,14.476635932922363,2.380741596221924,,,28.9158878326416,2.756364107131958,,,,
106
+ ,,,,,,,4.887850284576416,1.2166675329208374,,,14.607476234436035,2.3901336193084717,,,29.18691635131836,2.7587432861328125,,,,
107
+ ,,,,,,,4.925233840942383,1.218672275543213,,,14.738317489624023,2.3992955684661865,,,29.457944869995117,2.7610855102539062,,,,
108
+ ,,,,,,,4.962616920471191,1.2202599048614502,,,14.869158744812012,2.4080190658569336,,,29.728971481323242,2.763348340988159,,,,
109
+ ,,,,,,,5.0,1.2217519283294678,,,15.0,2.416642427444458,,,30.0,2.7655930519104004,,,,
sample_plot.png ADDED

Git LFS Details

  • SHA256: 9131e060ff0c28e2df972592c942d7ecec38dab36ba93c504e5e75edf3c1d671
  • Pointer size: 131 Bytes
  • Size of remote file: 103 kB
shard_00000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:502a61d297da53087defff70a84d27a8cab0073bf100e2c8f922a9d36cc849d6
3
+ size 2967190
shard_00001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1388c95638d2602bab8fb002be6608e6aa4cdd2d37a36c5ade9362b874f47054
3
+ size 2954833
shard_00002.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:992e3676a908059bfaed08d67acf471577ad297f7a7a0b7409d91f2a500f4d93
3
+ size 2962617
shard_00003.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:037e0e6acda202441769e9a73771243cf4e3467b3ec507051bd3ef41a05f7830
3
+ size 2970191
shard_00004.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c3d2ac5049f29d85c0ca36b9e29a029c32e2ab3977a5295585127b4f762b0acd
3
+ size 2962640
shard_00005.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:decb3ac886e95787f20d01aa188bb433b81b3b20184a0e43357b2085d4b19355
3
+ size 2967787
shard_00006.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e1d0e0743437ce30cbfe0bafbe89ea23dfa005392b14e496a22c0e6c13394eb1
3
+ size 2964067
shard_00007.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:605d787720d5b85c49a5b2e2ecc32dd702eafdedd5b4b5a7f7bcc9c186d7320e
3
+ size 2974419
shard_00008.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fe775d69b3efd53e6f0b8b2620d26ccf7c297aad2e39d70617add2fa04930210
3
+ size 2974300
shard_00009.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:66b1d6bbcb4ea59f2b1ee270651fa4d67e27051eb8320bbac9e2d7285d38b461
3
+ size 2963755