forked from PurdueDualityLab/TensorFlowModels
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPipfile
More file actions
23 lines (19 loc) · 610 Bytes
/
Pipfile
File metadata and controls
23 lines (19 loc) · 610 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[dev-packages]
coverage = "*"
[packages]
tensorflow = "==2.*"
tensorflow-addons = ">=0.10.0"
tensorflow-datasets = "*"
absl-py = ">=0.7.0"
numpy = "*"
more_itertools = ">=8.3"
importlib-resources = {version = "*", markers="python_version < '3.7'"}
# Optional packages
# pyyaml = "*" # for serialization and deserialization of models from YAML
# This conflict was resolved by taking the more restrictive of the two versions
# more_itertools = {version = ">=8.3", markers="python_version < '3.10'"}
# more_itertools = ">=2.5"