From a155609cc34d3513be3353df74ef83fde3f70c89 Mon Sep 17 00:00:00 2001 From: Ethan Harris Date: Mon, 10 Jan 2022 17:45:04 +0000 Subject: [PATCH] Update CHANGELOG.md --- CHANGELOG.md | 4 ++++ flash/__main__.py | 1 + 2 files changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0479946c38..a2ef284ca0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). - Added support for multi-label, space delimited, targets ([#1076](https://github.com/PyTorchLightning/lightning-flash/pull/1076)) +- Added support for tabular classification / regression backbones from PyTorch Tabular ([#1098](https://github.com/PyTorchLightning/lightning-flash/pull/1098)) + +- Added Flash zero support for tabular regression ([#1098](https://github.com/PyTorchLightning/lightning-flash/pull/1098)) + ### Changed - Changed `Wav2Vec2Processor` to `AutoProcessor` and seperate it from backbone [optional] ([#1075](https://github.com/PyTorchLightning/lightning-flash/pull/1075)) diff --git a/flash/__main__.py b/flash/__main__.py index 37c00b86f1..1f1eba0580 100644 --- a/flash/__main__.py +++ b/flash/__main__.py @@ -51,6 +51,7 @@ def wrapper(cli_args): "flash.pointcloud.detection", "flash.pointcloud.segmentation", "flash.tabular.classification", + "flash.tabular.regression", "flash.tabular.forecasting", "flash.text.classification", "flash.text.question_answering",