-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add neural networks and bug fixes (#79)
* fix kfold and reader seeds * fix deprecated series append * add FillnaMean and QuantileTransformer * fix verbose * add debug option in preset * fix weight in metric func * add grad clipping * add nn feature pipeline * add linear with logit losses * add neural networks * add DLOptunaTuner * add nn in tabular preset * add nn in text preset * fix verbose * update modules rst * add nn tutorial * add tps nn solution link * add verbose_bar option * add default_nn_params_v2 * reformat * fix cb custom multitask metric * fix links * add nn in TabularUtilizedAutoML * reformat tutorial * add freeze_defaults param * add docs * add params on input * fix mapping when targets are sorted right * add zero_grad to the end of loop
- Loading branch information
1 parent
54666e4
commit f2ef45e
Showing
55 changed files
with
4,883 additions
and
305 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
.. role:: hidden | ||
:class: hidden-section | ||
|
||
lightautoml.ml_algo | ||
=================== | ||
|
||
Torch utils. | ||
|
||
Pooling Strategies | ||
------------------------------ | ||
|
||
.. currentmodule:: lightautoml.ml_algo.torch_based.nn_models | ||
|
||
.. autosummary:: | ||
:toctree: ./generated | ||
:nosignatures: | ||
:template: classtemplate.rst | ||
|
||
SequenceAbstractPooler | ||
SequenceClsPooler | ||
SequenceMaxPooler | ||
SequenceSumPooler | ||
SequenceAvgPooler | ||
SequenceIndentityPooler |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,3 +31,4 @@ Tuning with Optuna | |
:template: classtemplate.rst | ||
|
||
OptunaTuner | ||
DLOptunaTuner |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"path": "../../../examples/tutorials/Tutorial_9_neural_networks.ipynb" | ||
} |
Oops, something went wrong.