-
Notifications
You must be signed in to change notification settings - Fork 609
/
Copy path__init__.py
97 lines (81 loc) · 3.36 KB
/
__init__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
# Copyright 2019 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""TensorFlow Quantitative Finance."""
import sys
# We need to put some imports inside a function call below, and the function
# call needs to come before the *actual* imports that populate the
# tf_quant_finance namespace. Hence, we disable this lint check throughout
# the file.
#
# pylint: disable=g-import-not-at-top
# Update this whenever we need to depend on a newer TensorFlow release.
_REQUIRED_TENSORFLOW_VERSION = "2.3" # pylint: disable=g-statement-before-imports
# Ensure Python 3 is used.
def _check_py_version():
if sys.version_info[0] < 3:
raise Exception("Please use Python 3. Python 2 is not supported.")
# Ensure TensorFlow is importable and its version is sufficiently recent. This
# needs to happen before anything else, since the imports below will try to
# import tensorflow, too.
def _ensure_tf_install(): # pylint: disable=g-statement-before-imports
"""Attempt to import tensorflow, and ensure its version is sufficient.
Raises:
ImportError: if either tensorflow is not importable or its version is
inadequate.
"""
try:
import tensorflow.compat.v2 as tf
except ImportError:
# Print more informative error message, then reraise.
print("\n\nFailed to import TensorFlow. Please note that TensorFlow is not "
"installed by default when you install TF Quant Finance library. "
"This is so that users can decide whether to install the GPU-enabled "
"TensorFlow package. To use TF Quant Finance library, please install "
"the most recent version of TensorFlow, by following instructions at "
"https://tensorflow.org/install.\n\n")
raise
import distutils.version
if (distutils.version.LooseVersion(tf.__version__) <
distutils.version.LooseVersion(_REQUIRED_TENSORFLOW_VERSION)):
raise ImportError(
"This version of TF Quant Finance library requires TensorFlow "
"version >= {required}; Detected an installation of version {present}. "
"Please upgrade TensorFlow to proceed.".format(
required=_REQUIRED_TENSORFLOW_VERSION, present=tf.__version__))
_check_py_version()
_ensure_tf_install()
from tf_quant_finance import black_scholes
from tf_quant_finance import datetime
try:
# Ignore experimental in case it has not been added in the build rule
from tf_quant_finance import experimental
except ImportError:
pass
from tf_quant_finance import math
from tf_quant_finance import models
from tf_quant_finance import rates
from tf_quant_finance import types
from tf_quant_finance import utils
from tensorflow.python.util.all_util import remove_undocumented # pylint: disable=g-direct-tensorflow-import
_allowed_symbols = [
"black_scholes",
"datetime",
"experimental",
"math",
"models",
"rates",
"types",
"utils",
]
remove_undocumented(__name__, _allowed_symbols)