Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: skorch-dev/skorch
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.3.0
Choose a base ref
...
head repository: skorch-dev/skorch
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 11 commits
  • 18 files changed
  • 3 contributors

Commits on Nov 19, 2025

  1. Configuration menu
    Copy the full SHA
    f7161d0 View commit details
    Browse the repository at this point in the history

Commits on Dec 22, 2025

  1. FIX Compatibility with sklearn v1.8 (#1128)

    There were two issues in skorch with sklearn v1.8 that are now fixed:
    
    __sklearn_is_fitted__ should return a bool. Instead, we were just
    raising or returning None. Not sure if this was already wrong when
    added (#1119) or if the API changed later.
    
    Moreover, sklearn was now raising an error when using the SkorchDoctor
    class because of missing __sklearn_tags__. This class now inherits from
    BaseEstimator, resolving this issue.
    
    For good measure, I also tested locally with sklearn 1.7 to ensure that
    these changes are backwards compatible.
    
    Unrelated changes:
    
    Remove an unnecessary import and trailing whitespace. Added
    __sklearn_is_fitted__ to SkorchDoctor too.
    BenjaminBossan authored Dec 22, 2025
    Configuration menu
    Copy the full SHA
    fe0a6bf View commit details
    Browse the repository at this point in the history
  2. Release v1.3.1 (#1129)

    Quick patch release for sklearn v1.8 compatibility.
    BenjaminBossan authored Dec 22, 2025
    Configuration menu
    Copy the full SHA
    65e0fa0 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    9b39932 View commit details
    Browse the repository at this point in the history

Commits on Feb 25, 2026

  1. Fix several recent issues from transformers, pandas, gpytorch (#1134)

    Transformers fixes:
    
    - Some numerical differences from T5
    - Tokenizer repr has changed
    
    Pandas 3: error message changed
    
    GPyTorch: fix version to avoid pickle error
    BenjaminBossan authored Feb 25, 2026
    Configuration menu
    Copy the full SHA
    0ec5dbe View commit details
    Browse the repository at this point in the history
  2. Generalize device check for tensor conversion (#1131)

    E.g. should now work with XPU.
    kv9898 authored Feb 25, 2026
    Configuration menu
    Copy the full SHA
    0cb38c3 View commit details
    Browse the repository at this point in the history
  3. Update: PyTorch v2.10.0 (#1133)

    - drop 2.6.0
    - bump 2.9.0 to 2.9.1
    - add 2.10.0
    - update docs
    BenjaminBossan authored Feb 25, 2026
    Configuration menu
    Copy the full SHA
    5a6a7c7 View commit details
    Browse the repository at this point in the history
  4. FIX HF download outdated token argument (#1135)

    The argument use_auth_token was deprecated and removed, use token
    instead.
    BenjaminBossan authored Feb 25, 2026
    Configuration menu
    Copy the full SHA
    db11757 View commit details
    Browse the repository at this point in the history

Commits on Mar 27, 2026

  1. Update: PyTorch 2.11.0 (#1137)

    - add 2.11.0
    - drop 2.7.1
    - update triton install for CI
    - GPyTorch pickling error is resolved, update tests
    BenjaminBossan authored Mar 27, 2026
    Configuration menu
    Copy the full SHA
    c753b0a View commit details
    Browse the repository at this point in the history
  2. CI Run unit tests on weekly basis (#1138)

    As the frequency of new PRs on skorch isn't very high anymore, it can
    happen that the unit tests don't run at all for longer stretches of
    time. This means that we may catch issues only quite late, and only if a
    new PR lands do these unrelated errors surface (#1137 being a recent
    example)
    
    With this PR, the test unit tests on a weekly basis. The
    schedule is Sunday morning, the same as for the HF integrationt tests.
    BenjaminBossan authored Mar 27, 2026
    Configuration menu
    Copy the full SHA
    3bca8f2 View commit details
    Browse the repository at this point in the history

Commits on Apr 27, 2026

  1. ENH NeuralNet metadata routing (#1139)

    Enable sklearn metadata routing in skorch.
    
    See: https://scikit-learn.org/stable/metadata_routing.html
    adrinjalali authored Apr 27, 2026
    Configuration menu
    Copy the full SHA
    f5a7928 View commit details
    Browse the repository at this point in the history
Loading