Skip to content

Commit 5064ddb

Browse files
committed
remove fts callback, associated tests and documentation in preparation to move it to the hub. leaving the PR open for a few minor changes required to support user registered callbacks like the finetuning_scheduler
1 parent 5b772de commit 5064ddb

23 files changed

+4
-2763
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
99

1010
### Added
1111

12+
- Minor changes supporting user registered callbacks like `FinetuningScheduler` (acallback enabling multi-phase, scheduled finetuning of foundational models) ([#10198](https://github.com/PyTorchLightning/pytorch-lightning/pull/10198))
1213

1314
- Added a flag `SLURMEnvironment(auto_requeue=True|False)` to control whether Lightning handles the requeuing ([#10601](https://github.com/PyTorchLightning/pytorch-lightning/issues/10601))
1415

@@ -343,7 +344,6 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
343344

344345
### Added
345346

346-
- Added `FinetuningScheduler` callback enabling multi-phase, scheduled finetuning of foundational models ([#10198](https://github.com/PyTorchLightning/pytorch-lightning/pull/10198))
347347
- Added support for monitoring the learning rate without schedulers in `LearningRateMonitor` ([#9786](https://github.com/PyTorchLightning/pytorch-lightning/issues/9786))
348348
- Added registration of `ShardedTensor` state dict hooks in `LightningModule.__init__` if the PyTorch version supports `ShardedTensor` ([#8944](https://github.com/PyTorchLightning/pytorch-lightning/pull/8944))
349349
- Added error handling including calling of `on_keyboard_interrupt()` and `on_exception()` for all entrypoints (fit, validate, test, predict) ([#8819](https://github.com/PyTorchLightning/pytorch-lightning/pull/8819))

MANIFEST.in

Lines changed: 2 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -11,43 +11,8 @@
1111
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
14-
15-
# Manifest syntax https://docs.python.org/2/distutils/sourcedist.html
16-
graft wheelhouse
17-
18-
recursive-exclude __pycache__ *.py[cod] *.orig
19-
20-
# Include the README and CHANGELOG
21-
include *.md
22-
23-
# Include the license file
24-
include LICENSE
25-
26-
# Include the citation info
27-
include *.cff
28-
29-
exclude *.sh
30-
exclude *.svg
31-
recursive-include pytorch_lightning *.py
32-
33-
# Include marker file for PEP 561
34-
include pytorch_lightning/py.typed
35-
36-
# include examples
37-
recursive-include pl_examples *.py *.md *.sh *.txt *.toml
38-
39-
# exclude tests from package
40-
recursive-exclude tests *
41-
recursive-exclude site *
42-
exclude tests
43-
44-
# Exclude the documentation files
45-
recursive-exclude docs *
46-
exclude docs
47-
recursive-include docs/source/_static/images/logos/ *
48-
recursive-include docs/source/_static/images/general/ pl_overview* tf_* tutorial_* PTL101_*
49-
50-
# Include the Requirements
14+
include pytorch_lightning/py.typed # marker file for PEP 561
15+
include CHANGELOG.md
5116
recursive-include requirements *.txt
5217
include requirements.txt
5318
include *.cff # citation info
-15.4 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
-15.8 KB
Binary file not shown.
Binary file not shown.
-12.1 KB
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)