rdiehlmartinez commited on
Commit
2d9fb78
1 Parent(s): b5a8372

adding checkpoint_steps variable that was missing

Files changed (1) hide show
  1. pythia-training-evals.py +2 -0
pythia-training-evals.py CHANGED
@@ -35,6 +35,8 @@ class PythiaTrainingEvals(datasets.GeneratorBasedBuilder):
35
  """
36
  Returns data for different splits - we define a split as a model size.
37
  """
 
 
38
 
39
  to_download_files = []
40
  model_size = self.config.name.split("__")[0]
 
35
  """
36
  Returns data for different splits - we define a split as a model size.
37
  """
38
+ checkpoint_steps = [0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1000, ]
39
+ checkpoint_steps.extend([3000 + (i * 10000) for i in range(0, 15)])
40
 
41
  to_download_files = []
42
  model_size = self.config.name.split("__")[0]