-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tbdev turndown: Remove dataframe api. (#6644)
Remove the experimental API that generates pandas data frames from TensorBoard.dev data. We are turning down TensorBoard.dev.
- Loading branch information
Showing
12 changed files
with
2 additions
and
725 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,78 +1,7 @@ | ||
# Description: | ||
# Experiment Data Access API. | ||
load("@rules_python//python:py_binary.bzl", "py_binary") | ||
load("@rules_python//python:py_library.bzl", "py_library") | ||
load("@rules_python//python:py_test.bzl", "py_test") | ||
|
||
# This is a stub BUILD file that remains after the deletion of the experimental | ||
# data frame API. We keep it (temporarily) to allow copybara imports to succeed. | ||
package(default_visibility = ["//tensorboard:internal"]) | ||
|
||
licenses(["notice"]) | ||
|
||
exports_files(["LICENSE"]) | ||
|
||
py_library( | ||
name = "base_experiment", | ||
srcs = ["base_experiment.py"], | ||
srcs_version = "PY3", | ||
) | ||
|
||
py_library( | ||
name = "experiment_from_dev", | ||
srcs = ["experiment_from_dev.py"], | ||
srcs_version = "PY3", | ||
deps = [ | ||
":base_experiment", | ||
":utils", | ||
"//tensorboard:expect_grpc_installed", | ||
"//tensorboard:expect_pandas_installed", | ||
"//tensorboard/uploader:auth", | ||
"//tensorboard/uploader:server_info", | ||
"//tensorboard/uploader:util", | ||
"//tensorboard/uploader/proto:protos_all_py_pb2", | ||
"//tensorboard/uploader/proto:protos_all_py_pb2_grpc", | ||
"//tensorboard/util:grpc_util", | ||
], | ||
) | ||
|
||
py_test( | ||
name = "experiment_from_dev_test", | ||
srcs = ["experiment_from_dev_test.py"], | ||
srcs_version = "PY3", | ||
deps = [ | ||
":experiment_from_dev", | ||
"//tensorboard:expect_numpy_installed", | ||
"//tensorboard:expect_pandas_installed", | ||
"//tensorboard:test", | ||
"//tensorboard/compat/proto:protos_all_py_pb2", | ||
"//tensorboard/uploader:test_util", | ||
"//tensorboard/uploader/proto:protos_all_py_pb2", | ||
"//tensorboard/util:grpc_util", | ||
], | ||
) | ||
|
||
py_library( | ||
name = "lib_init_only", | ||
srcs = ["__init__.py"], | ||
srcs_version = "PY3", | ||
visibility = ["//tensorboard:internal"], | ||
deps = [ | ||
":experiment_from_dev", | ||
], | ||
) | ||
|
||
py_binary( | ||
name = "test_binary", | ||
srcs = ["test_binary.py"], | ||
srcs_version = "PY3", | ||
deps = ["//tensorboard/data/experimental:experiment_from_dev"], | ||
) | ||
|
||
py_library( | ||
name = "utils", | ||
srcs = ["utils.py"], | ||
srcs_version = "PY3", | ||
visibility = ["//tensorboard:internal"], | ||
deps = [ | ||
"//tensorboard:expect_numpy_installed", | ||
], | ||
) |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.