File tree Expand file tree Collapse file tree 3 files changed +6
-8
lines changed
neural_structured_learning/tools Expand file tree Collapse file tree 3 files changed +6
-8
lines changed Original file line number Diff line number Diff line change @@ -82,8 +82,8 @@ py_test(
8282)
8383
8484py_binary (
85- name = "graph_builder_main " ,
86- srcs = ["graph_builder_main .py" ],
85+ name = "graph_builder " ,
86+ srcs = ["graph_builder .py" ],
8787 python_version = "PY3" ,
8888 deps = [
8989 ":graph_builder_lib" ,
Original file line number Diff line number Diff line change 1818
1919USAGE:
2020
21- `python graph_builder_main.py` [*flags*] *input_features.tfr ...
22- output_graph.tsv*
21+ `python graph_builder.py` [*flags*] *input_features.tfr... output_graph.tsv*
2322
24- For details about this program's flags, run `python graph_builder_main.py
25- --help`.
23+ For details about this program's flags, run `python graph_builder.py --help`.
2624"""
2725
2826from __future__ import absolute_import
3634
3735
3836def _main (argv ):
39- """Main function for running the graph_builder_main program."""
37+ """Main function for running the graph_builder program."""
4038 flag = flags .FLAGS
4139 flag .showprefixforinfo = False
4240 if len (argv ) < 3 :
Original file line number Diff line number Diff line change 1515r"""Library to build a graph based on dense input features (embeddings).
1616
1717A python-based program for graph building also exists on
18- [GitHub](https://github.com/tensorflow/neural-structured-learning/tree/master/neural_structured_learning/tools/graph_builder_main .py).
18+ [GitHub](https://github.com/tensorflow/neural-structured-learning/tree/master/neural_structured_learning/tools/graph_builder .py).
1919"""
2020
2121from __future__ import absolute_import
You can’t perform that action at this time.
0 commit comments