Datasets:

ArXiv:
License:
bknyaz commited on
Commit
e7ad8d5
·
verified ·
1 Parent(s): bb21782

add example

Browse files
Files changed (1) hide show
  1. README.md +16 -34
README.md CHANGED
@@ -919,30 +919,6 @@ dataset_info:
919
  num_examples: 2513
920
  download_size: 20817460471
921
  dataset_size: 22122441600
922
- - config_name: default
923
- features:
924
- - name: data
925
- sequence: float16
926
- - name: test_loss
927
- dtype: float16
928
- - name: test_acc
929
- dtype: float16
930
- - name: train_loss
931
- dtype: float16
932
- - name: train_acc
933
- dtype: float16
934
- splits:
935
- - name: '0'
936
- num_bytes: 77328384
937
- num_examples: 2688
938
- - name: '1'
939
- num_bytes: 77328384
940
- num_examples: 2688
941
- - name: '2'
942
- num_bytes: 77328384
943
- num_examples: 2688
944
- download_size: 218320869
945
- dataset_size: 231985152
946
  - config_name: fm-16
947
  features:
948
  - name: data
@@ -3679,14 +3655,6 @@ configs:
3679
  path: c10-16/298-*
3680
  - split: '299'
3681
  path: c10-16/299-*
3682
- - config_name: default
3683
- data_files:
3684
- - split: '0'
3685
- path: data/0-*
3686
- - split: '1'
3687
- path: data/1-*
3688
- - split: '2'
3689
- path: data/2-*
3690
  - config_name: fm-16
3691
  data_files:
3692
  - split: '0'
@@ -5095,8 +5063,6 @@ configs:
5095
  path: lm1b-3-24/199-*
5096
  ---
5097
 
5098
- **The dataset is being prepared and uploaded**
5099
-
5100
  This is the dataset of trained neural network checkpoints used to meta-train the NiNo model from https://github.com/SamsungSAILMontreal/nino/.
5101
 
5102
  It contains 1000 models in total:
@@ -5120,3 +5086,19 @@ The dataset corresponds to the first 4 columns (in-distribution tasks) in Table
5120
 
5121
  This Table is from the `Accelerating Training with Neuron Interaction and Nowcasting Networks` paper, see https://arxiv.org/abs/2409.04434 for details.
5122
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
919
  num_examples: 2513
920
  download_size: 20817460471
921
  dataset_size: 22122441600
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
922
  - config_name: fm-16
923
  features:
924
  - name: data
 
3655
  path: c10-16/298-*
3656
  - split: '299'
3657
  path: c10-16/299-*
 
 
 
 
 
 
 
 
3658
  - config_name: fm-16
3659
  data_files:
3660
  - split: '0'
 
5063
  path: lm1b-3-24/199-*
5064
  ---
5065
 
 
 
5066
  This is the dataset of trained neural network checkpoints used to meta-train the NiNo model from https://github.com/SamsungSAILMontreal/nino/.
5067
 
5068
  It contains 1000 models in total:
 
5086
 
5087
  This Table is from the `Accelerating Training with Neuron Interaction and Nowcasting Networks` paper, see https://arxiv.org/abs/2409.04434 for details.
5088
 
5089
+ # Example
5090
+
5091
+ Download and access trajectories of the fm-16 task (other three datasets: 'c10-16', 'lm1b-3-24', 'lm1b-2-32').
5092
+ The original trajectories was saved as float16, but when loading huggingface may convert it to float32 or float64 depending on the version.
5093
+
5094
+ ```python
5095
+ from datasets import load_dataset
5096
+ import numpy as np
5097
+
5098
+ # Load the 'fm-16' task
5099
+ dataset = load_dataset('SamsungSAILMontreal/nino_metatrain', 'fm-16') # you can use streaming=True for checking out individual samples
5100
+
5101
+ # Once downloaded, access the t-th state in the i-th trajectory:
5102
+ print(np.array(dataset[str(i)][t]['data']).shape) # (14378,)
5103
+
5104
+ ```