Import tensorflow

This commit is contained in:
2026-02-15 21:45:42 -08:00
parent f3e8b90764
commit c530630153
20524 changed files with 9017694 additions and 25 deletions
@@ -0,0 +1,21 @@
# This file is part of h5py, a Python interface to the HDF5 library.
#
# http://www.h5py.org
#
# Copyright 2008-2013 Andrew Collette and contributors
#
# License: Standard 3-clause BSD; see "license.txt" for full license terms
# and contributor agreement.
"""
This module contains the warning classes for h5py. These classes are part of
the public API of h5py, and should be imported from this module.
"""
class H5pyWarning(UserWarning):
pass
class H5pyDeprecationWarning(H5pyWarning):
pass