1# -*- coding: utf-8 -*-
2# Copyright 2015 The TensorFlow Authors. All Rights Reserved.
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8#     http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15# ==============================================================================
16"""Implementation of the Keras API meant to be a high-level API for TensorFlow.
17
18Detailed documentation and user guides are available at
19[keras.io](https://keras.io).
20"""
21from __future__ import absolute_import
22from __future__ import division
23from __future__ import print_function
24
25# pylint: disable=wildcard-import
26from tensorflow.python.keras import activations
27from tensorflow.python.keras import applications
28from tensorflow.python.keras import backend
29from tensorflow.python.keras import callbacks
30from tensorflow.python.keras import constraints
31from tensorflow.python.keras import datasets
32from tensorflow.python.keras import estimator
33from tensorflow.python.keras import initializers
34from tensorflow.python.keras import layers
35from tensorflow.python.keras import losses
36from tensorflow.python.keras import metrics
37from tensorflow.python.keras import models
38from tensorflow.python.keras import optimizers
39from tensorflow.python.keras import preprocessing
40from tensorflow.python.keras import regularizers
41from tensorflow.python.keras import utils
42from tensorflow.python.keras import wrappers
43from tensorflow.python.keras._impl.keras import __version__
44from tensorflow.python.keras.layers import Input
45from tensorflow.python.keras.models import Model
46from tensorflow.python.keras.models import Sequential
47
48del absolute_import
49del division
50del print_function
51