skorch 0.15.0-1 source package in Ubuntu

Changelog

skorch (0.15.0-1) unstable; urgency=medium

  * New upstream version 0.15.0
  * Remove merged patches.
  * Add autopkgtest test case. (Closes: #1035253)
  * Fix FTBS twice in a row (Closes: #1045243)
  * control: Drop python version declaration.

 -- Mo Zhou <email address hidden>  Thu, 21 Sep 2023 12:38:38 -0400

Upload details

Uploaded by:
Debian Deep Learning Team
Uploaded to:
Sid
Original maintainer:
Debian Deep Learning Team
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Noble proposed universe misc

Builds

Noble: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
skorch_0.15.0-1.dsc 2.2 KiB db80b0a61fa55262c412bc54e2ce789aa41cc4b13a3e01ae37b16bf4a34e008a
skorch_0.15.0.orig.tar.gz 5.6 MiB 2a54d7c11b958f5036aa86fc0a3e3da6cd8847de9e9d2f2b10e5bb1cca74b30e
skorch_0.15.0-1.debian.tar.xz 4.1 KiB e4b7eb3587ba36f7372ddbc152d4f9f45fba99e1a03194f2c3b8ef2a25ada900

No changes file available.

Binary packages built by this source

python3-skorch: scikit-learn compatible neural network library that wraps PyTorch

 The goal of skorch is to make it possible to use PyTorch with sklearn. This is
 achieved by providing a wrapper around PyTorch that has an sklearn interface.
 In that sense, skorch is the spiritual successor to nolearn, but instead of
 using Lasagne and Theano, it uses PyTorch.
 .
 skorch does not re-invent the wheel, instead getting as much out of your way as
 possible. If you are familiar with sklearn and PyTorch, you don’t have to learn
 any new concepts, and the syntax should be well known. (If you’re not familiar
 with those libraries, it is worth getting familiarized.)
 .
 Additionally, skorch abstracts away the training loop, making a lot of
 boilerplate code obsolete. A simple net.fit(X, y) is enough. Out of the box,
 skorch works with many types of data, be it PyTorch Tensors, NumPy arrays,
 Python dicts, and so on. However, if you have other data, extending skorch is
 easy to allow for that.
 .
 Overall, skorch aims at being as flexible as PyTorch while having a clean
 interface as sklearn.