skorch 0.9.0-3ubuntu1 source package in Ubuntu

Changelog

skorch (0.9.0-3ubuntu1) jammy; urgency=medium

  * Build-depend on python3 instead of python3-all
  * Drop X-Python3-Version: 3.9 from debian/control

 -- Graham Inggs <email address hidden>  Wed, 16 Mar 2022 15:37:29 +0000

Upload details

Uploaded by:
Graham Inggs
Uploaded to:
Jammy
Original maintainer:
Ubuntu Developers
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Jammy release universe misc

Builds

Jammy: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
skorch_0.9.0.orig.tar.gz 2.7 MiB 535f41986e58d42335acb0c57d342657ad4d59619d39b98ee4802b42a6dc3fbd
skorch_0.9.0-3ubuntu1.debian.tar.xz 3.1 KiB 2b7684dca71ac70fdbf2ac0d866f7b938dd19dcc2f5f74471b7ec27f6cb170e2
skorch_0.9.0-3ubuntu1.dsc 2.2 KiB df5ce21e903290c594e13627fedd2536d65918f741f15376bee961566400f1b3

View changes file

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.