From unknown Mon Jun 23 11:28:05 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#39880] [PATCH] gnu: python-keras: Fix tests. Resent-From: Pierre Neidhardt Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Tue, 03 Mar 2020 09:23:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 39880 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 39880@debbugs.gnu.org X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.158322735419746 (code B ref -1); Tue, 03 Mar 2020 09:23:02 +0000 Received: (at submit) by debbugs.gnu.org; 3 Mar 2020 09:22:34 +0000 Received: from localhost ([127.0.0.1]:38672 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1j93l2-00058N-HC for submit@debbugs.gnu.org; Tue, 03 Mar 2020 04:22:34 -0500 Received: from lists.gnu.org ([209.51.188.17]:38889) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1j93kz-00058F-BI for submit@debbugs.gnu.org; Tue, 03 Mar 2020 04:22:31 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:45187) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1j93kx-0004nH-Ij for guix-patches@gnu.org; Tue, 03 Mar 2020 04:22:28 -0500 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-0.7 required=5.0 tests=BAYES_20,RCVD_IN_DNSWL_LOW, URIBL_BLOCKED autolearn=disabled version=3.3.2 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1j93kt-0008OI-DO for guix-patches@gnu.org; Tue, 03 Mar 2020 04:22:27 -0500 Received: from relay4-d.mail.gandi.net ([217.70.183.196]:37425) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1j93kt-0008N5-85 for guix-patches@gnu.org; Tue, 03 Mar 2020 04:22:23 -0500 X-Originating-IP: 92.169.129.147 Received: from bababa.home (lfbn-idf2-1-1315-147.w92-169.abo.wanadoo.fr [92.169.129.147]) (Authenticated sender: mail@ambrevar.xyz) by relay4-d.mail.gandi.net (Postfix) with ESMTPSA id E6504E0027 for ; Tue, 3 Mar 2020 09:22:01 +0000 (UTC) From: Pierre Neidhardt Date: Tue, 3 Mar 2020 10:22:01 +0100 Message-Id: <20200303092201.7174-1-mail@ambrevar.xyz> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 217.70.183.196 X-Spam-Score: 1.2 (+) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: * gnu/packages/machine-learning.scm (python-keras)[origin]: Add patch to remove unstable selu test. * gnu/local.mk: Include patch. --- gnu/local.mk | 1 + gnu/packages/machine-learning.scm | 4 +++- 2 f [...] Content analysis details: (1.2 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 URIBL_BLOCKED ADMINISTRATOR NOTICE: The query to URIBL was blocked. See http://wiki.apache.org/spamassassin/DnsBlocklists#dnsbl-block for more information. [URIs: local.mk] 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at https://www.dnswl.org/, low trust [209.51.188.17 listed in list.dnswl.org] 0.7 SPF_NEUTRAL SPF: sender does not match SPF record (neutral) 0.5 FROM_SUSPICIOUS_NTLD From abused NTLD 0.7 FROM_SUSPICIOUS_NTLD_FP From abused NTLD X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.5 (/) * gnu/packages/machine-learning.scm (python-keras)[origin]: Add patch to remove unstable selu test. * gnu/local.mk: Include patch. --- gnu/local.mk | 1 + gnu/packages/machine-learning.scm | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/gnu/local.mk b/gnu/local.mk index 857345cfad..e5922aae54 100644 --- a/gnu/local.mk +++ b/gnu/local.mk @@ -1329,6 +1329,7 @@ dist_patch_DATA = \ %D%/packages/patches/python-configobj-setuptools.patch \ %D%/packages/patches/python-faker-fix-build-32bit.patch \ %D%/packages/patches/python-keras-integration-test.patch \ + %D%/packages/patches/python-keras-selu-test.patch \ %D%/packages/patches/python-pep8-stdlib-tokenize-compat.patch \ %D%/packages/patches/python-pyfakefs-remove-bad-test.patch \ %D%/packages/patches/python-flint-includes.patch \ diff --git a/gnu/packages/machine-learning.scm b/gnu/packages/machine-learning.scm index 8262a418cc..7fbdef0163 100644 --- a/gnu/packages/machine-learning.scm +++ b/gnu/packages/machine-learning.scm @@ -1863,7 +1863,9 @@ with image data, text data, and sequence data.") (origin (method url-fetch) (uri (pypi-uri "Keras" version)) - (patches (search-patches "python-keras-integration-test.patch")) + (patches + (search-patches "python-keras-selu-test.patch" ; Numerically unstable? + "python-keras-integration-test.patch")) (sha256 (base32 "1j8bsqzh49vjdxy6l1k4iwax5vpjzniynyd041xjavdzvfii1dlh")))) -- 2.25.1 From unknown Mon Jun 23 11:28:05 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#39880] [PATCH] gnu: python-keras: Fix tests. Resent-From: Efraim Flashner Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Tue, 03 Mar 2020 10:18:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 39880 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Pierre Neidhardt Cc: 39880@debbugs.gnu.org Received: via spool by 39880-submit@debbugs.gnu.org id=B39880.158323066324990 (code B ref 39880); Tue, 03 Mar 2020 10:18:02 +0000 Received: (at 39880) by debbugs.gnu.org; 3 Mar 2020 10:17:43 +0000 Received: from localhost ([127.0.0.1]:38710 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1j94cQ-0006V0-Qe for submit@debbugs.gnu.org; Tue, 03 Mar 2020 05:17:43 -0500 Received: from flashner.co.il ([178.62.234.194]:38950) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1j94cP-0006Um-4b for 39880@debbugs.gnu.org; Tue, 03 Mar 2020 05:17:41 -0500 Received: from localhost (unknown [141.226.13.108]) by flashner.co.il (Postfix) with ESMTPSA id D9810400E5; Tue, 3 Mar 2020 10:17:34 +0000 (UTC) Date: Tue, 3 Mar 2020 12:17:03 +0200 From: Efraim Flashner Message-ID: <20200303101703.GI6728@E5400> References: <20200303092201.7174-1-mail@ambrevar.xyz> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="LYw3s/afESlflPpp" Content-Disposition: inline In-Reply-To: <20200303092201.7174-1-mail@ambrevar.xyz> X-PGP-Key-ID: 0x41AAE7DCCA3D8351 X-PGP-Key: https://flashner.co.il/~efraim/efraim_flashner.asc X-PGP-Fingerprint: A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351 X-Spam-Score: -0.0 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) --LYw3s/afESlflPpp Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable You forgot to add the patch :P --=20 Efraim Flashner =D7=90=D7=A4=D7=A8=D7=99=D7=9D = =D7=A4=D7=9C=D7=A9=D7=A0=D7=A8 GPG key =3D A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351 Confidentiality cannot be guaranteed on emails sent or received unencrypted --LYw3s/afESlflPpp Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEEoov0DD5VE3JmLRT3Qarn3Mo9g1EFAl5eLp0ACgkQQarn3Mo9 g1EShw//f7+1E3Uu7pouZUZaIX63selUYIza0f8mtPuIdS0TzrfLdjobWJ5tC7g+ b+dXN3oBEzznMojsvBxqfajU8IfylXb/PfVoEAS8+p+rr9BB1TseZgHQYM2sMmoI DWykAUUyTM34u0VSK3DbtwluoWxW/pZKh7S5YBdkaxpPGhcg8tXqyUQvUgjIzVCD zfmXKuG7xrkp1hBtZ1h4gW1wLAU0kSxXdrQH30QtYl5mLz92l6pTGfGM28u3CcUB Eja9UJkPOQaJg9+i68g7Jkzj7ADa/SMjThl/tASPPkesYiE8I/UkUPvMOmJI+AyX g5+pR9wCKqzPnKUhStal7wCF99w0obVx/KRuZKv+zssmfEsDmcbAZ+O87Y2fZ02d pSnwtqR3bCBFtQY9RWGt3o9cbzQevGy9fKKX2vxzXLUfDv5CgCiD6+CUnjVLW69K +XkR3fthfJV1GjNurd7IEW2W1KhA8J4Dm5L/B5BUqeipWbFNtkrtG0T2m5m1/JEo hY+PAKh2nWEGGiV2dqmFgIXiTxGzxKJ2pxajZDQrsFIIJLBa+fI6Xws3hY8neUy5 bwV9qD6N1WGEw480fCCo+xh4g2phBcLx4VLgvgH0JhEQUFWCLjjSTaa7LEnIbLW/ uVgJ3HN8UoFjArhk9q4yTqHXpS64eyCMxi404rdByVznBwgUzNs= =UcI9 -----END PGP SIGNATURE----- --LYw3s/afESlflPpp-- From unknown Mon Jun 23 11:28:05 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#39880] [PATCHv2] gnu: python-keras: Fix tests. References: <20200303092201.7174-1-mail@ambrevar.xyz> In-Reply-To: <20200303092201.7174-1-mail@ambrevar.xyz> Resent-From: Pierre Neidhardt Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Tue, 03 Mar 2020 10:39:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 39880 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 39880@debbugs.gnu.org Received: via spool by 39880-submit@debbugs.gnu.org id=B39880.158323190226977 (code B ref 39880); Tue, 03 Mar 2020 10:39:01 +0000 Received: (at 39880) by debbugs.gnu.org; 3 Mar 2020 10:38:22 +0000 Received: from localhost ([127.0.0.1]:38730 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1j94wP-000713-PM for submit@debbugs.gnu.org; Tue, 03 Mar 2020 05:38:22 -0500 Received: from relay4-d.mail.gandi.net ([217.70.183.196]:52461) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1j94wL-00070m-7X for 39880@debbugs.gnu.org; Tue, 03 Mar 2020 05:38:20 -0500 X-Originating-IP: 92.169.129.147 Received: from bababa.home (lfbn-idf2-1-1315-147.w92-169.abo.wanadoo.fr [92.169.129.147]) (Authenticated sender: mail@ambrevar.xyz) by relay4-d.mail.gandi.net (Postfix) with ESMTPSA id 31B1FE000F for <39880@debbugs.gnu.org>; Tue, 3 Mar 2020 10:38:09 +0000 (UTC) From: Pierre Neidhardt Date: Tue, 3 Mar 2020 11:38:09 +0100 Message-Id: <20200303103809.18233-1-mail@ambrevar.xyz> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: 0.5 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.2 (-) * gnu/packages/machine-learning.scm (python-keras)[origin]: Add patch to remove unstable selu test. * gnu/local.mk: Include patch. * gnu/packages/patches/python-keras-selu-test.patch: New file. --- gnu/local.mk | 1 + gnu/packages/machine-learning.scm | 4 ++- .../patches/python-keras-selu-test.patch | 35 +++++++++++++++++++ 3 files changed, 39 insertions(+), 1 deletion(-) create mode 100644 gnu/packages/patches/python-keras-selu-test.patch diff --git a/gnu/local.mk b/gnu/local.mk index 857345cfad..e5922aae54 100644 --- a/gnu/local.mk +++ b/gnu/local.mk @@ -1329,6 +1329,7 @@ dist_patch_DATA = \ %D%/packages/patches/python-configobj-setuptools.patch \ %D%/packages/patches/python-faker-fix-build-32bit.patch \ %D%/packages/patches/python-keras-integration-test.patch \ + %D%/packages/patches/python-keras-selu-test.patch \ %D%/packages/patches/python-pep8-stdlib-tokenize-compat.patch \ %D%/packages/patches/python-pyfakefs-remove-bad-test.patch \ %D%/packages/patches/python-flint-includes.patch \ diff --git a/gnu/packages/machine-learning.scm b/gnu/packages/machine-learning.scm index 8262a418cc..7fbdef0163 100644 --- a/gnu/packages/machine-learning.scm +++ b/gnu/packages/machine-learning.scm @@ -1863,7 +1863,9 @@ with image data, text data, and sequence data.") (origin (method url-fetch) (uri (pypi-uri "Keras" version)) - (patches (search-patches "python-keras-integration-test.patch")) + (patches + (search-patches "python-keras-selu-test.patch" ; Numerically unstable? + "python-keras-integration-test.patch")) (sha256 (base32 "1j8bsqzh49vjdxy6l1k4iwax5vpjzniynyd041xjavdzvfii1dlh")))) diff --git a/gnu/packages/patches/python-keras-selu-test.patch b/gnu/packages/patches/python-keras-selu-test.patch new file mode 100644 index 0000000000..68092d2593 --- /dev/null +++ b/gnu/packages/patches/python-keras-selu-test.patch @@ -0,0 +1,35 @@ +Disable unstable SELU test. +See https://github.com/keras-team/keras/issues/13856. + +diff --git a/tests/keras/activations_test.py b/tests/keras/activations_test.py +index 4c0bb36..5808c0f 100644 +--- a/tests/keras/activations_test.py ++++ b/tests/keras/activations_test.py +@@ -208,24 +208,6 @@ def test_elu(): + assert_allclose(result, true_result) + + +-def test_selu(): +- x = K.placeholder(ndim=2) +- f = K.function([x], [activations.selu(x)]) +- alpha = 1.6732632423543772848170429916717 +- scale = 1.0507009873554804934193349852946 +- +- positive_values = get_standard_values() +- result = f([positive_values])[0] +- assert_allclose(result, positive_values * scale, rtol=1e-05) +- +- negative_values = np.array([[-1, -2]], dtype=K.floatx()) +- +- result = f([negative_values])[0] +- true_result = (np.exp(negative_values) - 1) * scale * alpha +- +- assert_allclose(result, true_result) +- +- + def test_tanh(): + test_values = get_standard_values() + +-- +2.25.1 + -- 2.25.1 From unknown Mon Jun 23 11:28:05 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#39880] [PATCH] gnu: python-keras: Fix tests. Resent-From: Pierre Neidhardt Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Tue, 03 Mar 2020 10:39:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 39880 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Efraim Flashner Cc: 39880@debbugs.gnu.org Received: via spool by 39880-submit@debbugs.gnu.org id=B39880.158323191127001 (code B ref 39880); Tue, 03 Mar 2020 10:39:01 +0000 Received: (at 39880) by debbugs.gnu.org; 3 Mar 2020 10:38:31 +0000 Received: from localhost ([127.0.0.1]:38733 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1j94wZ-00071R-2X for submit@debbugs.gnu.org; Tue, 03 Mar 2020 05:38:31 -0500 Received: from relay12.mail.gandi.net ([217.70.178.232]:59051) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1j94wX-00071B-OZ for 39880@debbugs.gnu.org; Tue, 03 Mar 2020 05:38:30 -0500 Received: from bababa (lfbn-idf2-1-1315-147.w92-169.abo.wanadoo.fr [92.169.129.147]) (Authenticated sender: mail@ambrevar.xyz) by relay12.mail.gandi.net (Postfix) with ESMTPSA id C173E20000C; Tue, 3 Mar 2020 10:38:20 +0000 (UTC) From: Pierre Neidhardt In-Reply-To: <20200303101703.GI6728@E5400> References: <20200303092201.7174-1-mail@ambrevar.xyz> <20200303101703.GI6728@E5400> Date: Tue, 03 Mar 2020 11:38:20 +0100 Message-ID: <87imjl206b.fsf@ambrevar.xyz> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha256; protocol="application/pgp-signature" X-Spam-Score: 1.8 (+) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: Oops! Resent. -- Pierre Neidhardt https://ambrevar.xyz/ Content analysis details: (1.8 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 URIBL_BLOCKED ADMINISTRATOR NOTICE: The query to URIBL was blocked. See http://wiki.apache.org/spamassassin/DnsBlocklists#dnsbl-block for more information. [URIs: ambrevar.xyz] -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at https://www.dnswl.org/, low trust [217.70.178.232 listed in list.dnswl.org] 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record -0.0 SPF_PASS SPF: sender matches SPF record 2.0 PDS_OTHER_BAD_TLD Untrustworthy TLDs [URI: ambrevar.xyz (xyz)] 0.5 FROM_SUSPICIOUS_NTLD From abused NTLD X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 1.8 (+) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: Oops! Resent. -- Pierre Neidhardt https://ambrevar.xyz/ Content analysis details: (1.8 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 URIBL_BLOCKED ADMINISTRATOR NOTICE: The query to URIBL was blocked. See http://wiki.apache.org/spamassassin/DnsBlocklists#dnsbl-block for more information. [URIs: ambrevar.xyz] -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at https://www.dnswl.org/, low trust [217.70.178.232 listed in list.dnswl.org] 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record -0.0 SPF_PASS SPF: sender matches SPF record 2.0 PDS_OTHER_BAD_TLD Untrustworthy TLDs [URI: ambrevar.xyz (xyz)] 0.5 FROM_SUSPICIOUS_NTLD From abused NTLD 1.0 BULK_RE_SUSP_NTLD Precedence bulk and RE: from a suspicious TLD -1.0 MAILING_LIST_MULTI Multiple indicators imply a widely-seen list manager --=-=-= Content-Type: text/plain Content-Transfer-Encoding: quoted-printable Oops! Resent. =2D-=20 Pierre Neidhardt https://ambrevar.xyz/ --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCAAdFiEEUPM+LlsMPZAEJKvom9z0l6S7zH8FAl5eM5wACgkQm9z0l6S7 zH8LtQf8CKW6J1IEsBJZfl8Tl1/grMvKkrXQWncw2BlI3aQ7ReebQhgBM2Qzg7C9 K0B457eJq4RCZVglpaYIFV+CAWA4P3IW/LpsEu7Me4JL79z7F8rrKDjbSIwWWklR 3NTa+MMuuJQzQUrMPagbH8qJ2qmXOQgRcc1tnJLFfDQOvOJGKKzVhEbyvLdSoPXo D/dmNebvmzQR090cA3h27d+EphOKPQ/Y11zCaR5ZH9E89YZpwDhe5MtFjxzi+xpI 5pUknweCnZe4wJzLh09q56kljDul9ngIf5r8OFsB/qw3fitEXAdid0GpAly70EAO f6iGh+ffi0J68tjzgK+qD4zRVWBouQ== =QC2b -----END PGP SIGNATURE----- --=-=-=-- From unknown Mon Jun 23 11:28:05 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#39880] [PATCHv2] gnu: python-keras: Fix tests. Resent-From: Efraim Flashner Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Tue, 03 Mar 2020 11:46:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 39880 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Pierre Neidhardt Cc: 39880@debbugs.gnu.org Received: via spool by 39880-submit@debbugs.gnu.org id=B39880.15832359321148 (code B ref 39880); Tue, 03 Mar 2020 11:46:01 +0000 Received: (at 39880) by debbugs.gnu.org; 3 Mar 2020 11:45:32 +0000 Received: from localhost ([127.0.0.1]:38786 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1j95zP-0000IS-QQ for submit@debbugs.gnu.org; Tue, 03 Mar 2020 06:45:31 -0500 Received: from flashner.co.il ([178.62.234.194]:59824) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1j95zO-0000IE-HJ for 39880@debbugs.gnu.org; Tue, 03 Mar 2020 06:45:31 -0500 Received: from localhost (unknown [141.226.13.108]) by flashner.co.il (Postfix) with ESMTPSA id 0CC3A400B5; Tue, 3 Mar 2020 11:45:23 +0000 (UTC) Date: Tue, 3 Mar 2020 13:44:52 +0200 From: Efraim Flashner Message-ID: <20200303114452.GJ6728@E5400> References: <20200303092201.7174-1-mail@ambrevar.xyz> <20200303103809.18233-1-mail@ambrevar.xyz> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="GvznHscUikHnwW2p" Content-Disposition: inline In-Reply-To: <20200303103809.18233-1-mail@ambrevar.xyz> X-PGP-Key-ID: 0x41AAE7DCCA3D8351 X-PGP-Key: https://flashner.co.il/~efraim/efraim_flashner.asc X-PGP-Fingerprint: A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351 X-Spam-Score: -0.0 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) --GvznHscUikHnwW2p Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable I assume you've already gone for the more obvious and seen if you can upgrade keras to 2.3.1? --=20 Efraim Flashner =D7=90=D7=A4=D7=A8=D7=99=D7=9D = =D7=A4=D7=9C=D7=A9=D7=A0=D7=A8 GPG key =3D A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351 Confidentiality cannot be guaranteed on emails sent or received unencrypted --GvznHscUikHnwW2p Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEEoov0DD5VE3JmLRT3Qarn3Mo9g1EFAl5eQzQACgkQQarn3Mo9 g1F3WQ//TL6Pb9uBme9jZHFCc0IsymIMuKVU3Pqg6AU1PmDFIzwYHCyGNuPO8jku +/A9+Oj7mAHVT4sxvhrm1mCWTGP1Gi4dZfldMafvlcJH6l+S809ZP+nJZ+qPyv45 m9p1tns1ugtF2JcfIfo8TgrnSfSAMKjawyJfV4QhOeolh4+19SpUZgUPZJUQSTww n+Sc2I+an/DdW+MtiWf7M7E2wJqdODaPYO36BOOld7x7WRnwScrFNEDaRenb6t4/ Y1VWPeFpos1yxg8RQpFMZVuzm/k2jxdJr8v36RiZLfUqrPZ0DUhcwJWiLth+t0oU cwgKwPUNaccOMdRUvZaviDWn3knCkSdL3BkV1av44yYUb8V49IlfwGQtJ8CLcXDZ VltajkbI5pekM2rVe8bJ4RoJzmoAHCqsHmZ0otcgDwo8TpGTxKUTZ7y45CIwHAb4 04/5wbMtTZ1Bm5VNSHjpM2rCOTRgRo2/KlkRnfZ9oFgzWtFB7y2HY8N3StmAwAL3 CcbSrDa2jdsxn+/taEg3jtyOhWPX9DB/s2cFZJBbG5H2+U3KTEnMvEw1VA2kXBJb nt0KvejaI/F1/MwsZaHfVcxYcsfNfNf99s9kWD/F0ZIdV2j8F1xzswkpP3igoQzG Cr/DuzAZliHxZAoAYgHxHSA7vJ7jt8y3asD4CG5uEFTRsqiN0K4= =P83z -----END PGP SIGNATURE----- --GvznHscUikHnwW2p-- From unknown Mon Jun 23 11:28:05 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#39880] [PATCHv2] gnu: python-keras: Fix tests. Resent-From: Pierre Neidhardt Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Tue, 03 Mar 2020 11:57:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 39880 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Efraim Flashner Cc: 39880@debbugs.gnu.org Received: via spool by 39880-submit@debbugs.gnu.org id=B39880.15832365902154 (code B ref 39880); Tue, 03 Mar 2020 11:57:02 +0000 Received: (at 39880) by debbugs.gnu.org; 3 Mar 2020 11:56:30 +0000 Received: from localhost ([127.0.0.1]:38794 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1j96A2-0000Yf-4v for submit@debbugs.gnu.org; Tue, 03 Mar 2020 06:56:30 -0500 Received: from relay10.mail.gandi.net ([217.70.178.230]:40929) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1j969z-0000YO-Tu for 39880@debbugs.gnu.org; Tue, 03 Mar 2020 06:56:28 -0500 Received: from mimimi (lfbn-idf2-1-1315-147.w92-169.abo.wanadoo.fr [92.169.129.147]) (Authenticated sender: mail@ambrevar.xyz) by relay10.mail.gandi.net (Postfix) with ESMTPSA id 4F58B240002; Tue, 3 Mar 2020 11:56:19 +0000 (UTC) From: Pierre Neidhardt In-Reply-To: <20200303114452.GJ6728@E5400> References: <20200303092201.7174-1-mail@ambrevar.xyz> <20200303103809.18233-1-mail@ambrevar.xyz> <20200303114452.GJ6728@E5400> Date: Tue, 03 Mar 2020 12:56:18 +0100 Message-ID: <871rq9fy8t.fsf@ambrevar.xyz> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha256; protocol="application/pgp-signature" X-Spam-Score: 1.8 (+) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: Indeed :) Starting from Keras 2.2.5, the other backends are unconditionally required by the tests, so it won't do :( Not sure what to do about it. In all cases, it's a a lot of work, so I figured we'd rather get 2.2.4 to build at least. Content analysis details: (1.8 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 URIBL_BLOCKED ADMINISTRATOR NOTICE: The query to URIBL was blocked. See http://wiki.apache.org/spamassassin/DnsBlocklists#dnsbl-block for more information. [URIs: ambrevar.xyz] -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at https://www.dnswl.org/, low trust [217.70.178.230 listed in list.dnswl.org] 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record -0.0 SPF_PASS SPF: sender matches SPF record 2.0 PDS_OTHER_BAD_TLD Untrustworthy TLDs [URI: ambrevar.xyz (xyz)] 0.5 FROM_SUSPICIOUS_NTLD From abused NTLD X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 1.8 (+) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: Indeed :) Starting from Keras 2.2.5, the other backends are unconditionally required by the tests, so it won't do :( Not sure what to do about it. In all cases, it's a a lot of work, so I figured we'd rather get 2.2.4 to build at least. Content analysis details: (1.8 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 URIBL_BLOCKED ADMINISTRATOR NOTICE: The query to URIBL was blocked. See http://wiki.apache.org/spamassassin/DnsBlocklists#dnsbl-block for more information. [URIs: ambrevar.xyz] -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at https://www.dnswl.org/, low trust [217.70.178.230 listed in list.dnswl.org] 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record -0.0 SPF_PASS SPF: sender matches SPF record 2.0 PDS_OTHER_BAD_TLD Untrustworthy TLDs [URI: ambrevar.xyz (xyz)] 0.5 FROM_SUSPICIOUS_NTLD From abused NTLD 1.0 BULK_RE_SUSP_NTLD Precedence bulk and RE: from a suspicious TLD -1.0 MAILING_LIST_MULTI Multiple indicators imply a widely-seen list manager --=-=-= Content-Type: text/plain Content-Transfer-Encoding: quoted-printable Indeed :) Starting from Keras 2.2.5, the other backends are unconditionally required by the tests, so it won't do :( Not sure what to do about it. In all cases, it's a a lot of work, so I figured we'd rather get 2.2.4 to build at least. =2D-=20 Pierre Neidhardt https://ambrevar.xyz/ --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCAAdFiEEUPM+LlsMPZAEJKvom9z0l6S7zH8FAl5eReIACgkQm9z0l6S7 zH+XWQf9Em6xs2UFX0rn59uR9+NSA2U7ZJLDvXuc1WbwHmmR/WsC/sgNaZEPGxTV Zvu6DopXUo+zTRDA2GTmnB59RM4hR9SVA+WaFfTd/8/GUouHrvqeVy5wgzI3nWTe K0qXllu0FgIKfJK0hRD9Y4IdrGHERL6i4afQ3XP/+xiPikJTboGTTFFMpLz1e5lL 3nchGD2rc4b8CX4x03Zy+AU/zuWnUe3wCnfpB+RyZKR1bZfHuvUMebnv6MiEbDC2 GB4DBaXjV8fIcro5PDjSPmzHQ0PEQGdDr7RfC+wCUkrdDPbo8b4AtFEJfx1u4dB0 DW/Hcoml14npZ+yrfRuTCVoKP6WHsg== =4kgv -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Mon Oct 05 01:53:51 2020 Received: (at control) by debbugs.gnu.org; 5 Oct 2020 05:53:51 +0000 Received: from localhost ([127.0.0.1]:47508 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kPJRX-0000c5-H3 for submit@debbugs.gnu.org; Mon, 05 Oct 2020 01:53:51 -0400 Received: from mail-qt1-f171.google.com ([209.85.160.171]:39418) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kPJRV-0000bm-Ii for control@debbugs.gnu.org; Mon, 05 Oct 2020 01:53:49 -0400 Received: by mail-qt1-f171.google.com with SMTP id d1so8683798qtr.6 for ; Sun, 04 Oct 2020 22:53:49 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=date:message-id:to:from:subject; bh=lehsBeTfsNGJk2LNx4CvNuaAX57DzClLUXgbgMtGhdo=; b=uPp3F2JHiIHWWgSmtwheUQGIjs1BIwJJ+VMGck4nMeRPcrFHEkCNy8Q/cNF4gpZV/n alAkvGj6pW0yWHg8kALABRfymHY7JiwrqLvxzjhoAM2Sry12SX+7AxxxMuiQWYEL9UEd z5UVRSoHsRSPNJayWHLfN2cBiSiiS7xTFgfoS+nLae/9QRXqAOJJAgk3Fi+3L4YV2z3s HVvAhF5YEd+qzNMgptTdZLagwkbILOmC2h4tdPKLb/PDke5fERlCs1Vy6OjBjIqOJmF9 ofpvOKhaCaJeUwSHssKiQ+++AGHGhbtGN2vFwCR3yAVLFdKEAMPRClMFAoQiy8Ni4KaE kciw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:message-id:to:from:subject; bh=lehsBeTfsNGJk2LNx4CvNuaAX57DzClLUXgbgMtGhdo=; b=G7GqIdY5wh13i3UvW7CVpWj4GqNbLAvb5vKtgRTbKyoOaA/Lp76zNly6WyGy7lG7aV Inp+8z73LsZl4NLyN8C3manX1RFsRKTjiivKIZFDohgYo3jWY+AJk7Tw3kF/4d63UXF3 ZZIMQ7NEyB5nMInfFmwWGxaHyb4/h4P65nusJrv6DjRPwQyYiXWqa4aJ7uo1Q20m0W6A cHWc4t1kqIHFut7F0VlS4nKd2Ey5AVy9P6dNKbESwZqDRLpkMOxmGQsUMdVNr2FR5rIl a7DuBnOQtgwCEGypm5AdLBifz6pNswLrVD+z7Vj1IkuczsS/Oko5ExmBLjKdYjzts8yz v0uQ== X-Gm-Message-State: AOAM530fxnd5OmFd6mgZYnR+60TdTa6YQxzDfUer0jl1xdZyR/7Qy7MU /3wWc4Wz+X/7ftNkigYPAc/lLm5wdImMCA== X-Google-Smtp-Source: ABdhPJyxy7MTAnGW1XmXK0ZUkNdVNrEILQ4KkAlulnW711TiupeR6QKWuhd6bjnCk0QRtUFyCVXqTA== X-Received: by 2002:aed:2767:: with SMTP id n94mr13370493qtd.237.1601877224033; Sun, 04 Oct 2020 22:53:44 -0700 (PDT) Received: from hurd (dsl-156-63.b2b2c.ca. [66.158.156.63]) by smtp.gmail.com with ESMTPSA id k52sm7107881qtc.56.2020.10.04.22.53.43 for (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Sun, 04 Oct 2020 22:53:43 -0700 (PDT) Date: Mon, 05 Oct 2020 01:53:42 -0400 Message-Id: <87h7r9jk0p.fsf@gmail.com> To: control@debbugs.gnu.org From: Maxim Cournoyer Subject: control message for bug #39880 X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) tags 39880 fixed close 39880 quit