├── ops.pb
├── Xcode
├── Test
│ ├── chicken.jpg
│ ├── tensorflow-grpc-java
│ │ └── src
│ │ │ └── main
│ │ │ └── resources
│ │ │ └── log4j.properties
│ └── inception
│ │ └── inception_inference.proto
├── Tensorflow.xcodeproj
│ └── project.xcworkspace
│ │ └── contents.xcworkspacedata
└── README.md
├── PythonGenerated
├── tensorflow
│ ├── compiler
│ │ ├── xla
│ │ │ ├── xla_pb2_grpc.py
│ │ │ ├── xla_data_pb2_grpc.py
│ │ │ └── service
│ │ │ │ └── session_pb2_grpc.py
│ │ └── aot
│ │ │ └── tfcompile_pb2_grpc.py
│ ├── core
│ │ ├── protobuf
│ │ │ ├── debug_pb2_grpc.py
│ │ │ ├── saver_pb2_grpc.py
│ │ │ ├── config_pb2_grpc.py
│ │ │ ├── master_pb2_grpc.py
│ │ │ ├── meta_graph_pb2_grpc.py
│ │ │ ├── worker_pb2_grpc.py
│ │ │ ├── control_flow_pb2_grpc.py
│ │ │ ├── named_tensor_pb2_grpc.py
│ │ │ ├── queue_runner_pb2_grpc.py
│ │ │ ├── rewriter_config_pb2_grpc.py
│ │ │ ├── saved_model_pb2_grpc.py
│ │ │ ├── tensor_bundle_pb2_grpc.py
│ │ │ └── tensorflow_server_pb2_grpc.py
│ │ ├── util
│ │ │ ├── event_pb2_grpc.py
│ │ │ ├── test_log_pb2_grpc.py
│ │ │ ├── saved_tensor_slice_pb2_grpc.py
│ │ │ ├── memmapped_file_system_pb2_grpc.py
│ │ │ └── example_proto_fast_parsing_test_pb2_grpc.py
│ │ ├── example
│ │ │ ├── example_pb2_grpc.py
│ │ │ ├── feature_pb2_grpc.py
│ │ │ └── example_parser_configuration_pb2_grpc.py
│ │ ├── framework
│ │ │ ├── function_pb2_grpc.py
│ │ │ ├── graph_pb2_grpc.py
│ │ │ ├── node_def_pb2_grpc.py
│ │ │ ├── op_def_pb2_grpc.py
│ │ │ ├── summary_pb2_grpc.py
│ │ │ ├── tensor_pb2_grpc.py
│ │ │ ├── types_pb2_grpc.py
│ │ │ ├── variable_pb2_grpc.py
│ │ │ ├── versions_pb2_grpc.py
│ │ │ ├── attr_value_pb2_grpc.py
│ │ │ ├── cost_graph_pb2_grpc.py
│ │ │ ├── kernel_def_pb2_grpc.py
│ │ │ ├── log_memory_pb2_grpc.py
│ │ │ ├── reader_base_pb2_grpc.py
│ │ │ ├── step_stats_pb2_grpc.py
│ │ │ ├── tensor_shape_pb2_grpc.py
│ │ │ ├── tensor_slice_pb2_grpc.py
│ │ │ ├── device_attributes_pb2_grpc.py
│ │ │ ├── graph_transfer_info_pb2_grpc.py
│ │ │ ├── op_gen_overrides_pb2_grpc.py
│ │ │ ├── resource_handle_pb2_grpc.py
│ │ │ ├── tensor_description_pb2_grpc.py
│ │ │ ├── allocation_description_pb2_grpc.py
│ │ │ └── remote_fused_graph_execute_info_pb2_grpc.py
│ │ ├── lib
│ │ │ └── core
│ │ │ │ └── error_codes_pb2_grpc.py
│ │ └── grappler
│ │ │ └── costs
│ │ │ └── op_performance_data_pb2_grpc.py
│ ├── tools
│ │ ├── proto_text
│ │ │ └── test_pb2_grpc.py
│ │ ├── tfprof
│ │ │ ├── tfprof_log_pb2_grpc.py
│ │ │ ├── tfprof_options_pb2_grpc.py
│ │ │ └── tfprof_output_pb2_grpc.py
│ │ └── api
│ │ │ └── lib
│ │ │ └── api_objects_pb2_grpc.py
│ ├── contrib
│ │ ├── session_bundle
│ │ │ └── manifest_pb2_grpc.py
│ │ ├── boosted_trees
│ │ │ └── proto
│ │ │ │ ├── learner_pb2_grpc.py
│ │ │ │ ├── quantiles_pb2_grpc.py
│ │ │ │ └── tree_config_pb2_grpc.py
│ │ ├── training
│ │ │ └── python
│ │ │ │ └── training
│ │ │ │ └── hparam_pb2_grpc.py
│ │ ├── tensorboard
│ │ │ ├── plugins
│ │ │ │ └── trace
│ │ │ │ │ └── trace_info_pb2_grpc.py
│ │ │ └── graph_explorer
│ │ │ │ └── proto
│ │ │ │ └── graph_explorer_pb2_grpc.py
│ │ └── cloud
│ │ │ └── kernels
│ │ │ └── bigquery_table_partition_pb2_grpc.py
│ ├── python
│ │ ├── training
│ │ │ └── checkpoint_state_pb2_grpc.py
│ │ ├── util
│ │ │ └── protobuf
│ │ │ │ └── compare_test_pb2_grpc.py
│ │ └── framework
│ │ │ └── cpp_shape_inference_pb2_grpc.py
│ └── tensorboard
│ │ └── plugins
│ │ └── projector
│ │ └── projector_config_pb2_grpc.py
└── tensorflow_serving
│ ├── apis
│ ├── input_pb2_grpc.py
│ ├── model_pb2_grpc.py
│ ├── inference_pb2_grpc.py
│ ├── predict_pb2_grpc.py
│ ├── regression_pb2_grpc.py
│ ├── classification_pb2_grpc.py
│ ├── get_model_metadata_pb2_grpc.py
│ └── internal
│ │ └── serialized_input_pb2_grpc.py
│ ├── core
│ ├── logging_pb2_grpc.py
│ └── test_util
│ │ └── fake_loader_source_adapter_pb2_grpc.py
│ ├── config
│ ├── logging_config_pb2_grpc.py
│ ├── model_server_config_pb2_grpc.py
│ ├── platform_config_pb2_grpc.py
│ └── log_collector_config_pb2_grpc.py
│ ├── resources
│ └── resources_pb2_grpc.py
│ ├── util
│ └── class_registration_test_pb2_grpc.py
│ ├── servables
│ ├── hashmap
│ │ └── hashmap_source_adapter_pb2_grpc.py
│ └── tensorflow
│ │ ├── session_bundle_config_pb2_grpc.py
│ │ ├── session_bundle_source_adapter_pb2_grpc.py
│ │ └── saved_model_bundle_source_adapter_pb2_grpc.py
│ ├── sources
│ └── storage_path
│ │ ├── static_storage_path_source_pb2_grpc.py
│ │ └── file_system_storage_path_source_pb2_grpc.py
│ └── model_servers
│ └── test_util
│ └── storage_path_error_injecting_source_adapter_pb2_grpc.py
├── NodeGenerated
├── enum.js
├── variadicoperation.js
├── modeltype.js
├── ternaryoperation.js
├── foreignenum.js
├── randomdistribution.js
├── paddingvalue.js
├── primitivetype.js
├── unaryoperation.js
├── binaryoperation.js
└── code.js
├── GoGenerated
└── serving
│ ├── tensorflow_serving
│ ├── core
│ │ ├── test_util
│ │ │ └── fake_loader_source_adapter.proto
│ │ └── logging.proto
│ ├── servables
│ │ ├── tensorflow
│ │ │ ├── session_bundle_source_adapter.proto
│ │ │ └── saved_model_bundle_source_adapter.proto
│ │ └── hashmap
│ │ │ └── hashmap_source_adapter.proto
│ ├── model_servers
│ │ └── test_util
│ │ │ └── storage_path_error_injecting_source_adapter.proto
│ ├── config
│ │ ├── log_collector_config.proto
│ │ ├── logging_config.proto
│ │ └── platform_config.proto
│ ├── sources
│ │ └── storage_path
│ │ │ └── static_storage_path_source.proto
│ ├── util
│ │ └── class_registration_test.proto
│ └── apis
│ │ ├── regression.proto
│ │ └── model.proto
│ └── tensorflow
│ ├── contrib
│ ├── mpi
│ │ └── mpi_msg.proto
│ ├── cloud
│ │ └── kernels
│ │ │ └── bigquery_table_partition.proto
│ └── boosted_trees
│ │ └── proto
│ │ └── quantiles.proto
│ ├── core
│ ├── framework
│ │ ├── reader_base.proto
│ │ ├── tensor_description.proto
│ │ └── allocation_description.proto
│ ├── util
│ │ └── example_proto_fast_parsing_test.proto
│ └── protobuf
│ │ ├── named_tensor.proto
│ │ ├── saved_model.proto
│ │ └── queue_runner.proto
│ ├── python
│ ├── training
│ │ └── checkpoint_state.proto
│ └── framework
│ │ └── cpp_shape_inference.proto
│ └── tools
│ ├── api
│ └── lib
│ │ └── api_objects.proto
│ └── tfprof
│ └── tfprof_options.proto
├── RubyGenerated
├── tensorflow
│ ├── core
│ │ ├── protobuf
│ │ │ ├── master_service_pb.rb
│ │ │ ├── worker_service_pb.rb
│ │ │ ├── named_tensor_pb.rb
│ │ │ ├── saved_model_pb.rb
│ │ │ ├── cluster_pb.rb
│ │ │ ├── queue_runner_pb.rb
│ │ │ └── tensorflow_server_pb.rb
│ │ ├── framework
│ │ │ ├── versions_pb.rb
│ │ │ ├── reader_base_pb.rb
│ │ │ ├── resource_handle_pb.rb
│ │ │ ├── node_def_pb.rb
│ │ │ ├── allocation_description_pb.rb
│ │ │ ├── graph_pb.rb
│ │ │ ├── tensor_shape_pb.rb
│ │ │ ├── tensor_slice_pb.rb
│ │ │ └── tensor_description_pb.rb
│ │ ├── example
│ │ │ └── example_pb.rb
│ │ └── util
│ │ │ ├── memmapped_file_system_pb.rb
│ │ │ └── example_proto_fast_parsing_test_pb.rb
│ ├── tensorflow
│ │ ├── contrib
│ │ │ ├── cloud
│ │ │ │ └── kernels
│ │ │ │ │ └── bigquery_table_partition.proto
│ │ │ └── boosted_trees
│ │ │ │ └── proto
│ │ │ │ └── quantiles.proto
│ │ ├── core
│ │ │ ├── framework
│ │ │ │ ├── reader_base.proto
│ │ │ │ ├── tensor_description.proto
│ │ │ │ └── allocation_description.proto
│ │ │ ├── util
│ │ │ │ └── example_proto_fast_parsing_test.proto
│ │ │ └── protobuf
│ │ │ │ ├── named_tensor.proto
│ │ │ │ ├── saved_model.proto
│ │ │ │ └── queue_runner.proto
│ │ ├── python
│ │ │ ├── framework
│ │ │ │ └── cpp_shape_inference.proto
│ │ │ └── training
│ │ │ │ └── checkpoint_state.proto
│ │ └── tools
│ │ │ ├── tfprof
│ │ │ ├── tfprof_log.proto
│ │ │ └── tfprof_options.proto
│ │ │ └── api
│ │ │ └── lib
│ │ │ └── api_objects.proto
│ ├── python
│ │ └── training
│ │ │ └── checkpoint_state_pb.rb
│ └── contrib
│ │ ├── cloud
│ │ └── kernels
│ │ │ └── bigquery_table_partition_pb.rb
│ │ └── mpi
│ │ └── mpi_msg_pb.rb
└── tensorflow_serving
│ ├── apis
│ ├── prediction_service_pb.rb
│ └── model_pb.rb
│ ├── config
│ ├── log_collector_config_pb.rb
│ └── platform_config_pb.rb
│ ├── core
│ ├── test_util
│ │ └── fake_loader_source_adapter_pb.rb
│ └── logging_pb.rb
│ ├── sources
│ └── storage_path
│ │ └── static_storage_path_source_pb.rb
│ ├── servables
│ ├── tensorflow
│ │ ├── session_bundle_source_adapter_pb.rb
│ │ └── saved_model_bundle_source_adapter_pb.rb
│ └── hashmap
│ │ └── hashmap_source_adapter_pb.rb
│ └── model_servers
│ └── test_util
│ └── storage_path_error_injecting_source_adapter_pb.rb
├── JavaGenerated
└── org
│ └── tensorflow
│ ├── distruntime
│ ├── ResetResponseOrBuilder.java
│ ├── TracingResponseOrBuilder.java
│ ├── GetStatusRequestOrBuilder.java
│ ├── CleanupAllResponseOrBuilder.java
│ ├── ListDevicesRequestOrBuilder.java
│ ├── CleanupGraphResponseOrBuilder.java
│ ├── CloseSessionResponseOrBuilder.java
│ ├── DeregisterGraphResponseOrBuilder.java
│ ├── CreateWorkerSessionResponseOrBuilder.java
│ ├── CleanupGraphRequestOrBuilder.java
│ ├── ExecutorOptsOrBuilder.java
│ ├── ExtendSessionResponseOrBuilder.java
│ ├── TracingRequestOrBuilder.java
│ └── LabeledStepStatsOrBuilder.java
│ ├── contrib
│ └── verbs
│ │ ├── MemoryRegionOrBuilder.java
│ │ └── ChannelOrBuilder.java
│ ├── framework
│ ├── AutoParallelOptionsOrBuilder.java
│ ├── DeviceLocalityOrBuilder.java
│ ├── ThreadPoolOptionProtoOrBuilder.java
│ ├── RPCOptionsOrBuilder.java
│ └── ReaderBaseStateOrBuilder.java
│ ├── tfcompile
│ └── TensorIdOrBuilder.java
│ ├── example
│ ├── BytesListOrBuilder.java
│ ├── Int64ListOrBuilder.java
│ ├── FloatListOrBuilder.java
│ └── ExampleOrBuilder.java
│ └── util
│ ├── testlog
│ ├── MemoryInfoOrBuilder.java
│ ├── EntryValueOrBuilder.java
│ └── RunConfigurationOrBuilder.java
│ └── LogMessageOrBuilder.java
├── CPPGenerated
├── tensorflow
│ ├── tensorflow
│ │ ├── contrib
│ │ │ ├── cloud
│ │ │ │ └── kernels
│ │ │ │ │ └── bigquery_table_partition.proto
│ │ │ └── boosted_trees
│ │ │ │ └── proto
│ │ │ │ └── quantiles.proto
│ │ ├── core
│ │ │ ├── framework
│ │ │ │ ├── reader_base.proto
│ │ │ │ ├── tensor_description.proto
│ │ │ │ └── allocation_description.proto
│ │ │ ├── util
│ │ │ │ └── example_proto_fast_parsing_test.proto
│ │ │ └── protobuf
│ │ │ │ ├── named_tensor.proto
│ │ │ │ ├── saved_model.proto
│ │ │ │ └── queue_runner.proto
│ │ ├── python
│ │ │ ├── framework
│ │ │ │ └── cpp_shape_inference.proto
│ │ │ └── training
│ │ │ │ └── checkpoint_state.proto
│ │ └── tools
│ │ │ ├── tfprof
│ │ │ ├── tfprof_log.proto
│ │ │ └── tfprof_options.proto
│ │ │ └── api
│ │ │ └── lib
│ │ │ └── api_objects.proto
│ ├── compiler
│ │ ├── xla
│ │ │ ├── xla.grpc.pb.cc
│ │ │ ├── xla_data.grpc.pb.cc
│ │ │ └── service
│ │ │ │ └── session.grpc.pb.cc
│ │ └── aot
│ │ │ └── tfcompile.grpc.pb.cc
│ ├── core
│ │ ├── util
│ │ │ ├── event.grpc.pb.cc
│ │ │ ├── test_log.grpc.pb.cc
│ │ │ ├── saved_tensor_slice.grpc.pb.cc
│ │ │ ├── memmapped_file_system.grpc.pb.cc
│ │ │ └── example_proto_fast_parsing_test.grpc.pb.cc
│ │ ├── example
│ │ │ ├── example.grpc.pb.cc
│ │ │ ├── feature.grpc.pb.cc
│ │ │ └── example_parser_configuration.grpc.pb.cc
│ │ ├── framework
│ │ │ ├── graph.grpc.pb.cc
│ │ │ ├── types.grpc.pb.cc
│ │ │ ├── op_def.grpc.pb.cc
│ │ │ ├── tensor.grpc.pb.cc
│ │ │ ├── summary.grpc.pb.cc
│ │ │ ├── function.grpc.pb.cc
│ │ │ ├── node_def.grpc.pb.cc
│ │ │ ├── variable.grpc.pb.cc
│ │ │ ├── versions.grpc.pb.cc
│ │ │ ├── attr_value.grpc.pb.cc
│ │ │ ├── cost_graph.grpc.pb.cc
│ │ │ ├── kernel_def.grpc.pb.cc
│ │ │ ├── log_memory.grpc.pb.cc
│ │ │ ├── step_stats.grpc.pb.cc
│ │ │ ├── reader_base.grpc.pb.cc
│ │ │ ├── tensor_shape.grpc.pb.cc
│ │ │ ├── tensor_slice.grpc.pb.cc
│ │ │ ├── resource_handle.grpc.pb.cc
│ │ │ ├── op_gen_overrides.grpc.pb.cc
│ │ │ ├── device_attributes.grpc.pb.cc
│ │ │ ├── tensor_description.grpc.pb.cc
│ │ │ ├── graph_transfer_info.grpc.pb.cc
│ │ │ ├── allocation_description.grpc.pb.cc
│ │ │ └── remote_fused_graph_execute_info.grpc.pb.cc
│ │ ├── protobuf
│ │ │ ├── config.grpc.pb.cc
│ │ │ ├── debug.grpc.pb.cc
│ │ │ ├── master.grpc.pb.cc
│ │ │ ├── saver.grpc.pb.cc
│ │ │ ├── worker.grpc.pb.cc
│ │ │ ├── meta_graph.grpc.pb.cc
│ │ │ ├── saved_model.grpc.pb.cc
│ │ │ ├── control_flow.grpc.pb.cc
│ │ │ ├── named_tensor.grpc.pb.cc
│ │ │ ├── queue_runner.grpc.pb.cc
│ │ │ ├── tensor_bundle.grpc.pb.cc
│ │ │ ├── rewriter_config.grpc.pb.cc
│ │ │ └── tensorflow_server.grpc.pb.cc
│ │ ├── lib
│ │ │ └── core
│ │ │ │ └── error_codes.grpc.pb.cc
│ │ └── grappler
│ │ │ └── costs
│ │ │ └── op_performance_data.grpc.pb.cc
│ ├── python
│ │ ├── training
│ │ │ └── checkpoint_state.grpc.pb.cc
│ │ ├── util
│ │ │ └── protobuf
│ │ │ │ └── compare_test.grpc.pb.cc
│ │ └── framework
│ │ │ └── cpp_shape_inference.grpc.pb.cc
│ ├── tools
│ │ ├── proto_text
│ │ │ └── test.grpc.pb.cc
│ │ ├── tfprof
│ │ │ ├── tfprof_log.grpc.pb.cc
│ │ │ ├── tfprof_options.grpc.pb.cc
│ │ │ └── tfprof_output.grpc.pb.cc
│ │ └── api
│ │ │ └── lib
│ │ │ └── api_objects.grpc.pb.cc
│ ├── contrib
│ │ ├── boosted_trees
│ │ │ └── proto
│ │ │ │ ├── quantiles.grpc.pb.cc
│ │ │ │ └── learner.grpc.pb.cc
│ │ ├── training
│ │ │ └── python
│ │ │ │ └── training
│ │ │ │ └── hparam.grpc.pb.cc
│ │ ├── session_bundle
│ │ │ └── manifest.grpc.pb.cc
│ │ ├── cloud
│ │ │ └── kernels
│ │ │ │ └── bigquery_table_partition.grpc.pb.cc
│ │ └── tensorboard
│ │ │ └── graph_explorer
│ │ │ └── proto
│ │ │ └── graph_explorer.grpc.pb.cc
│ └── tensorboard
│ │ └── plugins
│ │ └── projector
│ │ └── projector_config.grpc.pb.cc
└── tensorflow_serving
│ ├── apis
│ ├── input.grpc.pb.cc
│ ├── model.grpc.pb.cc
│ ├── predict.grpc.pb.cc
│ ├── inference.grpc.pb.cc
│ ├── regression.grpc.pb.cc
│ ├── classification.grpc.pb.cc
│ └── get_model_metadata.grpc.pb.cc
│ ├── core
│ └── logging.grpc.pb.cc
│ ├── resources
│ └── resources.grpc.pb.cc
│ ├── config
│ ├── logging_config.grpc.pb.cc
│ ├── platform_config.grpc.pb.cc
│ ├── model_server_config.grpc.pb.cc
│ └── log_collector_config.grpc.pb.cc
│ ├── util
│ └── class_registration_test.grpc.pb.cc
│ └── servables
│ ├── hashmap
│ └── hashmap_source_adapter.grpc.pb.cc
│ └── tensorflow
│ └── session_bundle_config.grpc.pb.cc
├── README.md
└── Sources
└── prediction_service.pb.swift
/ops.pb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nubbel/swift-tensorflow/HEAD/ops.pb
--------------------------------------------------------------------------------
/Xcode/Test/chicken.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nubbel/swift-tensorflow/HEAD/Xcode/Test/chicken.jpg
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow/compiler/xla/xla_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow/core/protobuf/debug_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow/core/protobuf/saver_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow/core/util/event_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow/core/util/test_log_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow_serving/apis/input_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow_serving/apis/model_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow/compiler/aot/tfcompile_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow/compiler/xla/xla_data_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow/core/example/example_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow/core/example/feature_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow/core/framework/function_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow/core/framework/graph_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow/core/framework/node_def_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow/core/framework/op_def_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow/core/framework/summary_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow/core/framework/tensor_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow/core/framework/types_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow/core/framework/variable_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow/core/framework/versions_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow/core/protobuf/config_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow/core/protobuf/master_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow/core/protobuf/meta_graph_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow/core/protobuf/worker_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow/tools/proto_text/test_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow/tools/tfprof/tfprof_log_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow_serving/apis/inference_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow_serving/apis/predict_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow_serving/apis/regression_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow_serving/core/logging_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow/compiler/xla/service/session_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow/core/framework/attr_value_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow/core/framework/cost_graph_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow/core/framework/kernel_def_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow/core/framework/log_memory_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow/core/framework/reader_base_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow/core/framework/step_stats_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow/core/framework/tensor_shape_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow/core/framework/tensor_slice_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow/core/lib/core/error_codes_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow/core/protobuf/control_flow_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow/core/protobuf/named_tensor_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow/core/protobuf/queue_runner_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow/core/protobuf/rewriter_config_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow/core/protobuf/saved_model_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow/core/protobuf/tensor_bundle_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow/core/util/saved_tensor_slice_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow/tools/api/lib/api_objects_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow/tools/tfprof/tfprof_options_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow/tools/tfprof/tfprof_output_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow_serving/apis/classification_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow_serving/config/logging_config_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow_serving/resources/resources_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow/contrib/session_bundle/manifest_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow/core/framework/device_attributes_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow/core/framework/graph_transfer_info_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow/core/framework/op_gen_overrides_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow/core/framework/resource_handle_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow/core/framework/tensor_description_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow/core/protobuf/tensorflow_server_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow/core/util/memmapped_file_system_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow/python/training/checkpoint_state_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow/python/util/protobuf/compare_test_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow_serving/apis/get_model_metadata_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow_serving/config/model_server_config_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow_serving/config/platform_config_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow/contrib/boosted_trees/proto/learner_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow/contrib/boosted_trees/proto/quantiles_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow/contrib/boosted_trees/proto/tree_config_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow/contrib/training/python/training/hparam_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow/core/framework/allocation_description_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow/core/grappler/costs/op_performance_data_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow/python/framework/cpp_shape_inference_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow_serving/apis/internal/serialized_input_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow_serving/config/log_collector_config_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow_serving/util/class_registration_test_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow/contrib/tensorboard/plugins/trace/trace_info_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow/core/example/example_parser_configuration_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow/core/util/example_proto_fast_parsing_test_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow/contrib/cloud/kernels/bigquery_table_partition_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow/core/framework/remote_fused_graph_execute_info_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow/tensorboard/plugins/projector/projector_config_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow_serving/core/test_util/fake_loader_source_adapter_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow_serving/servables/hashmap/hashmap_source_adapter_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/PythonGenerated/tensorflow_serving/servables/tensorflow/session_bundle_config_pb2_grpc.py:
--------------------------------------------------------------------------------
1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2 | import grpc
3 | from grpc.framework.common import cardinality
4 | from grpc.framework.interfaces.face import utilities as face_utilities
5 |
6 |
--------------------------------------------------------------------------------
/Xcode/Tensorflow.xcodeproj/project.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
1 |
2 | int64 step_id = 1;
12 | */
13 | long getStepId();
14 | }
15 |
--------------------------------------------------------------------------------
/NodeGenerated/primitivetype.js:
--------------------------------------------------------------------------------
1 | /**
2 | * @fileoverview
3 | * @enhanceable
4 | * @public
5 | */
6 | // GENERATED CODE -- DO NOT EDIT!
7 |
8 | goog.provide('proto.xla.PrimitiveType');
9 |
10 | /**
11 | * @enum {number}
12 | */
13 | proto.xla.PrimitiveType = {
14 | PRIMITIVE_TYPE_INVALID: 0,
15 | PRED: 1,
16 | S8: 2,
17 | S16: 3,
18 | S32: 4,
19 | S64: 5,
20 | U8: 6,
21 | U16: 7,
22 | U32: 8,
23 | U64: 9,
24 | F16: 10,
25 | F32: 11,
26 | F64: 12,
27 | TUPLE: 13,
28 | OPAQUE: 14
29 | };
30 |
31 |
--------------------------------------------------------------------------------
/Xcode/README.md:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | TROUBLESHOOTING
5 | =============================
6 | if you get an import No such Module SwiftProtobuf
7 | import SwiftProtobuf
8 |
9 | cd grpc-swift
10 | make
11 |
12 |
13 | if you get an import gRPC error - check the header search path
14 |
15 | if(when) you get _deflate / deflateEnd / deflateInit2
16 |
17 | in targets SwiftGRPC.xcodeproj
18 | CgRPC
19 |
20 | add libz.tbd to Linked Frameworks And Libraries
21 |
22 |
23 | known issue
24 | https://github.com/grpc/grpc-swift
25 |
26 |
27 |
--------------------------------------------------------------------------------
/NodeGenerated/unaryoperation.js:
--------------------------------------------------------------------------------
1 | /**
2 | * @fileoverview
3 | * @enhanceable
4 | * @public
5 | */
6 | // GENERATED CODE -- DO NOT EDIT!
7 |
8 | goog.provide('proto.xla.UnaryOperation');
9 |
10 | /**
11 | * @enum {number}
12 | */
13 | proto.xla.UnaryOperation = {
14 | UNOP_INVALID: 0,
15 | UNOP_LOGICAL_NOT: 1,
16 | UNOP_EXP: 2,
17 | UNOP_NEGATE: 3,
18 | UNOP_SORT: 4,
19 | UNOP_TANH: 5,
20 | UNOP_LOG: 6,
21 | UNOP_FLOOR: 7,
22 | UNOP_CEIL: 8,
23 | UNOP_ABS: 9,
24 | UNOP_SIGN: 10,
25 | UNOP_IS_FINITE: 11
26 | };
27 |
28 |
--------------------------------------------------------------------------------
/GoGenerated/serving/tensorflow/core/framework/reader_base.proto:
--------------------------------------------------------------------------------
1 | syntax = "proto3";
2 |
3 | package tensorflow;
4 | option cc_enable_arenas = true;
5 | option java_outer_classname = "ReaderBaseProtos";
6 | option java_multiple_files = true;
7 | option java_package = "org.tensorflow.framework";
8 |
9 | // For serializing and restoring the state of ReaderBase, see
10 | // reader_base.h for details.
11 | message ReaderBaseState {
12 | int64 work_started = 1;
13 | int64 work_finished = 2;
14 | int64 num_records_produced = 3;
15 | bytes current_work = 4;
16 | };
17 |
--------------------------------------------------------------------------------
/CPPGenerated/tensorflow/tensorflow/core/framework/reader_base.proto:
--------------------------------------------------------------------------------
1 | syntax = "proto3";
2 |
3 | package tensorflow;
4 | option cc_enable_arenas = true;
5 | option java_outer_classname = "ReaderBaseProtos";
6 | option java_multiple_files = true;
7 | option java_package = "org.tensorflow.framework";
8 |
9 | // For serializing and restoring the state of ReaderBase, see
10 | // reader_base.h for details.
11 | message ReaderBaseState {
12 | int64 work_started = 1;
13 | int64 work_finished = 2;
14 | int64 num_records_produced = 3;
15 | bytes current_work = 4;
16 | };
17 |
--------------------------------------------------------------------------------
/RubyGenerated/tensorflow/tensorflow/core/framework/reader_base.proto:
--------------------------------------------------------------------------------
1 | syntax = "proto3";
2 |
3 | package tensorflow;
4 | option cc_enable_arenas = true;
5 | option java_outer_classname = "ReaderBaseProtos";
6 | option java_multiple_files = true;
7 | option java_package = "org.tensorflow.framework";
8 |
9 | // For serializing and restoring the state of ReaderBase, see
10 | // reader_base.h for details.
11 | message ReaderBaseState {
12 | int64 work_started = 1;
13 | int64 work_finished = 2;
14 | int64 num_records_produced = 3;
15 | bytes current_work = 4;
16 | };
17 |
--------------------------------------------------------------------------------
/GoGenerated/serving/tensorflow_serving/servables/tensorflow/saved_model_bundle_source_adapter.proto:
--------------------------------------------------------------------------------
1 | syntax = "proto3";
2 |
3 | import "tensorflow_serving/servables/tensorflow/session_bundle_config.proto";
4 |
5 | package tensorflow.serving;
6 |
7 | // Config proto for SavedModelBundleSourceAdapter.
8 | message SavedModelBundleSourceAdapterConfig {
9 | // A SessionBundleConfig.
10 | // FOR INTERNAL USE ONLY DURING TRANSITION TO SAVED_MODEL. WILL BE DEPRECATED.
11 | // TODO(b/32248363): Replace this field with the "real" field(s).
12 | SessionBundleConfig legacy_config = 1000;
13 | }
14 |
--------------------------------------------------------------------------------
/CPPGenerated/tensorflow/tensorflow/python/framework/cpp_shape_inference.proto:
--------------------------------------------------------------------------------
1 | syntax = "proto3";
2 |
3 | package tensorflow;
4 | option cc_enable_arenas = true;
5 |
6 | import "tensorflow/core/framework/types.proto";
7 | import "tensorflow/core/framework/tensor_shape.proto";
8 |
9 | message CppShapeInferenceResult {
10 | TensorShapeProto shape = 1;
11 | TensorShapeProto handle_shape = 2;
12 | DataType handle_dtype = 3;
13 | }
14 |
15 | message CppShapeInferenceInputsNeeded {
16 | repeated int32 input_tensors_needed = 1;
17 | repeated int32 input_tensors_as_shapes_needed = 2;
18 | }
19 |
--------------------------------------------------------------------------------
/GoGenerated/serving/tensorflow_serving/config/logging_config.proto:
--------------------------------------------------------------------------------
1 | syntax = "proto3";
2 |
3 | package tensorflow.serving;
4 | option cc_enable_arenas = true;
5 |
6 | import "tensorflow_serving/config/log_collector_config.proto";
7 |
8 | message SamplingConfig {
9 | // Requests will be logged uniformly at random with this probability. Valid
10 | // range: [0, 1.0].
11 | double sampling_rate = 1;
12 | }
13 |
14 | // Configuration for logging query/responses.
15 | message LoggingConfig {
16 | LogCollectorConfig log_collector_config = 1;
17 | SamplingConfig sampling_config = 2;
18 | }
19 |
--------------------------------------------------------------------------------
/RubyGenerated/tensorflow/tensorflow/python/framework/cpp_shape_inference.proto:
--------------------------------------------------------------------------------
1 | syntax = "proto3";
2 |
3 | package tensorflow;
4 | option cc_enable_arenas = true;
5 |
6 | import "tensorflow/core/framework/types.proto";
7 | import "tensorflow/core/framework/tensor_shape.proto";
8 |
9 | message CppShapeInferenceResult {
10 | TensorShapeProto shape = 1;
11 | TensorShapeProto handle_shape = 2;
12 | DataType handle_dtype = 3;
13 | }
14 |
15 | message CppShapeInferenceInputsNeeded {
16 | repeated int32 input_tensors_needed = 1;
17 | repeated int32 input_tensors_as_shapes_needed = 2;
18 | }
19 |
--------------------------------------------------------------------------------
/RubyGenerated/tensorflow/core/framework/versions_pb.rb:
--------------------------------------------------------------------------------
1 | # Generated by the protocol buffer compiler. DO NOT EDIT!
2 | # source: tensorflow/core/framework/versions.proto
3 |
4 | require 'google/protobuf'
5 |
6 | Google::Protobuf::DescriptorPool.generated_pool.build do
7 | add_message "tensorflow.VersionDef" do
8 | optional :producer, :int32, 1
9 | optional :min_consumer, :int32, 2
10 | repeated :bad_consumers, :int32, 3
11 | end
12 | end
13 |
14 | module Tensorflow
15 | VersionDef = Google::Protobuf::DescriptorPool.generated_pool.lookup("tensorflow.VersionDef").msgclass
16 | end
17 |
--------------------------------------------------------------------------------
/JavaGenerated/org/tensorflow/contrib/verbs/MemoryRegionOrBuilder.java:
--------------------------------------------------------------------------------
1 | // Generated by the protocol buffer compiler. DO NOT EDIT!
2 | // source: tensorflow/contrib/verbs/verbs_service.proto
3 |
4 | package org.tensorflow.contrib.verbs;
5 |
6 | public interface MemoryRegionOrBuilder extends
7 | // @@protoc_insertion_point(interface_extends:tensorflow.MemoryRegion)
8 | com.google.protobuf.MessageOrBuilder {
9 |
10 | /**
11 | * uint64 remote_addr = 1;
12 | */
13 | long getRemoteAddr();
14 |
15 | /**
16 | * uint32 rkey = 2;
17 | */
18 | int getRkey();
19 | }
20 |
--------------------------------------------------------------------------------
/RubyGenerated/tensorflow/python/training/checkpoint_state_pb.rb:
--------------------------------------------------------------------------------
1 | # Generated by the protocol buffer compiler. DO NOT EDIT!
2 | # source: tensorflow/python/training/checkpoint_state.proto
3 |
4 | require 'google/protobuf'
5 |
6 | Google::Protobuf::DescriptorPool.generated_pool.build do
7 | add_message "tensorflow.CheckpointState" do
8 | optional :model_checkpoint_path, :string, 1
9 | repeated :all_model_checkpoint_paths, :string, 2
10 | end
11 | end
12 |
13 | module Tensorflow
14 | CheckpointState = Google::Protobuf::DescriptorPool.generated_pool.lookup("tensorflow.CheckpointState").msgclass
15 | end
16 |
--------------------------------------------------------------------------------
/JavaGenerated/org/tensorflow/distruntime/ExecutorOptsOrBuilder.java:
--------------------------------------------------------------------------------
1 | // Generated by the protocol buffer compiler. DO NOT EDIT!
2 | // source: tensorflow/core/protobuf/worker.proto
3 |
4 | package org.tensorflow.distruntime;
5 |
6 | public interface ExecutorOptsOrBuilder extends
7 | // @@protoc_insertion_point(interface_extends:tensorflow.ExecutorOpts)
8 | com.google.protobuf.MessageOrBuilder {
9 |
10 | /**
11 | * bool record_costs = 1;
12 | */
13 | boolean getRecordCosts();
14 |
15 | /**
16 | * bool record_timeline = 3;
17 | */
18 | boolean getRecordTimeline();
19 | }
20 |
--------------------------------------------------------------------------------
/JavaGenerated/org/tensorflow/framework/AutoParallelOptionsOrBuilder.java:
--------------------------------------------------------------------------------
1 | // Generated by the protocol buffer compiler. DO NOT EDIT!
2 | // source: tensorflow/core/protobuf/rewriter_config.proto
3 |
4 | package org.tensorflow.framework;
5 |
6 | public interface AutoParallelOptionsOrBuilder extends
7 | // @@protoc_insertion_point(interface_extends:tensorflow.AutoParallelOptions)
8 | com.google.protobuf.MessageOrBuilder {
9 |
10 | /**
11 | * bool enable = 1;
12 | */
13 | boolean getEnable();
14 |
15 | /**
16 | * int32 num_replicas = 2;
17 | */
18 | int getNumReplicas();
19 | }
20 |
--------------------------------------------------------------------------------
/RubyGenerated/tensorflow_serving/apis/prediction_service_pb.rb:
--------------------------------------------------------------------------------
1 | # Generated by the protocol buffer compiler. DO NOT EDIT!
2 | # source: tensorflow_serving/apis/prediction_service.proto
3 |
4 | require 'google/protobuf'
5 |
6 | require 'tensorflow_serving/apis/classification_pb'
7 | require 'tensorflow_serving/apis/get_model_metadata_pb'
8 | require 'tensorflow_serving/apis/inference_pb'
9 | require 'tensorflow_serving/apis/predict_pb'
10 | require 'tensorflow_serving/apis/regression_pb'
11 | Google::Protobuf::DescriptorPool.generated_pool.build do
12 | end
13 |
14 | module Tensorflow
15 | module Serving
16 | end
17 | end
18 |
--------------------------------------------------------------------------------
/RubyGenerated/tensorflow/contrib/cloud/kernels/bigquery_table_partition_pb.rb:
--------------------------------------------------------------------------------
1 | # Generated by the protocol buffer compiler. DO NOT EDIT!
2 | # source: tensorflow/contrib/cloud/kernels/bigquery_table_partition.proto
3 |
4 | require 'google/protobuf'
5 |
6 | Google::Protobuf::DescriptorPool.generated_pool.build do
7 | add_message "tensorflow.BigQueryTablePartition" do
8 | optional :start_index, :int64, 1
9 | optional :end_index, :int64, 2
10 | end
11 | end
12 |
13 | module Tensorflow
14 | BigQueryTablePartition = Google::Protobuf::DescriptorPool.generated_pool.lookup("tensorflow.BigQueryTablePartition").msgclass
15 | end
16 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # 🚀 swift-tensorflow
2 |
3 |
4 | [Tensorflow](https://www.tensorflow.org) data structures generated from [protobuf definitions](https://github.com/tensorflow/tensorflow/tree/master/tensorflow/core/framework)
5 | using [swift-protobuf](https://github.com/apple/swift-protobuf) & using [swift-grpc-protobuf](https://github.com/grpc/grpc-swift)
6 |
7 |
8 | [RUNME.sh](RUNME.sh) will download latest tensorflow proto files / swift grpc and build protobuf files en masse.
9 |
10 | [](https://asciinema.org/a/ckEQw21bKkzaempoCZx26HEDb)
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/RubyGenerated/tensorflow/core/protobuf/named_tensor_pb.rb:
--------------------------------------------------------------------------------
1 | # Generated by the protocol buffer compiler. DO NOT EDIT!
2 | # source: tensorflow/core/protobuf/named_tensor.proto
3 |
4 | require 'google/protobuf'
5 |
6 | require 'tensorflow/core/framework/tensor_pb'
7 | Google::Protobuf::DescriptorPool.generated_pool.build do
8 | add_message "tensorflow.NamedTensorProto" do
9 | optional :name, :string, 1
10 | optional :tensor, :message, 2, "tensorflow.TensorProto"
11 | end
12 | end
13 |
14 | module Tensorflow
15 | NamedTensorProto = Google::Protobuf::DescriptorPool.generated_pool.lookup("tensorflow.NamedTensorProto").msgclass
16 | end
17 |
--------------------------------------------------------------------------------
/RubyGenerated/tensorflow_serving/config/log_collector_config_pb.rb:
--------------------------------------------------------------------------------
1 | # Generated by the protocol buffer compiler. DO NOT EDIT!
2 | # source: tensorflow_serving/config/log_collector_config.proto
3 |
4 | require 'google/protobuf'
5 |
6 | Google::Protobuf::DescriptorPool.generated_pool.build do
7 | add_message "tensorflow.serving.LogCollectorConfig" do
8 | optional :type, :string, 1
9 | optional :filename_prefix, :string, 2
10 | end
11 | end
12 |
13 | module Tensorflow
14 | module Serving
15 | LogCollectorConfig = Google::Protobuf::DescriptorPool.generated_pool.lookup("tensorflow.serving.LogCollectorConfig").msgclass
16 | end
17 | end
18 |
--------------------------------------------------------------------------------
/GoGenerated/serving/tensorflow/python/training/checkpoint_state.proto:
--------------------------------------------------------------------------------
1 | syntax = "proto3";
2 |
3 | package tensorflow;
4 | option cc_enable_arenas = true;
5 |
6 | // Protocol buffer representing the checkpoint state.
7 | //
8 | // TODO(touts): Add other attributes as needed.
9 | message CheckpointState {
10 | // Path to the most-recent model checkpoint.
11 | string model_checkpoint_path = 1;
12 |
13 | // Paths to all not-yet-deleted model checkpoints, sorted from oldest to
14 | // newest.
15 | // Note that the value of model_checkpoint_path should be the last item in
16 | // this list.
17 | repeated string all_model_checkpoint_paths = 2;
18 | }
19 |
--------------------------------------------------------------------------------
/RubyGenerated/tensorflow/core/protobuf/saved_model_pb.rb:
--------------------------------------------------------------------------------
1 | # Generated by the protocol buffer compiler. DO NOT EDIT!
2 | # source: tensorflow/core/protobuf/saved_model.proto
3 |
4 | require 'google/protobuf'
5 |
6 | require 'tensorflow/core/protobuf/meta_graph_pb'
7 | Google::Protobuf::DescriptorPool.generated_pool.build do
8 | add_message "tensorflow.SavedModel" do
9 | optional :saved_model_schema_version, :int64, 1
10 | repeated :meta_graphs, :message, 2, "tensorflow.MetaGraphDef"
11 | end
12 | end
13 |
14 | module Tensorflow
15 | SavedModel = Google::Protobuf::DescriptorPool.generated_pool.lookup("tensorflow.SavedModel").msgclass
16 | end
17 |
--------------------------------------------------------------------------------
/CPPGenerated/tensorflow/tensorflow/python/training/checkpoint_state.proto:
--------------------------------------------------------------------------------
1 | syntax = "proto3";
2 |
3 | package tensorflow;
4 | option cc_enable_arenas = true;
5 |
6 | // Protocol buffer representing the checkpoint state.
7 | //
8 | // TODO(touts): Add other attributes as needed.
9 | message CheckpointState {
10 | // Path to the most-recent model checkpoint.
11 | string model_checkpoint_path = 1;
12 |
13 | // Paths to all not-yet-deleted model checkpoints, sorted from oldest to
14 | // newest.
15 | // Note that the value of model_checkpoint_path should be the last item in
16 | // this list.
17 | repeated string all_model_checkpoint_paths = 2;
18 | }
19 |
--------------------------------------------------------------------------------
/JavaGenerated/org/tensorflow/contrib/verbs/ChannelOrBuilder.java:
--------------------------------------------------------------------------------
1 | // Generated by the protocol buffer compiler. DO NOT EDIT!
2 | // source: tensorflow/contrib/verbs/verbs_service.proto
3 |
4 | package org.tensorflow.contrib.verbs;
5 |
6 | public interface ChannelOrBuilder extends
7 | // @@protoc_insertion_point(interface_extends:tensorflow.Channel)
8 | com.google.protobuf.MessageOrBuilder {
9 |
10 | /**
11 | * int32 lid = 1;
12 | */
13 | int getLid();
14 |
15 | /**
16 | * int32 qpn = 2;
17 | */
18 | int getQpn();
19 |
20 | /**
21 | * int32 psn = 3;
22 | */
23 | int getPsn();
24 | }
25 |
--------------------------------------------------------------------------------
/RubyGenerated/tensorflow/tensorflow/python/training/checkpoint_state.proto:
--------------------------------------------------------------------------------
1 | syntax = "proto3";
2 |
3 | package tensorflow;
4 | option cc_enable_arenas = true;
5 |
6 | // Protocol buffer representing the checkpoint state.
7 | //
8 | // TODO(touts): Add other attributes as needed.
9 | message CheckpointState {
10 | // Path to the most-recent model checkpoint.
11 | string model_checkpoint_path = 1;
12 |
13 | // Paths to all not-yet-deleted model checkpoints, sorted from oldest to
14 | // newest.
15 | // Note that the value of model_checkpoint_path should be the last item in
16 | // this list.
17 | repeated string all_model_checkpoint_paths = 2;
18 | }
19 |
--------------------------------------------------------------------------------
/CPPGenerated/tensorflow/tensorflow/tools/tfprof/tfprof_log.proto:
--------------------------------------------------------------------------------
1 | syntax = "proto2";
2 |
3 | package tensorflow.tfprof;
4 |
5 | message OpLogEntry {
6 | // op name.
7 | optional string name = 1;
8 | // float_ops is filled by tfprof Python API when called. It requires the
9 | // op has RegisterStatistics defined. Currently, Conv2D, MatMul, etc, are
10 | // implemented.
11 | optional int64 float_ops = 2;
12 | // User can define extra op type information for an op. This allows the user
13 | // to select a group of ops precisely using op_type as a key.
14 | repeated string types = 3;
15 | }
16 |
17 | message OpLog {
18 | repeated OpLogEntry log_entries = 1;
19 | }
--------------------------------------------------------------------------------
/RubyGenerated/tensorflow/core/framework/reader_base_pb.rb:
--------------------------------------------------------------------------------
1 | # Generated by the protocol buffer compiler. DO NOT EDIT!
2 | # source: tensorflow/core/framework/reader_base.proto
3 |
4 | require 'google/protobuf'
5 |
6 | Google::Protobuf::DescriptorPool.generated_pool.build do
7 | add_message "tensorflow.ReaderBaseState" do
8 | optional :work_started, :int64, 1
9 | optional :work_finished, :int64, 2
10 | optional :num_records_produced, :int64, 3
11 | optional :current_work, :bytes, 4
12 | end
13 | end
14 |
15 | module Tensorflow
16 | ReaderBaseState = Google::Protobuf::DescriptorPool.generated_pool.lookup("tensorflow.ReaderBaseState").msgclass
17 | end
18 |
--------------------------------------------------------------------------------
/RubyGenerated/tensorflow/tensorflow/tools/tfprof/tfprof_log.proto:
--------------------------------------------------------------------------------
1 | syntax = "proto2";
2 |
3 | package tensorflow.tfprof;
4 |
5 | message OpLogEntry {
6 | // op name.
7 | optional string name = 1;
8 | // float_ops is filled by tfprof Python API when called. It requires the
9 | // op has RegisterStatistics defined. Currently, Conv2D, MatMul, etc, are
10 | // implemented.
11 | optional int64 float_ops = 2;
12 | // User can define extra op type information for an op. This allows the user
13 | // to select a group of ops precisely using op_type as a key.
14 | repeated string types = 3;
15 | }
16 |
17 | message OpLog {
18 | repeated OpLogEntry log_entries = 1;
19 | }
--------------------------------------------------------------------------------
/JavaGenerated/org/tensorflow/framework/DeviceLocalityOrBuilder.java:
--------------------------------------------------------------------------------
1 | // Generated by the protocol buffer compiler. DO NOT EDIT!
2 | // source: tensorflow/core/framework/device_attributes.proto
3 |
4 | package org.tensorflow.framework;
5 |
6 | public interface DeviceLocalityOrBuilder extends
7 | // @@protoc_insertion_point(interface_extends:tensorflow.DeviceLocality)
8 | com.google.protobuf.MessageOrBuilder {
9 |
10 | /**
11 | *
12 | * Optional bus locality of device. Default value of 0 means 13 | * no specific locality. Specific localities are indexed from 1. 14 | *15 | * 16 | *
int32 bus_id = 1;
17 | */
18 | int getBusId();
19 | }
20 |
--------------------------------------------------------------------------------
/NodeGenerated/binaryoperation.js:
--------------------------------------------------------------------------------
1 | /**
2 | * @fileoverview
3 | * @enhanceable
4 | * @public
5 | */
6 | // GENERATED CODE -- DO NOT EDIT!
7 |
8 | goog.provide('proto.xla.BinaryOperation');
9 |
10 | /**
11 | * @enum {number}
12 | */
13 | proto.xla.BinaryOperation = {
14 | BINOP_INVALID: 0,
15 | BINOP_ADD: 1,
16 | BINOP_DIV: 2,
17 | BINOP_MUL: 3,
18 | BINOP_SUB: 4,
19 | BINOP_EQ: 5,
20 | BINOP_GE: 6,
21 | BINOP_GT: 7,
22 | BINOP_LE: 8,
23 | BINOP_LT: 9,
24 | BINOP_NE: 10,
25 | BINOP_DOT: 12,
26 | BINOP_INDEX: 13,
27 | BINOP_MAX: 14,
28 | BINOP_MIN: 15,
29 | BINOP_POW: 16,
30 | BINOP_REM: 17,
31 | BINOP_LOGICAL_AND: 18,
32 | BINOP_LOGICAL_OR: 19
33 | };
34 |
35 |
--------------------------------------------------------------------------------
/RubyGenerated/tensorflow/core/framework/resource_handle_pb.rb:
--------------------------------------------------------------------------------
1 | # Generated by the protocol buffer compiler. DO NOT EDIT!
2 | # source: tensorflow/core/framework/resource_handle.proto
3 |
4 | require 'google/protobuf'
5 |
6 | Google::Protobuf::DescriptorPool.generated_pool.build do
7 | add_message "tensorflow.ResourceHandle" do
8 | optional :device, :string, 1
9 | optional :container, :string, 2
10 | optional :name, :string, 3
11 | optional :hash_code, :uint64, 4
12 | optional :maybe_type_name, :string, 5
13 | end
14 | end
15 |
16 | module Tensorflow
17 | ResourceHandle = Google::Protobuf::DescriptorPool.generated_pool.lookup("tensorflow.ResourceHandle").msgclass
18 | end
19 |
--------------------------------------------------------------------------------
/GoGenerated/serving/tensorflow_serving/config/platform_config.proto:
--------------------------------------------------------------------------------
1 | syntax = "proto3";
2 |
3 | package tensorflow.serving;
4 | option cc_enable_arenas = true;
5 |
6 | import "google/protobuf/any.proto";
7 |
8 | // Configuration for a servable platform e.g. tensorflow or other ML systems.
9 | message PlatformConfig {
10 | // The config proto for a SourceAdapter in the StoragePathSourceAdapter
11 | // registry.
12 | google.protobuf.Any source_adapter_config = 1;
13 | };
14 |
15 | message PlatformConfigMap {
16 | // A map from a platform name to a platform config. The platform name is used
17 | // in ModelConfig.model_platform.
18 | map12 | * The new version number for the extended graph, to be used in the next call 13 | * to ExtendSession. 14 | *15 | * 16 | *
int64 new_graph_version = 4;
17 | */
18 | long getNewGraphVersion();
19 | }
20 |
--------------------------------------------------------------------------------
/RubyGenerated/tensorflow_serving/apis/model_pb.rb:
--------------------------------------------------------------------------------
1 | # Generated by the protocol buffer compiler. DO NOT EDIT!
2 | # source: tensorflow_serving/apis/model.proto
3 |
4 | require 'google/protobuf'
5 |
6 | require 'google/protobuf/wrappers_pb'
7 | Google::Protobuf::DescriptorPool.generated_pool.build do
8 | add_message "tensorflow.serving.ModelSpec" do
9 | optional :name, :string, 1
10 | optional :version, :message, 2, "google.protobuf.Int64Value"
11 | optional :signature_name, :string, 3
12 | end
13 | end
14 |
15 | module Tensorflow
16 | module Serving
17 | ModelSpec = Google::Protobuf::DescriptorPool.generated_pool.lookup("tensorflow.serving.ModelSpec").msgclass
18 | end
19 | end
20 |
--------------------------------------------------------------------------------
/GoGenerated/serving/tensorflow/core/util/example_proto_fast_parsing_test.proto:
--------------------------------------------------------------------------------
1 | // Protocol message for the fast Example parse unit test.
2 | syntax = "proto3";
3 |
4 | import "tensorflow/core/example/feature.proto";
5 | option cc_enable_arenas = true;
6 |
7 | package tensorflow;
8 |
9 | // This message is parallel to Example, but with additional fields to test
10 | // unknown fields handling in example_proto_fast_parsing_test.cc.
11 | message ExampleWithExtras {
12 | Features features = 1;
13 |
14 | string extra1 = 1337;
15 | int64 extra2 = 1338;
16 | fixed32 extra3 = 1339;
17 | fixed64 extra4 = 1340;
18 | double extra5 = 1341;
19 | repeated float extra6 = 1342;
20 | Features extra7 = 1343;
21 | };
22 |
--------------------------------------------------------------------------------
/Xcode/Test/inception/inception_inference.proto:
--------------------------------------------------------------------------------
1 | // Protobuf definition of inception v3 model inference server.
2 |
3 | syntax = "proto3";
4 |
5 | package tensorflow.serving;
6 |
7 | message InceptionRequest {
8 | // JPEG encoded stream of the image to be classified.
9 | bytes jpeg_encoded = 1;
10 | };
11 |
12 | message InceptionResponse {
13 | // Human readable descriptions of the classes, in scores descending order.
14 | repeated string classes = 3;
15 | // Scores of top matches, in same order as classes.
16 | repeated float scores = 2;
17 | };
18 |
19 | service InceptionService {
20 | // Classifies an JPEG image into classes.
21 | rpc Classify(InceptionRequest) returns (InceptionResponse);
22 | }
23 |
--------------------------------------------------------------------------------
/CPPGenerated/tensorflow/tensorflow/core/util/example_proto_fast_parsing_test.proto:
--------------------------------------------------------------------------------
1 | // Protocol message for the fast Example parse unit test.
2 | syntax = "proto3";
3 |
4 | import "tensorflow/core/example/feature.proto";
5 | option cc_enable_arenas = true;
6 |
7 | package tensorflow;
8 |
9 | // This message is parallel to Example, but with additional fields to test
10 | // unknown fields handling in example_proto_fast_parsing_test.cc.
11 | message ExampleWithExtras {
12 | Features features = 1;
13 |
14 | string extra1 = 1337;
15 | int64 extra2 = 1338;
16 | fixed32 extra3 = 1339;
17 | fixed64 extra4 = 1340;
18 | double extra5 = 1341;
19 | repeated float extra6 = 1342;
20 | Features extra7 = 1343;
21 | };
22 |
--------------------------------------------------------------------------------
/RubyGenerated/tensorflow/tensorflow/core/util/example_proto_fast_parsing_test.proto:
--------------------------------------------------------------------------------
1 | // Protocol message for the fast Example parse unit test.
2 | syntax = "proto3";
3 |
4 | import "tensorflow/core/example/feature.proto";
5 | option cc_enable_arenas = true;
6 |
7 | package tensorflow;
8 |
9 | // This message is parallel to Example, but with additional fields to test
10 | // unknown fields handling in example_proto_fast_parsing_test.cc.
11 | message ExampleWithExtras {
12 | Features features = 1;
13 |
14 | string extra1 = 1337;
15 | int64 extra2 = 1338;
16 | fixed32 extra3 = 1339;
17 | fixed64 extra4 = 1340;
18 | double extra5 = 1341;
19 | repeated float extra6 = 1342;
20 | Features extra7 = 1343;
21 | };
22 |
--------------------------------------------------------------------------------
/RubyGenerated/tensorflow/core/framework/node_def_pb.rb:
--------------------------------------------------------------------------------
1 | # Generated by the protocol buffer compiler. DO NOT EDIT!
2 | # source: tensorflow/core/framework/node_def.proto
3 |
4 | require 'google/protobuf'
5 |
6 | require 'tensorflow/core/framework/attr_value_pb'
7 | Google::Protobuf::DescriptorPool.generated_pool.build do
8 | add_message "tensorflow.NodeDef" do
9 | optional :name, :string, 1
10 | optional :op, :string, 2
11 | repeated :input, :string, 3
12 | optional :device, :string, 4
13 | map :attr, :string, :message, 5, "tensorflow.AttrValue"
14 | end
15 | end
16 |
17 | module Tensorflow
18 | NodeDef = Google::Protobuf::DescriptorPool.generated_pool.lookup("tensorflow.NodeDef").msgclass
19 | end
20 |
--------------------------------------------------------------------------------
/RubyGenerated/tensorflow_serving/core/test_util/fake_loader_source_adapter_pb.rb:
--------------------------------------------------------------------------------
1 | # Generated by the protocol buffer compiler. DO NOT EDIT!
2 | # source: tensorflow_serving/core/test_util/fake_loader_source_adapter.proto
3 |
4 | require 'google/protobuf'
5 |
6 | Google::Protobuf::DescriptorPool.generated_pool.build do
7 | add_message "tensorflow.serving.test_util.FakeLoaderSourceAdapterConfig" do
8 | optional :suffix, :string, 1
9 | end
10 | end
11 |
12 | module Tensorflow
13 | module Serving
14 | module TestUtil
15 | FakeLoaderSourceAdapterConfig = Google::Protobuf::DescriptorPool.generated_pool.lookup("tensorflow.serving.test_util.FakeLoaderSourceAdapterConfig").msgclass
16 | end
17 | end
18 | end
19 |
--------------------------------------------------------------------------------
/JavaGenerated/org/tensorflow/tfcompile/TensorIdOrBuilder.java:
--------------------------------------------------------------------------------
1 | // Generated by the protocol buffer compiler. DO NOT EDIT!
2 | // source: tensorflow/compiler/aot/tfcompile.proto
3 |
4 | package org.tensorflow.tfcompile;
5 |
6 | public interface TensorIdOrBuilder extends
7 | // @@protoc_insertion_point(interface_extends:tensorflow.tfcompile.TensorId)
8 | com.google.protobuf.MessageOrBuilder {
9 |
10 | /**
11 | * string node_name = 1;
12 | */
13 | java.lang.String getNodeName();
14 | /**
15 | * string node_name = 1;
16 | */
17 | com.google.protobuf.ByteString
18 | getNodeNameBytes();
19 |
20 | /**
21 | * int64 output_index = 2;
22 | */
23 | long getOutputIndex();
24 | }
25 |
--------------------------------------------------------------------------------
/RubyGenerated/tensorflow/core/protobuf/cluster_pb.rb:
--------------------------------------------------------------------------------
1 | # Generated by the protocol buffer compiler. DO NOT EDIT!
2 | # source: tensorflow/core/protobuf/cluster.proto
3 |
4 | require 'google/protobuf'
5 |
6 | Google::Protobuf::DescriptorPool.generated_pool.build do
7 | add_message "tensorflow.JobDef" do
8 | optional :name, :string, 1
9 | map :tasks, :int32, :string, 2
10 | end
11 | add_message "tensorflow.ClusterDef" do
12 | repeated :job, :message, 1, "tensorflow.JobDef"
13 | end
14 | end
15 |
16 | module Tensorflow
17 | JobDef = Google::Protobuf::DescriptorPool.generated_pool.lookup("tensorflow.JobDef").msgclass
18 | ClusterDef = Google::Protobuf::DescriptorPool.generated_pool.lookup("tensorflow.ClusterDef").msgclass
19 | end
20 |
--------------------------------------------------------------------------------
/JavaGenerated/org/tensorflow/example/BytesListOrBuilder.java:
--------------------------------------------------------------------------------
1 | // Generated by the protocol buffer compiler. DO NOT EDIT!
2 | // source: tensorflow/core/example/feature.proto
3 |
4 | package org.tensorflow.example;
5 |
6 | public interface BytesListOrBuilder extends
7 | // @@protoc_insertion_point(interface_extends:tensorflow.BytesList)
8 | com.google.protobuf.MessageOrBuilder {
9 |
10 | /**
11 | * repeated bytes value = 1;
12 | */
13 | java.util.Listrepeated bytes value = 1;
16 | */
17 | int getValueCount();
18 | /**
19 | * repeated bytes value = 1;
20 | */
21 | com.google.protobuf.ByteString getValue(int index);
22 | }
23 |
--------------------------------------------------------------------------------
/JavaGenerated/org/tensorflow/util/testlog/MemoryInfoOrBuilder.java:
--------------------------------------------------------------------------------
1 | // Generated by the protocol buffer compiler. DO NOT EDIT!
2 | // source: tensorflow/core/util/test_log.proto
3 |
4 | package org.tensorflow.util.testlog;
5 |
6 | public interface MemoryInfoOrBuilder extends
7 | // @@protoc_insertion_point(interface_extends:tensorflow.MemoryInfo)
8 | com.google.protobuf.MessageOrBuilder {
9 |
10 | /**
11 | * 12 | * Total virtual memory in bytes 13 | *14 | * 15 | *
int64 total = 1;
16 | */
17 | long getTotal();
18 |
19 | /**
20 | * 21 | * Immediately available memory in bytes 22 | *23 | * 24 | *
int64 available = 2;
25 | */
26 | long getAvailable();
27 | }
28 |
--------------------------------------------------------------------------------
/JavaGenerated/org/tensorflow/example/Int64ListOrBuilder.java:
--------------------------------------------------------------------------------
1 | // Generated by the protocol buffer compiler. DO NOT EDIT!
2 | // source: tensorflow/core/example/feature.proto
3 |
4 | package org.tensorflow.example;
5 |
6 | public interface Int64ListOrBuilder extends
7 | // @@protoc_insertion_point(interface_extends:tensorflow.Int64List)
8 | com.google.protobuf.MessageOrBuilder {
9 |
10 | /**
11 | * repeated int64 value = 1 [packed = true];
12 | */
13 | java.util.Listrepeated int64 value = 1 [packed = true];
16 | */
17 | int getValueCount();
18 | /**
19 | * repeated int64 value = 1 [packed = true];
20 | */
21 | long getValue(int index);
22 | }
23 |
--------------------------------------------------------------------------------
/JavaGenerated/org/tensorflow/framework/ThreadPoolOptionProtoOrBuilder.java:
--------------------------------------------------------------------------------
1 | // Generated by the protocol buffer compiler. DO NOT EDIT!
2 | // source: tensorflow/core/protobuf/config.proto
3 |
4 | package org.tensorflow.framework;
5 |
6 | public interface ThreadPoolOptionProtoOrBuilder extends
7 | // @@protoc_insertion_point(interface_extends:tensorflow.ThreadPoolOptionProto)
8 | com.google.protobuf.MessageOrBuilder {
9 |
10 | /**
11 | * 12 | * The number of threads in the pool. 13 | * 0 means the system picks a value based on where this option proto is used 14 | * (see the declaration of the specific field for more info). 15 | *16 | * 17 | *
int32 num_threads = 1;
18 | */
19 | int getNumThreads();
20 | }
21 |
--------------------------------------------------------------------------------
/NodeGenerated/code.js:
--------------------------------------------------------------------------------
1 | /**
2 | * @fileoverview
3 | * @enhanceable
4 | * @public
5 | */
6 | // GENERATED CODE -- DO NOT EDIT!
7 |
8 | goog.provide('proto.tensorflow.error.Code');
9 |
10 | /**
11 | * @enum {number}
12 | */
13 | proto.tensorflow.error.Code = {
14 | OK: 0,
15 | CANCELLED: 1,
16 | UNKNOWN: 2,
17 | INVALID_ARGUMENT: 3,
18 | DEADLINE_EXCEEDED: 4,
19 | NOT_FOUND: 5,
20 | ALREADY_EXISTS: 6,
21 | PERMISSION_DENIED: 7,
22 | UNAUTHENTICATED: 16,
23 | RESOURCE_EXHAUSTED: 8,
24 | FAILED_PRECONDITION: 9,
25 | ABORTED: 10,
26 | OUT_OF_RANGE: 11,
27 | UNIMPLEMENTED: 12,
28 | INTERNAL: 13,
29 | UNAVAILABLE: 14,
30 | DATA_LOSS: 15,
31 | DO_NOT_USE_RESERVED_FOR_FUTURE_EXPANSION_USE_DEFAULT_IN_SWITCH_INSTEAD_: 20
32 | };
33 |
34 |
--------------------------------------------------------------------------------
/JavaGenerated/org/tensorflow/example/FloatListOrBuilder.java:
--------------------------------------------------------------------------------
1 | // Generated by the protocol buffer compiler. DO NOT EDIT!
2 | // source: tensorflow/core/example/feature.proto
3 |
4 | package org.tensorflow.example;
5 |
6 | public interface FloatListOrBuilder extends
7 | // @@protoc_insertion_point(interface_extends:tensorflow.FloatList)
8 | com.google.protobuf.MessageOrBuilder {
9 |
10 | /**
11 | * repeated float value = 1 [packed = true];
12 | */
13 | java.util.Listrepeated float value = 1 [packed = true];
16 | */
17 | int getValueCount();
18 | /**
19 | * repeated float value = 1 [packed = true];
20 | */
21 | float getValue(int index);
22 | }
23 |
--------------------------------------------------------------------------------
/RubyGenerated/tensorflow/contrib/mpi/mpi_msg_pb.rb:
--------------------------------------------------------------------------------
1 | # Generated by the protocol buffer compiler. DO NOT EDIT!
2 | # source: tensorflow/contrib/mpi/mpi_msg.proto
3 |
4 | require 'google/protobuf'
5 |
6 | require 'tensorflow/core/protobuf/worker_pb'
7 | Google::Protobuf::DescriptorPool.generated_pool.build do
8 | add_message "tensorflow.MPIRecvTensorResponse" do
9 | optional :response, :message, 1, "tensorflow.RecvTensorResponse"
10 | optional :singleSend, :bool, 2
11 | optional :key, :string, 3
12 | optional :step_id, :int64, 4
13 | optional :checksum, :uint64, 5
14 | end
15 | end
16 |
17 | module Tensorflow
18 | MPIRecvTensorResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("tensorflow.MPIRecvTensorResponse").msgclass
19 | end
20 |
--------------------------------------------------------------------------------
/RubyGenerated/tensorflow_serving/sources/storage_path/static_storage_path_source_pb.rb:
--------------------------------------------------------------------------------
1 | # Generated by the protocol buffer compiler. DO NOT EDIT!
2 | # source: tensorflow_serving/sources/storage_path/static_storage_path_source.proto
3 |
4 | require 'google/protobuf'
5 |
6 | Google::Protobuf::DescriptorPool.generated_pool.build do
7 | add_message "tensorflow.serving.StaticStoragePathSourceConfig" do
8 | optional :servable_name, :string, 1
9 | optional :version_num, :int64, 2
10 | optional :version_path, :string, 3
11 | end
12 | end
13 |
14 | module Tensorflow
15 | module Serving
16 | StaticStoragePathSourceConfig = Google::Protobuf::DescriptorPool.generated_pool.lookup("tensorflow.serving.StaticStoragePathSourceConfig").msgclass
17 | end
18 | end
19 |
--------------------------------------------------------------------------------
/CPPGenerated/tensorflow/compiler/xla/xla.grpc.pb.cc:
--------------------------------------------------------------------------------
1 | // Generated by the gRPC C++ plugin.
2 | // If you make any local change, they will be lost.
3 | // source: tensorflow/compiler/xla/xla.proto
4 |
5 | #include "tensorflow/compiler/xla/xla.pb.h"
6 | #include "tensorflow/compiler/xla/xla.grpc.pb.h"
7 |
8 | #include .tensorflow.Features features = 1;
12 | */
13 | boolean hasFeatures();
14 | /**
15 | * .tensorflow.Features features = 1;
16 | */
17 | org.tensorflow.example.Features getFeatures();
18 | /**
19 | * .tensorflow.Features features = 1;
20 | */
21 | org.tensorflow.example.FeaturesOrBuilder getFeaturesOrBuilder();
22 | }
23 |
--------------------------------------------------------------------------------
/RubyGenerated/tensorflow_serving/core/logging_pb.rb:
--------------------------------------------------------------------------------
1 | # Generated by the protocol buffer compiler. DO NOT EDIT!
2 | # source: tensorflow_serving/core/logging.proto
3 |
4 | require 'google/protobuf'
5 |
6 | require 'tensorflow_serving/apis/model_pb'
7 | require 'tensorflow_serving/config/logging_config_pb'
8 | Google::Protobuf::DescriptorPool.generated_pool.build do
9 | add_message "tensorflow.serving.LogMetadata" do
10 | optional :model_spec, :message, 1, "tensorflow.serving.ModelSpec"
11 | optional :sampling_config, :message, 2, "tensorflow.serving.SamplingConfig"
12 | end
13 | end
14 |
15 | module Tensorflow
16 | module Serving
17 | LogMetadata = Google::Protobuf::DescriptorPool.generated_pool.lookup("tensorflow.serving.LogMetadata").msgclass
18 | end
19 | end
20 |
--------------------------------------------------------------------------------
/CPPGenerated/tensorflow/core/util/event.grpc.pb.cc:
--------------------------------------------------------------------------------
1 | // Generated by the gRPC C++ plugin.
2 | // If you make any local change, they will be lost.
3 | // source: tensorflow/core/util/event.proto
4 |
5 | #include "tensorflow/core/util/event.pb.h"
6 | #include "tensorflow/core/util/event.grpc.pb.h"
7 |
8 | #include .tensorflow.TraceOpts options = 1;
12 | */
13 | boolean hasOptions();
14 | /**
15 | * .tensorflow.TraceOpts options = 1;
16 | */
17 | org.tensorflow.distruntime.TraceOpts getOptions();
18 | /**
19 | * .tensorflow.TraceOpts options = 1;
20 | */
21 | org.tensorflow.distruntime.TraceOptsOrBuilder getOptionsOrBuilder();
22 | }
23 |
--------------------------------------------------------------------------------
/RubyGenerated/tensorflow_serving/servables/tensorflow/session_bundle_source_adapter_pb.rb:
--------------------------------------------------------------------------------
1 | # Generated by the protocol buffer compiler. DO NOT EDIT!
2 | # source: tensorflow_serving/servables/tensorflow/session_bundle_source_adapter.proto
3 |
4 | require 'google/protobuf'
5 |
6 | require 'tensorflow_serving/servables/tensorflow/session_bundle_config_pb'
7 | Google::Protobuf::DescriptorPool.generated_pool.build do
8 | add_message "tensorflow.serving.SessionBundleSourceAdapterConfig" do
9 | optional :config, :message, 1, "tensorflow.serving.SessionBundleConfig"
10 | end
11 | end
12 |
13 | module Tensorflow
14 | module Serving
15 | SessionBundleSourceAdapterConfig = Google::Protobuf::DescriptorPool.generated_pool.lookup("tensorflow.serving.SessionBundleSourceAdapterConfig").msgclass
16 | end
17 | end
18 |
--------------------------------------------------------------------------------
/CPPGenerated/tensorflow/core/framework/summary.grpc.pb.cc:
--------------------------------------------------------------------------------
1 | // Generated by the gRPC C++ plugin.
2 | // If you make any local change, they will be lost.
3 | // source: tensorflow/core/framework/summary.proto
4 |
5 | #include "tensorflow/core/framework/summary.pb.h"
6 | #include "tensorflow/core/framework/summary.grpc.pb.h"
7 |
8 | #include