Skip to content
This repository was archived by the owner on May 6, 2025. It is now read-only.

Commit 3816b08

Browse files
committed
Fix links in readthedocs; update PyPI management
PiperOrigin-RevId: 392519336
1 parent f8a964f commit 3816b08

2 files changed

Lines changed: 14 additions & 11 deletions

File tree

neural_tangents/stax.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3480,24 +3480,24 @@ def ImageResize(
34803480
The `method` argument expects one of the following resize methods:
34813481
34823482
`ResizeMethod.NEAREST`, `"nearest"`:
3483-
Nearest neighbor interpolation_. The values of `antialias` and `precision`
3483+
`Nearest neighbor interpolation`_. The values of `antialias` and `precision`
34843484
are ignored.
34853485
34863486
`ResizeMethod.LINEAR`, `"linear"`, `"bilinear"`, `"trilinear"`, `"triangle"`:
3487-
Linear interpolation_. If `antialias` is ``True``, uses a triangular filter
3488-
when downsampling.
3487+
`Linear interpolation`_. If `antialias` is ``True``, uses a triangular
3488+
filter when downsampling.
34893489
34903490
The following methods are NOT SUPPORTED in `kernel_fn` (only `init_fn` and
34913491
`apply_fn` work):
34923492
34933493
`ResizeMethod.CUBIC`, `"cubic"`, `"bicubic"`, `"tricubic"`:
3494-
Cubic interpolation_, using the Keys cubic kernel.
3494+
`Cubic interpolation`_, using the Keys cubic kernel.
34953495
34963496
`ResizeMethod.LANCZOS3`, `"lanczos3"`:
3497-
Lanczos resampling_, using a kernel of radius 3.
3497+
`Lanczos resampling`_, using a kernel of radius 3.
34983498
34993499
`ResizeMethod.LANCZOS5`, `"lanczos5"`:
3500-
Lanczos resampling_, using a kernel of radius 5.
3500+
`Lanczos resampling`_, using a kernel of radius 5.
35013501
35023502
.. _Nearest neighbor interpolation: https://en.wikipedia.org/wiki/Nearest-neighbor_interpolation
35033503
.. _Linear interpolation: https://en.wikipedia.org/wiki/Bilinear_interpolation

setup.py

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@
1717

1818

1919
import os
20-
import sys
21-
2220
import setuptools
2321

2422

@@ -58,15 +56,20 @@ def _get_version() -> str:
5856
name='neural-tangents',
5957
version=_get_version(),
6058
license='Apache 2.0',
61-
author='Google',
62-
author_email='neural-tangents-dev@google.com',
59+
author='Neural Tangents developers',
60+
author_email='nt@google.com',
6361
install_requires=INSTALL_REQUIRES,
6462
url='https://github.com/google/neural-tangents',
6563
download_url='https://pypi.org/project/neural-tangents/',
6664
project_urls={
6765
'Source Code': 'https://github.com/google/neural-tangents',
68-
'Documentation': 'https://arxiv.org/abs/1912.02803',
66+
'Paper': 'https://arxiv.org/abs/1912.02803',
67+
'Video': 'https://iclr.cc/virtual_2020/poster_SklD9yrFPS.html',
68+
'Documentation': 'https://neural-tangents.readthedocs.io/en/latest/?badge=latest',
6969
'Bug Tracker': 'https://github.com/google/neural-tangents/issues',
70+
'Release Notes': 'https://github.com/google/neural-tangents/releases',
71+
'PyPi': 'https://pypi.org/project/neural-tangents/',
72+
'Tests': 'https://travis-ci.org/github/google/neural-tangents',
7073
},
7174
packages=setuptools.find_packages(exclude=('presentation',)),
7275
long_description=long_description,

0 commit comments

Comments
 (0)