Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

to_torchscript method for LightningModule #3258

Merged
merged 40 commits into from
Sep 3, 2020
Merged

Commits on Aug 29, 2020

  1. script

    awaelchli committed Aug 29, 2020
    Configuration menu
    Copy the full SHA
    da527e8 View commit details
    Browse the repository at this point in the history
  2. docs

    awaelchli committed Aug 29, 2020
    Configuration menu
    Copy the full SHA
    ea4b4e1 View commit details
    Browse the repository at this point in the history
  3. simple test

    awaelchli committed Aug 29, 2020
    Configuration menu
    Copy the full SHA
    0ad4af0 View commit details
    Browse the repository at this point in the history
  4. move test

    awaelchli committed Aug 29, 2020
    Configuration menu
    Copy the full SHA
    246e875 View commit details
    Browse the repository at this point in the history
  5. fix doctest

    awaelchli committed Aug 29, 2020
    Configuration menu
    Copy the full SHA
    cee5416 View commit details
    Browse the repository at this point in the history
  6. no grad context

    awaelchli committed Aug 29, 2020
    Configuration menu
    Copy the full SHA
    192f10f View commit details
    Browse the repository at this point in the history
  7. extend tests

    test
    
    
    test
    awaelchli committed Aug 29, 2020
    Configuration menu
    Copy the full SHA
    c12aea2 View commit details
    Browse the repository at this point in the history
  8. datamodule test

    awaelchli committed Aug 29, 2020
    Configuration menu
    Copy the full SHA
    d6f6437 View commit details
    Browse the repository at this point in the history
  9. clean up test

    awaelchli committed Aug 29, 2020
    Configuration menu
    Copy the full SHA
    49d2166 View commit details
    Browse the repository at this point in the history
  10. docs

    awaelchli committed Aug 29, 2020
    Configuration menu
    Copy the full SHA
    e167490 View commit details
    Browse the repository at this point in the history
  11. name

    awaelchli committed Aug 29, 2020
    Configuration menu
    Copy the full SHA
    7223e98 View commit details
    Browse the repository at this point in the history
  12. fix import

    awaelchli committed Aug 29, 2020
    Configuration menu
    Copy the full SHA
    4f0dbbc View commit details
    Browse the repository at this point in the history
  13. update changelog

    awaelchli committed Aug 29, 2020
    Configuration menu
    Copy the full SHA
    e5da609 View commit details
    Browse the repository at this point in the history
  14. fix import

    awaelchli committed Aug 29, 2020
    Configuration menu
    Copy the full SHA
    92d2c5a View commit details
    Browse the repository at this point in the history
  15. skip pytorch 1.3 in test

    awaelchli committed Aug 29, 2020
    Configuration menu
    Copy the full SHA
    26ad185 View commit details
    Browse the repository at this point in the history

Commits on Aug 30, 2020

  1. update codeblock

    Adrian Wälchli committed Aug 30, 2020
    Configuration menu
    Copy the full SHA
    ace4f4f View commit details
    Browse the repository at this point in the history
  2. skip bugged 1.4

    Adrian Wälchli committed Aug 30, 2020
    Configuration menu
    Copy the full SHA
    b22dfc6 View commit details
    Browse the repository at this point in the history
  3. typehints

    Adrian Wälchli committed Aug 30, 2020
    Configuration menu
    Copy the full SHA
    81bca94 View commit details
    Browse the repository at this point in the history
  4. doctest not working on all pytorch versions

    Adrian Wälchli committed Aug 30, 2020
    Configuration menu
    Copy the full SHA
    b883e97 View commit details
    Browse the repository at this point in the history
  5. rename TestGAN to prevent pytest interference

    Adrian Wälchli committed Aug 30, 2020
    Configuration menu
    Copy the full SHA
    b7be254 View commit details
    Browse the repository at this point in the history
  6. add note about pytorch version

    Adrian Wälchli committed Aug 30, 2020
    Configuration menu
    Copy the full SHA
    2af314b View commit details
    Browse the repository at this point in the history
  7. fix torchscript version inconsistency in tests

    Adrian Wälchli committed Aug 30, 2020
    Configuration menu
    Copy the full SHA
    5d76d55 View commit details
    Browse the repository at this point in the history
  8. reset training state + tests

    Adrian Wälchli committed Aug 30, 2020
    Configuration menu
    Copy the full SHA
    4fd6cee View commit details
    Browse the repository at this point in the history
  9. update docstring

    awaelchli committed Aug 30, 2020
    Configuration menu
    Copy the full SHA
    26c28f9 View commit details
    Browse the repository at this point in the history

Commits on Sep 1, 2020

  1. Apply suggestions from code review

    Co-authored-by: Justus Schock <12886177+justusschock@users.noreply.github.com>
    Borda and justusschock committed Sep 1, 2020
    Configuration menu
    Copy the full SHA
    9366029 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    721cb5e View commit details
    Browse the repository at this point in the history
  3. Merge remote-tracking branch 'PyTorchLightning/feature/torchscript' i…

    …nto feature/torchscript
    awaelchli committed Sep 1, 2020
    Configuration menu
    Copy the full SHA
    46bbdab View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    da0f4f8 View commit details
    Browse the repository at this point in the history
  5. add docs to index

    awaelchli committed Sep 1, 2020
    Configuration menu
    Copy the full SHA
    3598f21 View commit details
    Browse the repository at this point in the history
  6. add link

    awaelchli committed Sep 1, 2020
    Configuration menu
    Copy the full SHA
    c1da6bd View commit details
    Browse the repository at this point in the history
  7. doc eval mode

    awaelchli committed Sep 1, 2020
    Configuration menu
    Copy the full SHA
    7d1124a View commit details
    Browse the repository at this point in the history
  8. forward

    awaelchli committed Sep 1, 2020
    Configuration menu
    Copy the full SHA
    7f180c0 View commit details
    Browse the repository at this point in the history

Commits on Sep 3, 2020

  1. optional save to file path

    awaelchli committed Sep 3, 2020
    Configuration menu
    Copy the full SHA
    9687a29 View commit details
    Browse the repository at this point in the history
  2. optional

    awaelchli committed Sep 3, 2020
    Configuration menu
    Copy the full SHA
    868f8b4 View commit details
    Browse the repository at this point in the history
  3. test torchscript device

    awaelchli committed Sep 3, 2020
    Configuration menu
    Copy the full SHA
    713e477 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    c1fc408 View commit details
    Browse the repository at this point in the history
  5. pep

    awaelchli committed Sep 3, 2020
    Configuration menu
    Copy the full SHA
    f328959 View commit details
    Browse the repository at this point in the history
  6. str

    awaelchli committed Sep 3, 2020
    Configuration menu
    Copy the full SHA
    1edd4e4 View commit details
    Browse the repository at this point in the history
  7. Commit typing suggestion

    Co-authored-by: ananthsub <ananth.subramaniam@gmail.com>
    justusschock and ananthsub committed Sep 3, 2020
    Configuration menu
    Copy the full SHA
    1263b57 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    78e2d60 View commit details
    Browse the repository at this point in the history