nshtrainer 1.0.0b22__py3-none-any.whl → 1.0.0b24__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -606,6 +606,10 @@ class TrainerConfig(C.Config):
606
606
  """If enabled, will enable the profiler in barebones mode.
607
607
  The implementation of this is very hacky and may not work as expected."""
608
608
 
609
+ experimental_barebones_progress_bar_enabled: bool = False
610
+ """If enabled, will enable the progress bar in barebones mode.
611
+ The implementation of this is very hacky and may not work as expected."""
612
+
609
613
  precision: (
610
614
  Literal[
611
615
  "64-true",
@@ -319,6 +319,16 @@ class Trainer(LightningTrainer):
319
319
  experimental_profiler = None
320
320
  if hparams.experimental_barebones_profiler_enabled:
321
321
  experimental_profiler = kwargs.pop("profiler", None)
322
+ log.warning(
323
+ "Barebones profiler is enabled. This is an experimental feature and may not work as expected."
324
+ )
325
+
326
+ experimental_barebones_progress_bar = None
327
+ if hparams.experimental_barebones_progress_bar_enabled:
328
+ experimental_barebones_progress_bar = kwargs.pop(
329
+ "enable_progress_bar", True
330
+ )
331
+
322
332
  super().__init__(**kwargs)
323
333
 
324
334
  # Set up the profiler again
@@ -327,6 +337,12 @@ class Trainer(LightningTrainer):
327
337
 
328
338
  setup._init_profiler(self, experimental_profiler)
329
339
 
340
+ # Set up the progress bar again
341
+ if experimental_barebones_progress_bar is not None:
342
+ self._callback_connector._configure_progress_bar(
343
+ experimental_barebones_progress_bar
344
+ )
345
+
330
346
  # Add our own start time callback to measure the start time.
331
347
  self.callbacks.append(RuntimeTrackerCallback())
332
348
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: nshtrainer
3
- Version: 1.0.0b22
3
+ Version: 1.0.0b24
4
4
  Summary:
5
5
  Author: Nima Shoghi
6
6
  Author-email: nimashoghi@gmail.com
@@ -119,10 +119,10 @@ nshtrainer/profiler/advanced.py,sha256=XrM3FX0ThCv5UwUrrH0l4Ow4LGAtpiBww2N8QAU5N
119
119
  nshtrainer/profiler/pytorch.py,sha256=8K37XvPnCApUpIK8tA2zNMFIaIiTLSoxKQoiyCPBm1Q,2757
120
120
  nshtrainer/profiler/simple.py,sha256=PimjqcU-JuS-8C0ZGHAdwCxgNLij4x0FH6WXsjBQzZs,1005
121
121
  nshtrainer/trainer/__init__.py,sha256=MmoydVS6aYeav7zgDAUHxAQrV_PMQsbnZTCuPnLH9Wk,128
122
- nshtrainer/trainer/_config.py,sha256=xd80gDFSj5QvRIZ_2t15PN397akpXX8VUazeivS8kV0,34112
122
+ nshtrainer/trainer/_config.py,sha256=5tl4BJxrldAUj5bt9c89xH-lDail3lVn_y3jUPq_kE4,34320
123
123
  nshtrainer/trainer/_runtime_callback.py,sha256=T3epaj1YeIN0R8CS2cg5HNJIB21TyaD_PVNNOPJ6nJs,4200
124
124
  nshtrainer/trainer/signal_connector.py,sha256=YMJf6vTnW0JcnBkuYikm9x_9XscaokrCEzCn4THOGao,10776
125
- nshtrainer/trainer/trainer.py,sha256=SgAjALn8LsRWmvBPvHJOP0IKDZOKKl3lwfrC1q4J2EA,20134
125
+ nshtrainer/trainer/trainer.py,sha256=Tr0ANJxgNVbuzqwbqwSKcIl1geXEPC9AlS0_YPwOdWw,20750
126
126
  nshtrainer/util/_environment_info.py,sha256=MT8mBe6ZolRfKiwU-les1P-lPNPqXpHQcfADrh_A3uY,24629
127
127
  nshtrainer/util/_useful_types.py,sha256=dwZokFkIe7M5i2GR3nQ9A1lhGw06DMAFfH5atyquqSA,8000
128
128
  nshtrainer/util/bf16.py,sha256=9QhHZCkYSfYpIcxwAMoXyuh2yTSHBzT-EdLQB297jEs,762
@@ -135,6 +135,6 @@ nshtrainer/util/seed.py,sha256=diMV8iwBKN7Xxt5pELmui-gyqyT80_CZzomrWhNss0k,316
135
135
  nshtrainer/util/slurm.py,sha256=HflkP5iI_r4UHMyPjw9R4dD5AHsJUpcfJw5PLvGYBRM,1603
136
136
  nshtrainer/util/typed.py,sha256=Xt5fUU6zwLKSTLUdenovnKK0N8qUq89Kddz2_XeykVQ,164
137
137
  nshtrainer/util/typing_utils.py,sha256=MjY-CUX9R5Tzat-BlFnQjwl1PQ_W2yZQoXhkYHlJ_VA,442
138
- nshtrainer-1.0.0b22.dist-info/METADATA,sha256=AkEEGt5cpSMgefZzzZWfTEu6DztnaodTTg9aOtiWQc8,937
139
- nshtrainer-1.0.0b22.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
140
- nshtrainer-1.0.0b22.dist-info/RECORD,,
138
+ nshtrainer-1.0.0b24.dist-info/METADATA,sha256=kJJwb8hMUOHfif2qiEB70hCSllpUOt48s-n8SRFkRJY,937
139
+ nshtrainer-1.0.0b24.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
140
+ nshtrainer-1.0.0b24.dist-info/RECORD,,