Datasets:

ArXiv:
License:
bknyaz commited on
Commit
67d0a32
·
verified ·
1 Parent(s): 6296d1d

update mmap readme

Browse files
Files changed (1) hide show
  1. README.md +5 -3
README.md CHANGED
@@ -5088,6 +5088,11 @@ This Table is from the `Accelerating Training with Neuron Interaction and Nowcas
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
 
@@ -5103,7 +5108,4 @@ print(np.array(dataset[str(i)][t]['data']).shape) # (14378,)
5103
 
5104
  ```
5105
 
5106
- **To train the NiNo model we also uploaded the dataset in the mmap format (in the mmap branch), which is much faster for larger arrays.
5107
- See https://github.com/SamsungSAILMontreal/nino/blob/main/dataset/dataset.py#L123 for the dataset code
5108
- and https://github.com/SamsungSAILMontreal/nino/blob/main/README.md#training-nino for the training script examples.**
5109
 
 
5088
 
5089
  # Example
5090
 
5091
+ **UPDATE: To train the NiNo model more efficiently we also uploaded the dataset in the mmap format (in the mmap branch), which is much faster to read for large arrays.
5092
+ See https://github.com/SamsungSAILMontreal/nino/blob/main/dataset/dataset.py#L123 for the dataset code
5093
+ and https://github.com/SamsungSAILMontreal/nino/blob/main/README.md#training-nino for the training script examples.**
5094
+
5095
+
5096
  Download and access trajectories of the fm-16 task (other three datasets: 'c10-16', 'lm1b-3-24', 'lm1b-2-32').
5097
  The original trajectories was saved as float16, but when loading huggingface may convert it to float32 or float64 depending on the version.
5098
 
 
5108
 
5109
  ```
5110
 
 
 
 
5111