easy-cs-rec-custommodel 0.8.6__py2.py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of easy-cs-rec-custommodel might be problematic. Click here for more details.

Files changed (336) hide show
  1. easy_cs_rec_custommodel-0.8.6.dist-info/LICENSE +203 -0
  2. easy_cs_rec_custommodel-0.8.6.dist-info/METADATA +48 -0
  3. easy_cs_rec_custommodel-0.8.6.dist-info/RECORD +336 -0
  4. easy_cs_rec_custommodel-0.8.6.dist-info/WHEEL +6 -0
  5. easy_cs_rec_custommodel-0.8.6.dist-info/top_level.txt +2 -0
  6. easy_rec/__init__.py +114 -0
  7. easy_rec/python/__init__.py +0 -0
  8. easy_rec/python/builders/__init__.py +0 -0
  9. easy_rec/python/builders/hyperparams_builder.py +78 -0
  10. easy_rec/python/builders/loss_builder.py +333 -0
  11. easy_rec/python/builders/optimizer_builder.py +211 -0
  12. easy_rec/python/builders/strategy_builder.py +44 -0
  13. easy_rec/python/compat/__init__.py +0 -0
  14. easy_rec/python/compat/adam_s.py +245 -0
  15. easy_rec/python/compat/array_ops.py +229 -0
  16. easy_rec/python/compat/dynamic_variable.py +542 -0
  17. easy_rec/python/compat/early_stopping.py +653 -0
  18. easy_rec/python/compat/embedding_ops.py +162 -0
  19. easy_rec/python/compat/embedding_parallel_saver.py +316 -0
  20. easy_rec/python/compat/estimator_train.py +116 -0
  21. easy_rec/python/compat/exporter.py +473 -0
  22. easy_rec/python/compat/feature_column/__init__.py +0 -0
  23. easy_rec/python/compat/feature_column/feature_column.py +3675 -0
  24. easy_rec/python/compat/feature_column/feature_column_v2.py +5233 -0
  25. easy_rec/python/compat/feature_column/sequence_feature_column.py +648 -0
  26. easy_rec/python/compat/feature_column/utils.py +154 -0
  27. easy_rec/python/compat/layers.py +329 -0
  28. easy_rec/python/compat/ops.py +14 -0
  29. easy_rec/python/compat/optimizers.py +619 -0
  30. easy_rec/python/compat/queues.py +311 -0
  31. easy_rec/python/compat/regularizers.py +208 -0
  32. easy_rec/python/compat/sok_optimizer.py +440 -0
  33. easy_rec/python/compat/sync_replicas_optimizer.py +528 -0
  34. easy_rec/python/compat/weight_decay_optimizers.py +475 -0
  35. easy_rec/python/core/__init__.py +0 -0
  36. easy_rec/python/core/easyrec_metrics/__init__.py +24 -0
  37. easy_rec/python/core/easyrec_metrics/distribute_metrics_impl_pai.py +3702 -0
  38. easy_rec/python/core/easyrec_metrics/distribute_metrics_impl_tf.py +3768 -0
  39. easy_rec/python/core/learning_schedules.py +228 -0
  40. easy_rec/python/core/metrics.py +402 -0
  41. easy_rec/python/core/sampler.py +844 -0
  42. easy_rec/python/eval.py +102 -0
  43. easy_rec/python/export.py +150 -0
  44. easy_rec/python/feature_column/__init__.py +0 -0
  45. easy_rec/python/feature_column/feature_column.py +664 -0
  46. easy_rec/python/feature_column/feature_group.py +89 -0
  47. easy_rec/python/hpo/__init__.py +0 -0
  48. easy_rec/python/hpo/emr_hpo.py +140 -0
  49. easy_rec/python/hpo/generate_hpo_sql.py +71 -0
  50. easy_rec/python/hpo/pai_hpo.py +297 -0
  51. easy_rec/python/inference/__init__.py +0 -0
  52. easy_rec/python/inference/csv_predictor.py +189 -0
  53. easy_rec/python/inference/hive_parquet_predictor.py +200 -0
  54. easy_rec/python/inference/hive_predictor.py +166 -0
  55. easy_rec/python/inference/odps_predictor.py +70 -0
  56. easy_rec/python/inference/parquet_predictor.py +147 -0
  57. easy_rec/python/inference/parquet_predictor_v2.py +147 -0
  58. easy_rec/python/inference/predictor.py +621 -0
  59. easy_rec/python/inference/processor/__init__.py +0 -0
  60. easy_rec/python/inference/processor/test.py +170 -0
  61. easy_rec/python/inference/vector_retrieve.py +124 -0
  62. easy_rec/python/input/__init__.py +0 -0
  63. easy_rec/python/input/batch_tfrecord_input.py +117 -0
  64. easy_rec/python/input/criteo_binary_reader.py +259 -0
  65. easy_rec/python/input/criteo_input.py +107 -0
  66. easy_rec/python/input/csv_input.py +175 -0
  67. easy_rec/python/input/csv_input_ex.py +72 -0
  68. easy_rec/python/input/csv_input_v2.py +68 -0
  69. easy_rec/python/input/datahub_input.py +320 -0
  70. easy_rec/python/input/dummy_input.py +58 -0
  71. easy_rec/python/input/hive_input.py +123 -0
  72. easy_rec/python/input/hive_parquet_input.py +140 -0
  73. easy_rec/python/input/hive_rtp_input.py +174 -0
  74. easy_rec/python/input/input.py +1064 -0
  75. easy_rec/python/input/kafka_dataset.py +144 -0
  76. easy_rec/python/input/kafka_input.py +235 -0
  77. easy_rec/python/input/load_parquet.py +317 -0
  78. easy_rec/python/input/odps_input.py +101 -0
  79. easy_rec/python/input/odps_input_v2.py +110 -0
  80. easy_rec/python/input/odps_input_v3.py +132 -0
  81. easy_rec/python/input/odps_rtp_input.py +187 -0
  82. easy_rec/python/input/odps_rtp_input_v2.py +104 -0
  83. easy_rec/python/input/parquet_input.py +397 -0
  84. easy_rec/python/input/parquet_input_v2.py +180 -0
  85. easy_rec/python/input/parquet_input_v3.py +203 -0
  86. easy_rec/python/input/rtp_input.py +225 -0
  87. easy_rec/python/input/rtp_input_v2.py +145 -0
  88. easy_rec/python/input/tfrecord_input.py +100 -0
  89. easy_rec/python/layers/__init__.py +0 -0
  90. easy_rec/python/layers/backbone.py +571 -0
  91. easy_rec/python/layers/capsule_layer.py +176 -0
  92. easy_rec/python/layers/cmbf.py +390 -0
  93. easy_rec/python/layers/common_layers.py +192 -0
  94. easy_rec/python/layers/dnn.py +87 -0
  95. easy_rec/python/layers/embed_input_layer.py +25 -0
  96. easy_rec/python/layers/fm.py +26 -0
  97. easy_rec/python/layers/input_layer.py +396 -0
  98. easy_rec/python/layers/keras/__init__.py +34 -0
  99. easy_rec/python/layers/keras/activation.py +114 -0
  100. easy_rec/python/layers/keras/attention.py +267 -0
  101. easy_rec/python/layers/keras/auxiliary_loss.py +47 -0
  102. easy_rec/python/layers/keras/blocks.py +262 -0
  103. easy_rec/python/layers/keras/bst.py +119 -0
  104. easy_rec/python/layers/keras/custom_ops.py +250 -0
  105. easy_rec/python/layers/keras/data_augment.py +133 -0
  106. easy_rec/python/layers/keras/din.py +67 -0
  107. easy_rec/python/layers/keras/einsum_dense.py +598 -0
  108. easy_rec/python/layers/keras/embedding.py +81 -0
  109. easy_rec/python/layers/keras/fibinet.py +251 -0
  110. easy_rec/python/layers/keras/interaction.py +416 -0
  111. easy_rec/python/layers/keras/layer_norm.py +364 -0
  112. easy_rec/python/layers/keras/mask_net.py +166 -0
  113. easy_rec/python/layers/keras/multi_head_attention.py +717 -0
  114. easy_rec/python/layers/keras/multi_task.py +125 -0
  115. easy_rec/python/layers/keras/numerical_embedding.py +376 -0
  116. easy_rec/python/layers/keras/ppnet.py +194 -0
  117. easy_rec/python/layers/keras/transformer.py +192 -0
  118. easy_rec/python/layers/layer_norm.py +51 -0
  119. easy_rec/python/layers/mmoe.py +83 -0
  120. easy_rec/python/layers/multihead_attention.py +162 -0
  121. easy_rec/python/layers/multihead_cross_attention.py +749 -0
  122. easy_rec/python/layers/senet.py +73 -0
  123. easy_rec/python/layers/seq_input_layer.py +134 -0
  124. easy_rec/python/layers/sequence_feature_layer.py +249 -0
  125. easy_rec/python/layers/uniter.py +301 -0
  126. easy_rec/python/layers/utils.py +248 -0
  127. easy_rec/python/layers/variational_dropout_layer.py +130 -0
  128. easy_rec/python/loss/__init__.py +0 -0
  129. easy_rec/python/loss/circle_loss.py +82 -0
  130. easy_rec/python/loss/contrastive_loss.py +79 -0
  131. easy_rec/python/loss/f1_reweight_loss.py +38 -0
  132. easy_rec/python/loss/focal_loss.py +93 -0
  133. easy_rec/python/loss/jrc_loss.py +128 -0
  134. easy_rec/python/loss/listwise_loss.py +161 -0
  135. easy_rec/python/loss/multi_similarity.py +68 -0
  136. easy_rec/python/loss/pairwise_loss.py +307 -0
  137. easy_rec/python/loss/softmax_loss_with_negative_mining.py +110 -0
  138. easy_rec/python/loss/zero_inflated_lognormal.py +76 -0
  139. easy_rec/python/main.py +878 -0
  140. easy_rec/python/model/__init__.py +0 -0
  141. easy_rec/python/model/autoint.py +73 -0
  142. easy_rec/python/model/cmbf.py +47 -0
  143. easy_rec/python/model/collaborative_metric_learning.py +182 -0
  144. easy_rec/python/model/custom_model.py +323 -0
  145. easy_rec/python/model/dat.py +138 -0
  146. easy_rec/python/model/dbmtl.py +116 -0
  147. easy_rec/python/model/dcn.py +70 -0
  148. easy_rec/python/model/deepfm.py +106 -0
  149. easy_rec/python/model/dlrm.py +73 -0
  150. easy_rec/python/model/dropoutnet.py +207 -0
  151. easy_rec/python/model/dssm.py +154 -0
  152. easy_rec/python/model/dssm_senet.py +143 -0
  153. easy_rec/python/model/dummy_model.py +48 -0
  154. easy_rec/python/model/easy_rec_estimator.py +739 -0
  155. easy_rec/python/model/easy_rec_model.py +467 -0
  156. easy_rec/python/model/esmm.py +242 -0
  157. easy_rec/python/model/fm.py +63 -0
  158. easy_rec/python/model/match_model.py +357 -0
  159. easy_rec/python/model/mind.py +445 -0
  160. easy_rec/python/model/mmoe.py +70 -0
  161. easy_rec/python/model/multi_task_model.py +303 -0
  162. easy_rec/python/model/multi_tower.py +62 -0
  163. easy_rec/python/model/multi_tower_bst.py +190 -0
  164. easy_rec/python/model/multi_tower_din.py +130 -0
  165. easy_rec/python/model/multi_tower_recall.py +68 -0
  166. easy_rec/python/model/pdn.py +203 -0
  167. easy_rec/python/model/ple.py +120 -0
  168. easy_rec/python/model/rank_model.py +485 -0
  169. easy_rec/python/model/rocket_launching.py +203 -0
  170. easy_rec/python/model/simple_multi_task.py +54 -0
  171. easy_rec/python/model/uniter.py +46 -0
  172. easy_rec/python/model/wide_and_deep.py +121 -0
  173. easy_rec/python/ops/1.12/incr_record.so +0 -0
  174. easy_rec/python/ops/1.12/kafka.so +0 -0
  175. easy_rec/python/ops/1.12/libcustom_ops.so +0 -0
  176. easy_rec/python/ops/1.12/libembed_op.so +0 -0
  177. easy_rec/python/ops/1.12/libhiredis.so.1.0.0 +0 -0
  178. easy_rec/python/ops/1.12/librdkafka++.so.1 +0 -0
  179. easy_rec/python/ops/1.12/librdkafka.so.1 +0 -0
  180. easy_rec/python/ops/1.12/libredis++.so +0 -0
  181. easy_rec/python/ops/1.12/libredis++.so.1 +0 -0
  182. easy_rec/python/ops/1.12/libredis++.so.1.2.3 +0 -0
  183. easy_rec/python/ops/1.12/libstr_avx_op.so +0 -0
  184. easy_rec/python/ops/1.12/libwrite_sparse_kv.so +0 -0
  185. easy_rec/python/ops/1.15/incr_record.so +0 -0
  186. easy_rec/python/ops/1.15/kafka.so +0 -0
  187. easy_rec/python/ops/1.15/libcustom_ops.so +0 -0
  188. easy_rec/python/ops/1.15/libembed_op.so +0 -0
  189. easy_rec/python/ops/1.15/libhiredis.so.1.0.0 +0 -0
  190. easy_rec/python/ops/1.15/librdkafka++.so +0 -0
  191. easy_rec/python/ops/1.15/librdkafka++.so.1 +0 -0
  192. easy_rec/python/ops/1.15/librdkafka.so +0 -0
  193. easy_rec/python/ops/1.15/librdkafka.so.1 +0 -0
  194. easy_rec/python/ops/1.15/libredis++.so.1 +0 -0
  195. easy_rec/python/ops/1.15/libstr_avx_op.so +0 -0
  196. easy_rec/python/ops/2.12/libcustom_ops.so +0 -0
  197. easy_rec/python/ops/2.12/libload_embed.so +0 -0
  198. easy_rec/python/ops/2.12/libstr_avx_op.so +0 -0
  199. easy_rec/python/ops/__init__.py +0 -0
  200. easy_rec/python/ops/gen_kafka_ops.py +193 -0
  201. easy_rec/python/ops/gen_str_avx_op.py +28 -0
  202. easy_rec/python/ops/incr_record.py +30 -0
  203. easy_rec/python/predict.py +170 -0
  204. easy_rec/python/protos/__init__.py +0 -0
  205. easy_rec/python/protos/autoint_pb2.py +122 -0
  206. easy_rec/python/protos/backbone_pb2.py +1416 -0
  207. easy_rec/python/protos/cmbf_pb2.py +435 -0
  208. easy_rec/python/protos/collaborative_metric_learning_pb2.py +252 -0
  209. easy_rec/python/protos/custom_model_pb2.py +57 -0
  210. easy_rec/python/protos/dat_pb2.py +262 -0
  211. easy_rec/python/protos/data_source_pb2.py +422 -0
  212. easy_rec/python/protos/dataset_pb2.py +1920 -0
  213. easy_rec/python/protos/dbmtl_pb2.py +191 -0
  214. easy_rec/python/protos/dcn_pb2.py +197 -0
  215. easy_rec/python/protos/deepfm_pb2.py +163 -0
  216. easy_rec/python/protos/dlrm_pb2.py +163 -0
  217. easy_rec/python/protos/dnn_pb2.py +329 -0
  218. easy_rec/python/protos/dropoutnet_pb2.py +239 -0
  219. easy_rec/python/protos/dssm_pb2.py +262 -0
  220. easy_rec/python/protos/dssm_senet_pb2.py +282 -0
  221. easy_rec/python/protos/easy_rec_model_pb2.py +1672 -0
  222. easy_rec/python/protos/esmm_pb2.py +133 -0
  223. easy_rec/python/protos/eval_pb2.py +930 -0
  224. easy_rec/python/protos/export_pb2.py +379 -0
  225. easy_rec/python/protos/feature_config_pb2.py +1359 -0
  226. easy_rec/python/protos/fm_pb2.py +90 -0
  227. easy_rec/python/protos/hive_config_pb2.py +138 -0
  228. easy_rec/python/protos/hyperparams_pb2.py +624 -0
  229. easy_rec/python/protos/keras_layer_pb2.py +692 -0
  230. easy_rec/python/protos/layer_pb2.py +1936 -0
  231. easy_rec/python/protos/loss_pb2.py +1713 -0
  232. easy_rec/python/protos/mind_pb2.py +497 -0
  233. easy_rec/python/protos/mmoe_pb2.py +215 -0
  234. easy_rec/python/protos/multi_tower_pb2.py +295 -0
  235. easy_rec/python/protos/multi_tower_recall_pb2.py +198 -0
  236. easy_rec/python/protos/optimizer_pb2.py +2017 -0
  237. easy_rec/python/protos/pdn_pb2.py +293 -0
  238. easy_rec/python/protos/pipeline_pb2.py +516 -0
  239. easy_rec/python/protos/ple_pb2.py +231 -0
  240. easy_rec/python/protos/predict_pb2.py +1140 -0
  241. easy_rec/python/protos/rocket_launching_pb2.py +169 -0
  242. easy_rec/python/protos/seq_encoder_pb2.py +1084 -0
  243. easy_rec/python/protos/simi_pb2.py +54 -0
  244. easy_rec/python/protos/simple_multi_task_pb2.py +97 -0
  245. easy_rec/python/protos/tf_predict_pb2.py +630 -0
  246. easy_rec/python/protos/tower_pb2.py +661 -0
  247. easy_rec/python/protos/train_pb2.py +1197 -0
  248. easy_rec/python/protos/uniter_pb2.py +307 -0
  249. easy_rec/python/protos/variational_dropout_pb2.py +91 -0
  250. easy_rec/python/protos/wide_and_deep_pb2.py +131 -0
  251. easy_rec/python/test/__init__.py +0 -0
  252. easy_rec/python/test/csv_input_test.py +340 -0
  253. easy_rec/python/test/custom_early_stop_func.py +19 -0
  254. easy_rec/python/test/dh_local_run.py +104 -0
  255. easy_rec/python/test/embed_test.py +155 -0
  256. easy_rec/python/test/emr_run.py +119 -0
  257. easy_rec/python/test/eval_metric_test.py +107 -0
  258. easy_rec/python/test/excel_convert_test.py +64 -0
  259. easy_rec/python/test/export_test.py +513 -0
  260. easy_rec/python/test/fg_test.py +70 -0
  261. easy_rec/python/test/hive_input_test.py +311 -0
  262. easy_rec/python/test/hpo_test.py +235 -0
  263. easy_rec/python/test/kafka_test.py +373 -0
  264. easy_rec/python/test/local_incr_test.py +122 -0
  265. easy_rec/python/test/loss_test.py +110 -0
  266. easy_rec/python/test/odps_command.py +61 -0
  267. easy_rec/python/test/odps_local_run.py +86 -0
  268. easy_rec/python/test/odps_run.py +254 -0
  269. easy_rec/python/test/odps_test_cls.py +39 -0
  270. easy_rec/python/test/odps_test_prepare.py +198 -0
  271. easy_rec/python/test/odps_test_util.py +237 -0
  272. easy_rec/python/test/pre_check_test.py +54 -0
  273. easy_rec/python/test/predictor_test.py +394 -0
  274. easy_rec/python/test/rtp_convert_test.py +133 -0
  275. easy_rec/python/test/run.py +138 -0
  276. easy_rec/python/test/train_eval_test.py +1299 -0
  277. easy_rec/python/test/util_test.py +85 -0
  278. easy_rec/python/test/zero_inflated_lognormal_test.py +53 -0
  279. easy_rec/python/tools/__init__.py +0 -0
  280. easy_rec/python/tools/add_boundaries_to_config.py +67 -0
  281. easy_rec/python/tools/add_feature_info_to_config.py +145 -0
  282. easy_rec/python/tools/convert_config_format.py +48 -0
  283. easy_rec/python/tools/convert_rtp_data.py +79 -0
  284. easy_rec/python/tools/convert_rtp_fg.py +106 -0
  285. easy_rec/python/tools/create_config_from_excel.py +427 -0
  286. easy_rec/python/tools/criteo/__init__.py +0 -0
  287. easy_rec/python/tools/criteo/convert_data.py +157 -0
  288. easy_rec/python/tools/edit_lookup_graph.py +134 -0
  289. easy_rec/python/tools/faiss_index_pai.py +116 -0
  290. easy_rec/python/tools/feature_selection.py +316 -0
  291. easy_rec/python/tools/hit_rate_ds.py +223 -0
  292. easy_rec/python/tools/hit_rate_pai.py +138 -0
  293. easy_rec/python/tools/pre_check.py +120 -0
  294. easy_rec/python/tools/predict_and_chk.py +111 -0
  295. easy_rec/python/tools/read_kafka.py +55 -0
  296. easy_rec/python/tools/split_model_pai.py +286 -0
  297. easy_rec/python/tools/split_pdn_model_pai.py +272 -0
  298. easy_rec/python/tools/test_saved_model.py +80 -0
  299. easy_rec/python/tools/view_saved_model.py +39 -0
  300. easy_rec/python/tools/write_kafka.py +65 -0
  301. easy_rec/python/train_eval.py +325 -0
  302. easy_rec/python/utils/__init__.py +15 -0
  303. easy_rec/python/utils/activation.py +120 -0
  304. easy_rec/python/utils/check_utils.py +87 -0
  305. easy_rec/python/utils/compat.py +14 -0
  306. easy_rec/python/utils/config_util.py +652 -0
  307. easy_rec/python/utils/constant.py +43 -0
  308. easy_rec/python/utils/convert_rtp_fg.py +616 -0
  309. easy_rec/python/utils/dag.py +192 -0
  310. easy_rec/python/utils/distribution_utils.py +268 -0
  311. easy_rec/python/utils/ds_util.py +65 -0
  312. easy_rec/python/utils/embedding_utils.py +73 -0
  313. easy_rec/python/utils/estimator_utils.py +1036 -0
  314. easy_rec/python/utils/export_big_model.py +630 -0
  315. easy_rec/python/utils/expr_util.py +118 -0
  316. easy_rec/python/utils/fg_util.py +53 -0
  317. easy_rec/python/utils/hit_rate_utils.py +220 -0
  318. easy_rec/python/utils/hive_utils.py +183 -0
  319. easy_rec/python/utils/hpo_util.py +137 -0
  320. easy_rec/python/utils/hvd_utils.py +56 -0
  321. easy_rec/python/utils/input_utils.py +108 -0
  322. easy_rec/python/utils/io_util.py +282 -0
  323. easy_rec/python/utils/load_class.py +249 -0
  324. easy_rec/python/utils/meta_graph_editor.py +941 -0
  325. easy_rec/python/utils/multi_optimizer.py +62 -0
  326. easy_rec/python/utils/numpy_utils.py +18 -0
  327. easy_rec/python/utils/odps_util.py +79 -0
  328. easy_rec/python/utils/pai_util.py +86 -0
  329. easy_rec/python/utils/proto_util.py +90 -0
  330. easy_rec/python/utils/restore_filter.py +89 -0
  331. easy_rec/python/utils/shape_utils.py +432 -0
  332. easy_rec/python/utils/static_shape.py +71 -0
  333. easy_rec/python/utils/test_utils.py +866 -0
  334. easy_rec/python/utils/tf_utils.py +56 -0
  335. easy_rec/version.py +4 -0
  336. test/__init__.py +0 -0
@@ -0,0 +1,1416 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # source: easy_rec/python/protos/backbone.proto
3
+
4
+ import sys
5
+
6
+ from google.protobuf import descriptor as _descriptor
7
+ from google.protobuf import descriptor_pb2
8
+ from google.protobuf import message as _message
9
+ from google.protobuf import reflection as _reflection
10
+ from google.protobuf import symbol_database as _symbol_database
11
+
12
+ from easy_rec.python.protos import dnn_pb2 as easy__rec_dot_python_dot_protos_dot_dnn__pb2 # NOQA
13
+ from easy_rec.python.protos import keras_layer_pb2 as easy__rec_dot_python_dot_protos_dot_keras__layer__pb2 # NOQA
14
+
15
+ _b = sys.version_info[0] < 3 and (lambda x: x) or (lambda x: x.encode('latin1'))
16
+ # @@protoc_insertion_point(imports)
17
+
18
+ _sym_db = _symbol_database.Default()
19
+
20
+ DESCRIPTOR = _descriptor.FileDescriptor(
21
+ name='easy_rec/python/protos/backbone.proto',
22
+ package='protos',
23
+ syntax='proto2',
24
+ serialized_pb=_b(
25
+ '\n%easy_rec/python/protos/backbone.proto\x12\x06protos\x1a easy_rec/python/protos/dnn.proto\x1a(easy_rec/python/protos/keras_layer.proto\"\xbc\x02\n\nInputLayer\x12\x15\n\rdo_batch_norm\x18\x01 \x01(\x08\x12\x15\n\rdo_layer_norm\x18\x02 \x01(\x08\x12\x14\n\x0c\x64ropout_rate\x18\x03 \x01(\x02\x12\x1c\n\x14\x66\x65\x61ture_dropout_rate\x18\x04 \x01(\x02\x12 \n\x18only_output_feature_list\x18\x05 \x01(\x08\x12\x1d\n\x15only_output_3d_tensor\x18\x06 \x01(\x08\x12)\n!output_2d_tensor_and_feature_list\x18\x07 \x01(\x08\x12%\n\x1doutput_seq_and_normal_feature\x18\x08 \x01(\x08\x12\x17\n\x0fwide_output_dim\x18\t \x01(\r\x12 \n\x12\x63oncat_seq_feature\x18\n \x01(\x08:\x04true\"\x0f\n\rRawInputLayer\"k\n\x0e\x45mbeddingLayer\x12\x15\n\rembedding_dim\x18\x01 \x02(\r\x12\x12\n\nvocab_size\x18\x02 \x01(\r\x12\x18\n\x08\x63ombiner\x18\x03 \x01(\t:\x06weight\x12\x14\n\x06\x63oncat\x18\x04 \x01(\x08:\x04true\"\x1c\n\x06Lambda\x12\x12\n\nexpression\x18\x01 \x02(\t\"\x96\x02\n\x05Input\x12\x1c\n\x12\x66\x65\x61ture_group_name\x18\x01 \x01(\tH\x00\x12\x14\n\nblock_name\x18\x02 \x01(\tH\x00\x12\x16\n\x0cpackage_name\x18\x03 \x01(\tH\x00\x12\x1b\n\x11use_package_input\x18\x04 \x01(\x08H\x00\x12\x10\n\x08input_fn\x18\x0b \x01(\t\x12\x13\n\x0binput_slice\x18\x0c \x01(\t\x12\x1b\n\x0cignore_input\x18\r \x01(\x08:\x05\x66\x61lse\x12\'\n\x0breset_input\x18\x0e \x01(\x0b\x32\x12.protos.InputLayer\x12\x15\n\rpackage_input\x18\x0f \x01(\t\x12\x18\n\x10package_input_fn\x18\x10 \x01(\tB\x06\n\x04name\"j\n\x0eRecurrentLayer\x12\x14\n\tnum_steps\x18\x01 \x02(\r:\x01\x31\x12\x19\n\x11\x66ixed_input_index\x18\x02 \x01(\r\x12\'\n\x0bkeras_layer\x18\x03 \x02(\x0b\x32\x12.protos.KerasLayer\"\x90\x01\n\x0bRepeatLayer\x12\x15\n\nnum_repeat\x18\x01 \x02(\r:\x01\x31\x12\x1a\n\x12output_concat_axis\x18\x02 \x01(\x05\x12\'\n\x0bkeras_layer\x18\x03 \x02(\x0b\x32\x12.protos.KerasLayer\x12\x13\n\x0binput_slice\x18\x04 \x01(\t\x12\x10\n\x08input_fn\x18\x05 \x01(\t\"\xb1\x01\n\x05Layer\x12 \n\x06lambda\x18\x01 \x01(\x0b\x32\x0e.protos.LambdaH\x00\x12)\n\x0bkeras_layer\x18\x02 \x01(\x0b\x32\x12.protos.KerasLayerH\x00\x12+\n\trecurrent\x18\x03 \x01(\x0b\x32\x16.protos.RecurrentLayerH\x00\x12%\n\x06repeat\x18\x04 \x01(\x0b\x32\x13.protos.RepeatLayerH\x00\x42\x07\n\x05layer\"\xde\x03\n\x05\x42lock\x12\x0c\n\x04name\x18\x01 \x02(\t\x12\x1d\n\x06inputs\x18\x02 \x03(\x0b\x32\r.protos.Input\x12\x1d\n\x11input_concat_axis\x18\x03 \x01(\x05:\x02-1\x12\x1e\n\x16merge_inputs_into_list\x18\x04 \x01(\x08\x12\x16\n\x0e\x65xtra_input_fn\x18\x05 \x01(\t\x12\x1d\n\x06layers\x18\x64 \x03(\x0b\x32\r.protos.Layer\x12)\n\x0binput_layer\x18\x65 \x01(\x0b\x32\x12.protos.InputLayerH\x00\x12 \n\x06lambda\x18\x66 \x01(\x0b\x32\x0e.protos.LambdaH\x00\x12)\n\x0bkeras_layer\x18g \x01(\x0b\x32\x12.protos.KerasLayerH\x00\x12+\n\trecurrent\x18h \x01(\x0b\x32\x16.protos.RecurrentLayerH\x00\x12%\n\x06repeat\x18i \x01(\x0b\x32\x13.protos.RepeatLayerH\x00\x12*\n\traw_input\x18j \x01(\x0b\x32\x15.protos.RawInputLayerH\x00\x12\x31\n\x0f\x65mbedding_layer\x18k \x01(\x0b\x32\x16.protos.EmbeddingLayerH\x00\x42\x07\n\x05layer\"i\n\x0c\x42lockPackage\x12\x0c\n\x04name\x18\x01 \x02(\t\x12\x1d\n\x06\x62locks\x18\x02 \x03(\x0b\x32\r.protos.Block\x12\x15\n\rconcat_blocks\x18\x03 \x03(\t\x12\x15\n\routput_blocks\x18\x04 \x03(\t\"\xa2\x01\n\rBackboneTower\x12&\n\x08packages\x18\x01 \x03(\x0b\x32\x14.protos.BlockPackage\x12\x1d\n\x06\x62locks\x18\x02 \x03(\x0b\x32\r.protos.Block\x12\x15\n\rconcat_blocks\x18\x03 \x03(\t\x12\x15\n\routput_blocks\x18\x04 \x03(\t\x12\x1c\n\x07top_mlp\x18\x05 \x01(\x0b\x32\x0b.protos.MLP'
26
+ ),
27
+ dependencies=[
28
+ easy__rec_dot_python_dot_protos_dot_dnn__pb2.DESCRIPTOR,
29
+ easy__rec_dot_python_dot_protos_dot_keras__layer__pb2.DESCRIPTOR,
30
+ ])
31
+
32
+ _INPUTLAYER = _descriptor.Descriptor(
33
+ name='InputLayer',
34
+ full_name='protos.InputLayer',
35
+ filename=None,
36
+ file=DESCRIPTOR,
37
+ containing_type=None,
38
+ fields=[
39
+ _descriptor.FieldDescriptor(
40
+ name='do_batch_norm',
41
+ full_name='protos.InputLayer.do_batch_norm',
42
+ index=0,
43
+ number=1,
44
+ type=8,
45
+ cpp_type=7,
46
+ label=1,
47
+ has_default_value=False,
48
+ default_value=False,
49
+ message_type=None,
50
+ enum_type=None,
51
+ containing_type=None,
52
+ is_extension=False,
53
+ extension_scope=None,
54
+ options=None),
55
+ _descriptor.FieldDescriptor(
56
+ name='do_layer_norm',
57
+ full_name='protos.InputLayer.do_layer_norm',
58
+ index=1,
59
+ number=2,
60
+ type=8,
61
+ cpp_type=7,
62
+ label=1,
63
+ has_default_value=False,
64
+ default_value=False,
65
+ message_type=None,
66
+ enum_type=None,
67
+ containing_type=None,
68
+ is_extension=False,
69
+ extension_scope=None,
70
+ options=None),
71
+ _descriptor.FieldDescriptor(
72
+ name='dropout_rate',
73
+ full_name='protos.InputLayer.dropout_rate',
74
+ index=2,
75
+ number=3,
76
+ type=2,
77
+ cpp_type=6,
78
+ label=1,
79
+ has_default_value=False,
80
+ default_value=float(0),
81
+ message_type=None,
82
+ enum_type=None,
83
+ containing_type=None,
84
+ is_extension=False,
85
+ extension_scope=None,
86
+ options=None),
87
+ _descriptor.FieldDescriptor(
88
+ name='feature_dropout_rate',
89
+ full_name='protos.InputLayer.feature_dropout_rate',
90
+ index=3,
91
+ number=4,
92
+ type=2,
93
+ cpp_type=6,
94
+ label=1,
95
+ has_default_value=False,
96
+ default_value=float(0),
97
+ message_type=None,
98
+ enum_type=None,
99
+ containing_type=None,
100
+ is_extension=False,
101
+ extension_scope=None,
102
+ options=None),
103
+ _descriptor.FieldDescriptor(
104
+ name='only_output_feature_list',
105
+ full_name='protos.InputLayer.only_output_feature_list',
106
+ index=4,
107
+ number=5,
108
+ type=8,
109
+ cpp_type=7,
110
+ label=1,
111
+ has_default_value=False,
112
+ default_value=False,
113
+ message_type=None,
114
+ enum_type=None,
115
+ containing_type=None,
116
+ is_extension=False,
117
+ extension_scope=None,
118
+ options=None),
119
+ _descriptor.FieldDescriptor(
120
+ name='only_output_3d_tensor',
121
+ full_name='protos.InputLayer.only_output_3d_tensor',
122
+ index=5,
123
+ number=6,
124
+ type=8,
125
+ cpp_type=7,
126
+ label=1,
127
+ has_default_value=False,
128
+ default_value=False,
129
+ message_type=None,
130
+ enum_type=None,
131
+ containing_type=None,
132
+ is_extension=False,
133
+ extension_scope=None,
134
+ options=None),
135
+ _descriptor.FieldDescriptor(
136
+ name='output_2d_tensor_and_feature_list',
137
+ full_name='protos.InputLayer.output_2d_tensor_and_feature_list',
138
+ index=6,
139
+ number=7,
140
+ type=8,
141
+ cpp_type=7,
142
+ label=1,
143
+ has_default_value=False,
144
+ default_value=False,
145
+ message_type=None,
146
+ enum_type=None,
147
+ containing_type=None,
148
+ is_extension=False,
149
+ extension_scope=None,
150
+ options=None),
151
+ _descriptor.FieldDescriptor(
152
+ name='output_seq_and_normal_feature',
153
+ full_name='protos.InputLayer.output_seq_and_normal_feature',
154
+ index=7,
155
+ number=8,
156
+ type=8,
157
+ cpp_type=7,
158
+ label=1,
159
+ has_default_value=False,
160
+ default_value=False,
161
+ message_type=None,
162
+ enum_type=None,
163
+ containing_type=None,
164
+ is_extension=False,
165
+ extension_scope=None,
166
+ options=None),
167
+ _descriptor.FieldDescriptor(
168
+ name='wide_output_dim',
169
+ full_name='protos.InputLayer.wide_output_dim',
170
+ index=8,
171
+ number=9,
172
+ type=13,
173
+ cpp_type=3,
174
+ label=1,
175
+ has_default_value=False,
176
+ default_value=0,
177
+ message_type=None,
178
+ enum_type=None,
179
+ containing_type=None,
180
+ is_extension=False,
181
+ extension_scope=None,
182
+ options=None),
183
+ _descriptor.FieldDescriptor(
184
+ name='concat_seq_feature',
185
+ full_name='protos.InputLayer.concat_seq_feature',
186
+ index=9,
187
+ number=10,
188
+ type=8,
189
+ cpp_type=7,
190
+ label=1,
191
+ has_default_value=True,
192
+ default_value=True,
193
+ message_type=None,
194
+ enum_type=None,
195
+ containing_type=None,
196
+ is_extension=False,
197
+ extension_scope=None,
198
+ options=None),
199
+ ],
200
+ extensions=[],
201
+ nested_types=[],
202
+ enum_types=[],
203
+ options=None,
204
+ is_extendable=False,
205
+ syntax='proto2',
206
+ extension_ranges=[],
207
+ oneofs=[],
208
+ serialized_start=126,
209
+ serialized_end=442,
210
+ )
211
+
212
+ _RAWINPUTLAYER = _descriptor.Descriptor(
213
+ name='RawInputLayer',
214
+ full_name='protos.RawInputLayer',
215
+ filename=None,
216
+ file=DESCRIPTOR,
217
+ containing_type=None,
218
+ fields=[],
219
+ extensions=[],
220
+ nested_types=[],
221
+ enum_types=[],
222
+ options=None,
223
+ is_extendable=False,
224
+ syntax='proto2',
225
+ extension_ranges=[],
226
+ oneofs=[],
227
+ serialized_start=444,
228
+ serialized_end=459,
229
+ )
230
+
231
+ _EMBEDDINGLAYER = _descriptor.Descriptor(
232
+ name='EmbeddingLayer',
233
+ full_name='protos.EmbeddingLayer',
234
+ filename=None,
235
+ file=DESCRIPTOR,
236
+ containing_type=None,
237
+ fields=[
238
+ _descriptor.FieldDescriptor(
239
+ name='embedding_dim',
240
+ full_name='protos.EmbeddingLayer.embedding_dim',
241
+ index=0,
242
+ number=1,
243
+ type=13,
244
+ cpp_type=3,
245
+ label=2,
246
+ has_default_value=False,
247
+ default_value=0,
248
+ message_type=None,
249
+ enum_type=None,
250
+ containing_type=None,
251
+ is_extension=False,
252
+ extension_scope=None,
253
+ options=None),
254
+ _descriptor.FieldDescriptor(
255
+ name='vocab_size',
256
+ full_name='protos.EmbeddingLayer.vocab_size',
257
+ index=1,
258
+ number=2,
259
+ type=13,
260
+ cpp_type=3,
261
+ label=1,
262
+ has_default_value=False,
263
+ default_value=0,
264
+ message_type=None,
265
+ enum_type=None,
266
+ containing_type=None,
267
+ is_extension=False,
268
+ extension_scope=None,
269
+ options=None),
270
+ _descriptor.FieldDescriptor(
271
+ name='combiner',
272
+ full_name='protos.EmbeddingLayer.combiner',
273
+ index=2,
274
+ number=3,
275
+ type=9,
276
+ cpp_type=9,
277
+ label=1,
278
+ has_default_value=True,
279
+ default_value=_b('weight').decode('utf-8'),
280
+ message_type=None,
281
+ enum_type=None,
282
+ containing_type=None,
283
+ is_extension=False,
284
+ extension_scope=None,
285
+ options=None),
286
+ _descriptor.FieldDescriptor(
287
+ name='concat',
288
+ full_name='protos.EmbeddingLayer.concat',
289
+ index=3,
290
+ number=4,
291
+ type=8,
292
+ cpp_type=7,
293
+ label=1,
294
+ has_default_value=True,
295
+ default_value=True,
296
+ message_type=None,
297
+ enum_type=None,
298
+ containing_type=None,
299
+ is_extension=False,
300
+ extension_scope=None,
301
+ options=None),
302
+ ],
303
+ extensions=[],
304
+ nested_types=[],
305
+ enum_types=[],
306
+ options=None,
307
+ is_extendable=False,
308
+ syntax='proto2',
309
+ extension_ranges=[],
310
+ oneofs=[],
311
+ serialized_start=461,
312
+ serialized_end=568,
313
+ )
314
+
315
+ _LAMBDA = _descriptor.Descriptor(
316
+ name='Lambda',
317
+ full_name='protos.Lambda',
318
+ filename=None,
319
+ file=DESCRIPTOR,
320
+ containing_type=None,
321
+ fields=[
322
+ _descriptor.FieldDescriptor(
323
+ name='expression',
324
+ full_name='protos.Lambda.expression',
325
+ index=0,
326
+ number=1,
327
+ type=9,
328
+ cpp_type=9,
329
+ label=2,
330
+ has_default_value=False,
331
+ default_value=_b('').decode('utf-8'),
332
+ message_type=None,
333
+ enum_type=None,
334
+ containing_type=None,
335
+ is_extension=False,
336
+ extension_scope=None,
337
+ options=None),
338
+ ],
339
+ extensions=[],
340
+ nested_types=[],
341
+ enum_types=[],
342
+ options=None,
343
+ is_extendable=False,
344
+ syntax='proto2',
345
+ extension_ranges=[],
346
+ oneofs=[],
347
+ serialized_start=570,
348
+ serialized_end=598,
349
+ )
350
+
351
+ _INPUT = _descriptor.Descriptor(
352
+ name='Input',
353
+ full_name='protos.Input',
354
+ filename=None,
355
+ file=DESCRIPTOR,
356
+ containing_type=None,
357
+ fields=[
358
+ _descriptor.FieldDescriptor(
359
+ name='feature_group_name',
360
+ full_name='protos.Input.feature_group_name',
361
+ index=0,
362
+ number=1,
363
+ type=9,
364
+ cpp_type=9,
365
+ label=1,
366
+ has_default_value=False,
367
+ default_value=_b('').decode('utf-8'),
368
+ message_type=None,
369
+ enum_type=None,
370
+ containing_type=None,
371
+ is_extension=False,
372
+ extension_scope=None,
373
+ options=None),
374
+ _descriptor.FieldDescriptor(
375
+ name='block_name',
376
+ full_name='protos.Input.block_name',
377
+ index=1,
378
+ number=2,
379
+ type=9,
380
+ cpp_type=9,
381
+ label=1,
382
+ has_default_value=False,
383
+ default_value=_b('').decode('utf-8'),
384
+ message_type=None,
385
+ enum_type=None,
386
+ containing_type=None,
387
+ is_extension=False,
388
+ extension_scope=None,
389
+ options=None),
390
+ _descriptor.FieldDescriptor(
391
+ name='package_name',
392
+ full_name='protos.Input.package_name',
393
+ index=2,
394
+ number=3,
395
+ type=9,
396
+ cpp_type=9,
397
+ label=1,
398
+ has_default_value=False,
399
+ default_value=_b('').decode('utf-8'),
400
+ message_type=None,
401
+ enum_type=None,
402
+ containing_type=None,
403
+ is_extension=False,
404
+ extension_scope=None,
405
+ options=None),
406
+ _descriptor.FieldDescriptor(
407
+ name='use_package_input',
408
+ full_name='protos.Input.use_package_input',
409
+ index=3,
410
+ number=4,
411
+ type=8,
412
+ cpp_type=7,
413
+ label=1,
414
+ has_default_value=False,
415
+ default_value=False,
416
+ message_type=None,
417
+ enum_type=None,
418
+ containing_type=None,
419
+ is_extension=False,
420
+ extension_scope=None,
421
+ options=None),
422
+ _descriptor.FieldDescriptor(
423
+ name='input_fn',
424
+ full_name='protos.Input.input_fn',
425
+ index=4,
426
+ number=11,
427
+ type=9,
428
+ cpp_type=9,
429
+ label=1,
430
+ has_default_value=False,
431
+ default_value=_b('').decode('utf-8'),
432
+ message_type=None,
433
+ enum_type=None,
434
+ containing_type=None,
435
+ is_extension=False,
436
+ extension_scope=None,
437
+ options=None),
438
+ _descriptor.FieldDescriptor(
439
+ name='input_slice',
440
+ full_name='protos.Input.input_slice',
441
+ index=5,
442
+ number=12,
443
+ type=9,
444
+ cpp_type=9,
445
+ label=1,
446
+ has_default_value=False,
447
+ default_value=_b('').decode('utf-8'),
448
+ message_type=None,
449
+ enum_type=None,
450
+ containing_type=None,
451
+ is_extension=False,
452
+ extension_scope=None,
453
+ options=None),
454
+ _descriptor.FieldDescriptor(
455
+ name='ignore_input',
456
+ full_name='protos.Input.ignore_input',
457
+ index=6,
458
+ number=13,
459
+ type=8,
460
+ cpp_type=7,
461
+ label=1,
462
+ has_default_value=True,
463
+ default_value=False,
464
+ message_type=None,
465
+ enum_type=None,
466
+ containing_type=None,
467
+ is_extension=False,
468
+ extension_scope=None,
469
+ options=None),
470
+ _descriptor.FieldDescriptor(
471
+ name='reset_input',
472
+ full_name='protos.Input.reset_input',
473
+ index=7,
474
+ number=14,
475
+ type=11,
476
+ cpp_type=10,
477
+ label=1,
478
+ has_default_value=False,
479
+ default_value=None,
480
+ message_type=None,
481
+ enum_type=None,
482
+ containing_type=None,
483
+ is_extension=False,
484
+ extension_scope=None,
485
+ options=None),
486
+ _descriptor.FieldDescriptor(
487
+ name='package_input',
488
+ full_name='protos.Input.package_input',
489
+ index=8,
490
+ number=15,
491
+ type=9,
492
+ cpp_type=9,
493
+ label=1,
494
+ has_default_value=False,
495
+ default_value=_b('').decode('utf-8'),
496
+ message_type=None,
497
+ enum_type=None,
498
+ containing_type=None,
499
+ is_extension=False,
500
+ extension_scope=None,
501
+ options=None),
502
+ _descriptor.FieldDescriptor(
503
+ name='package_input_fn',
504
+ full_name='protos.Input.package_input_fn',
505
+ index=9,
506
+ number=16,
507
+ type=9,
508
+ cpp_type=9,
509
+ label=1,
510
+ has_default_value=False,
511
+ default_value=_b('').decode('utf-8'),
512
+ message_type=None,
513
+ enum_type=None,
514
+ containing_type=None,
515
+ is_extension=False,
516
+ extension_scope=None,
517
+ options=None),
518
+ ],
519
+ extensions=[],
520
+ nested_types=[],
521
+ enum_types=[],
522
+ options=None,
523
+ is_extendable=False,
524
+ syntax='proto2',
525
+ extension_ranges=[],
526
+ oneofs=[
527
+ _descriptor.OneofDescriptor(
528
+ name='name',
529
+ full_name='protos.Input.name',
530
+ index=0,
531
+ containing_type=None,
532
+ fields=[]),
533
+ ],
534
+ serialized_start=601,
535
+ serialized_end=879,
536
+ )
537
+
538
+ _RECURRENTLAYER = _descriptor.Descriptor(
539
+ name='RecurrentLayer',
540
+ full_name='protos.RecurrentLayer',
541
+ filename=None,
542
+ file=DESCRIPTOR,
543
+ containing_type=None,
544
+ fields=[
545
+ _descriptor.FieldDescriptor(
546
+ name='num_steps',
547
+ full_name='protos.RecurrentLayer.num_steps',
548
+ index=0,
549
+ number=1,
550
+ type=13,
551
+ cpp_type=3,
552
+ label=2,
553
+ has_default_value=True,
554
+ default_value=1,
555
+ message_type=None,
556
+ enum_type=None,
557
+ containing_type=None,
558
+ is_extension=False,
559
+ extension_scope=None,
560
+ options=None),
561
+ _descriptor.FieldDescriptor(
562
+ name='fixed_input_index',
563
+ full_name='protos.RecurrentLayer.fixed_input_index',
564
+ index=1,
565
+ number=2,
566
+ type=13,
567
+ cpp_type=3,
568
+ label=1,
569
+ has_default_value=False,
570
+ default_value=0,
571
+ message_type=None,
572
+ enum_type=None,
573
+ containing_type=None,
574
+ is_extension=False,
575
+ extension_scope=None,
576
+ options=None),
577
+ _descriptor.FieldDescriptor(
578
+ name='keras_layer',
579
+ full_name='protos.RecurrentLayer.keras_layer',
580
+ index=2,
581
+ number=3,
582
+ type=11,
583
+ cpp_type=10,
584
+ label=2,
585
+ has_default_value=False,
586
+ default_value=None,
587
+ message_type=None,
588
+ enum_type=None,
589
+ containing_type=None,
590
+ is_extension=False,
591
+ extension_scope=None,
592
+ options=None),
593
+ ],
594
+ extensions=[],
595
+ nested_types=[],
596
+ enum_types=[],
597
+ options=None,
598
+ is_extendable=False,
599
+ syntax='proto2',
600
+ extension_ranges=[],
601
+ oneofs=[],
602
+ serialized_start=881,
603
+ serialized_end=987,
604
+ )
605
+
606
+ _REPEATLAYER = _descriptor.Descriptor(
607
+ name='RepeatLayer',
608
+ full_name='protos.RepeatLayer',
609
+ filename=None,
610
+ file=DESCRIPTOR,
611
+ containing_type=None,
612
+ fields=[
613
+ _descriptor.FieldDescriptor(
614
+ name='num_repeat',
615
+ full_name='protos.RepeatLayer.num_repeat',
616
+ index=0,
617
+ number=1,
618
+ type=13,
619
+ cpp_type=3,
620
+ label=2,
621
+ has_default_value=True,
622
+ default_value=1,
623
+ message_type=None,
624
+ enum_type=None,
625
+ containing_type=None,
626
+ is_extension=False,
627
+ extension_scope=None,
628
+ options=None),
629
+ _descriptor.FieldDescriptor(
630
+ name='output_concat_axis',
631
+ full_name='protos.RepeatLayer.output_concat_axis',
632
+ index=1,
633
+ number=2,
634
+ type=5,
635
+ cpp_type=1,
636
+ label=1,
637
+ has_default_value=False,
638
+ default_value=0,
639
+ message_type=None,
640
+ enum_type=None,
641
+ containing_type=None,
642
+ is_extension=False,
643
+ extension_scope=None,
644
+ options=None),
645
+ _descriptor.FieldDescriptor(
646
+ name='keras_layer',
647
+ full_name='protos.RepeatLayer.keras_layer',
648
+ index=2,
649
+ number=3,
650
+ type=11,
651
+ cpp_type=10,
652
+ label=2,
653
+ has_default_value=False,
654
+ default_value=None,
655
+ message_type=None,
656
+ enum_type=None,
657
+ containing_type=None,
658
+ is_extension=False,
659
+ extension_scope=None,
660
+ options=None),
661
+ _descriptor.FieldDescriptor(
662
+ name='input_slice',
663
+ full_name='protos.RepeatLayer.input_slice',
664
+ index=3,
665
+ number=4,
666
+ type=9,
667
+ cpp_type=9,
668
+ label=1,
669
+ has_default_value=False,
670
+ default_value=_b('').decode('utf-8'),
671
+ message_type=None,
672
+ enum_type=None,
673
+ containing_type=None,
674
+ is_extension=False,
675
+ extension_scope=None,
676
+ options=None),
677
+ _descriptor.FieldDescriptor(
678
+ name='input_fn',
679
+ full_name='protos.RepeatLayer.input_fn',
680
+ index=4,
681
+ number=5,
682
+ type=9,
683
+ cpp_type=9,
684
+ label=1,
685
+ has_default_value=False,
686
+ default_value=_b('').decode('utf-8'),
687
+ message_type=None,
688
+ enum_type=None,
689
+ containing_type=None,
690
+ is_extension=False,
691
+ extension_scope=None,
692
+ options=None),
693
+ ],
694
+ extensions=[],
695
+ nested_types=[],
696
+ enum_types=[],
697
+ options=None,
698
+ is_extendable=False,
699
+ syntax='proto2',
700
+ extension_ranges=[],
701
+ oneofs=[],
702
+ serialized_start=990,
703
+ serialized_end=1134,
704
+ )
705
+
706
+ _LAYER = _descriptor.Descriptor(
707
+ name='Layer',
708
+ full_name='protos.Layer',
709
+ filename=None,
710
+ file=DESCRIPTOR,
711
+ containing_type=None,
712
+ fields=[
713
+ _descriptor.FieldDescriptor(
714
+ name='lambda',
715
+ full_name='protos.Layer.lambda',
716
+ index=0,
717
+ number=1,
718
+ type=11,
719
+ cpp_type=10,
720
+ label=1,
721
+ has_default_value=False,
722
+ default_value=None,
723
+ message_type=None,
724
+ enum_type=None,
725
+ containing_type=None,
726
+ is_extension=False,
727
+ extension_scope=None,
728
+ options=None),
729
+ _descriptor.FieldDescriptor(
730
+ name='keras_layer',
731
+ full_name='protos.Layer.keras_layer',
732
+ index=1,
733
+ number=2,
734
+ type=11,
735
+ cpp_type=10,
736
+ label=1,
737
+ has_default_value=False,
738
+ default_value=None,
739
+ message_type=None,
740
+ enum_type=None,
741
+ containing_type=None,
742
+ is_extension=False,
743
+ extension_scope=None,
744
+ options=None),
745
+ _descriptor.FieldDescriptor(
746
+ name='recurrent',
747
+ full_name='protos.Layer.recurrent',
748
+ index=2,
749
+ number=3,
750
+ type=11,
751
+ cpp_type=10,
752
+ label=1,
753
+ has_default_value=False,
754
+ default_value=None,
755
+ message_type=None,
756
+ enum_type=None,
757
+ containing_type=None,
758
+ is_extension=False,
759
+ extension_scope=None,
760
+ options=None),
761
+ _descriptor.FieldDescriptor(
762
+ name='repeat',
763
+ full_name='protos.Layer.repeat',
764
+ index=3,
765
+ number=4,
766
+ type=11,
767
+ cpp_type=10,
768
+ label=1,
769
+ has_default_value=False,
770
+ default_value=None,
771
+ message_type=None,
772
+ enum_type=None,
773
+ containing_type=None,
774
+ is_extension=False,
775
+ extension_scope=None,
776
+ options=None),
777
+ ],
778
+ extensions=[],
779
+ nested_types=[],
780
+ enum_types=[],
781
+ options=None,
782
+ is_extendable=False,
783
+ syntax='proto2',
784
+ extension_ranges=[],
785
+ oneofs=[
786
+ _descriptor.OneofDescriptor(
787
+ name='layer',
788
+ full_name='protos.Layer.layer',
789
+ index=0,
790
+ containing_type=None,
791
+ fields=[]),
792
+ ],
793
+ serialized_start=1137,
794
+ serialized_end=1314,
795
+ )
796
+
797
+ _BLOCK = _descriptor.Descriptor(
798
+ name='Block',
799
+ full_name='protos.Block',
800
+ filename=None,
801
+ file=DESCRIPTOR,
802
+ containing_type=None,
803
+ fields=[
804
+ _descriptor.FieldDescriptor(
805
+ name='name',
806
+ full_name='protos.Block.name',
807
+ index=0,
808
+ number=1,
809
+ type=9,
810
+ cpp_type=9,
811
+ label=2,
812
+ has_default_value=False,
813
+ default_value=_b('').decode('utf-8'),
814
+ message_type=None,
815
+ enum_type=None,
816
+ containing_type=None,
817
+ is_extension=False,
818
+ extension_scope=None,
819
+ options=None),
820
+ _descriptor.FieldDescriptor(
821
+ name='inputs',
822
+ full_name='protos.Block.inputs',
823
+ index=1,
824
+ number=2,
825
+ type=11,
826
+ cpp_type=10,
827
+ label=3,
828
+ has_default_value=False,
829
+ default_value=[],
830
+ message_type=None,
831
+ enum_type=None,
832
+ containing_type=None,
833
+ is_extension=False,
834
+ extension_scope=None,
835
+ options=None),
836
+ _descriptor.FieldDescriptor(
837
+ name='input_concat_axis',
838
+ full_name='protos.Block.input_concat_axis',
839
+ index=2,
840
+ number=3,
841
+ type=5,
842
+ cpp_type=1,
843
+ label=1,
844
+ has_default_value=True,
845
+ default_value=-1,
846
+ message_type=None,
847
+ enum_type=None,
848
+ containing_type=None,
849
+ is_extension=False,
850
+ extension_scope=None,
851
+ options=None),
852
+ _descriptor.FieldDescriptor(
853
+ name='merge_inputs_into_list',
854
+ full_name='protos.Block.merge_inputs_into_list',
855
+ index=3,
856
+ number=4,
857
+ type=8,
858
+ cpp_type=7,
859
+ label=1,
860
+ has_default_value=False,
861
+ default_value=False,
862
+ message_type=None,
863
+ enum_type=None,
864
+ containing_type=None,
865
+ is_extension=False,
866
+ extension_scope=None,
867
+ options=None),
868
+ _descriptor.FieldDescriptor(
869
+ name='extra_input_fn',
870
+ full_name='protos.Block.extra_input_fn',
871
+ index=4,
872
+ number=5,
873
+ type=9,
874
+ cpp_type=9,
875
+ label=1,
876
+ has_default_value=False,
877
+ default_value=_b('').decode('utf-8'),
878
+ message_type=None,
879
+ enum_type=None,
880
+ containing_type=None,
881
+ is_extension=False,
882
+ extension_scope=None,
883
+ options=None),
884
+ _descriptor.FieldDescriptor(
885
+ name='layers',
886
+ full_name='protos.Block.layers',
887
+ index=5,
888
+ number=100,
889
+ type=11,
890
+ cpp_type=10,
891
+ label=3,
892
+ has_default_value=False,
893
+ default_value=[],
894
+ message_type=None,
895
+ enum_type=None,
896
+ containing_type=None,
897
+ is_extension=False,
898
+ extension_scope=None,
899
+ options=None),
900
+ _descriptor.FieldDescriptor(
901
+ name='input_layer',
902
+ full_name='protos.Block.input_layer',
903
+ index=6,
904
+ number=101,
905
+ type=11,
906
+ cpp_type=10,
907
+ label=1,
908
+ has_default_value=False,
909
+ default_value=None,
910
+ message_type=None,
911
+ enum_type=None,
912
+ containing_type=None,
913
+ is_extension=False,
914
+ extension_scope=None,
915
+ options=None),
916
+ _descriptor.FieldDescriptor(
917
+ name='lambda',
918
+ full_name='protos.Block.lambda',
919
+ index=7,
920
+ number=102,
921
+ type=11,
922
+ cpp_type=10,
923
+ label=1,
924
+ has_default_value=False,
925
+ default_value=None,
926
+ message_type=None,
927
+ enum_type=None,
928
+ containing_type=None,
929
+ is_extension=False,
930
+ extension_scope=None,
931
+ options=None),
932
+ _descriptor.FieldDescriptor(
933
+ name='keras_layer',
934
+ full_name='protos.Block.keras_layer',
935
+ index=8,
936
+ number=103,
937
+ type=11,
938
+ cpp_type=10,
939
+ label=1,
940
+ has_default_value=False,
941
+ default_value=None,
942
+ message_type=None,
943
+ enum_type=None,
944
+ containing_type=None,
945
+ is_extension=False,
946
+ extension_scope=None,
947
+ options=None),
948
+ _descriptor.FieldDescriptor(
949
+ name='recurrent',
950
+ full_name='protos.Block.recurrent',
951
+ index=9,
952
+ number=104,
953
+ type=11,
954
+ cpp_type=10,
955
+ label=1,
956
+ has_default_value=False,
957
+ default_value=None,
958
+ message_type=None,
959
+ enum_type=None,
960
+ containing_type=None,
961
+ is_extension=False,
962
+ extension_scope=None,
963
+ options=None),
964
+ _descriptor.FieldDescriptor(
965
+ name='repeat',
966
+ full_name='protos.Block.repeat',
967
+ index=10,
968
+ number=105,
969
+ type=11,
970
+ cpp_type=10,
971
+ label=1,
972
+ has_default_value=False,
973
+ default_value=None,
974
+ message_type=None,
975
+ enum_type=None,
976
+ containing_type=None,
977
+ is_extension=False,
978
+ extension_scope=None,
979
+ options=None),
980
+ _descriptor.FieldDescriptor(
981
+ name='raw_input',
982
+ full_name='protos.Block.raw_input',
983
+ index=11,
984
+ number=106,
985
+ type=11,
986
+ cpp_type=10,
987
+ label=1,
988
+ has_default_value=False,
989
+ default_value=None,
990
+ message_type=None,
991
+ enum_type=None,
992
+ containing_type=None,
993
+ is_extension=False,
994
+ extension_scope=None,
995
+ options=None),
996
+ _descriptor.FieldDescriptor(
997
+ name='embedding_layer',
998
+ full_name='protos.Block.embedding_layer',
999
+ index=12,
1000
+ number=107,
1001
+ type=11,
1002
+ cpp_type=10,
1003
+ label=1,
1004
+ has_default_value=False,
1005
+ default_value=None,
1006
+ message_type=None,
1007
+ enum_type=None,
1008
+ containing_type=None,
1009
+ is_extension=False,
1010
+ extension_scope=None,
1011
+ options=None),
1012
+ ],
1013
+ extensions=[],
1014
+ nested_types=[],
1015
+ enum_types=[],
1016
+ options=None,
1017
+ is_extendable=False,
1018
+ syntax='proto2',
1019
+ extension_ranges=[],
1020
+ oneofs=[
1021
+ _descriptor.OneofDescriptor(
1022
+ name='layer',
1023
+ full_name='protos.Block.layer',
1024
+ index=0,
1025
+ containing_type=None,
1026
+ fields=[]),
1027
+ ],
1028
+ serialized_start=1317,
1029
+ serialized_end=1795,
1030
+ )
1031
+
1032
+ _BLOCKPACKAGE = _descriptor.Descriptor(
1033
+ name='BlockPackage',
1034
+ full_name='protos.BlockPackage',
1035
+ filename=None,
1036
+ file=DESCRIPTOR,
1037
+ containing_type=None,
1038
+ fields=[
1039
+ _descriptor.FieldDescriptor(
1040
+ name='name',
1041
+ full_name='protos.BlockPackage.name',
1042
+ index=0,
1043
+ number=1,
1044
+ type=9,
1045
+ cpp_type=9,
1046
+ label=2,
1047
+ has_default_value=False,
1048
+ default_value=_b('').decode('utf-8'),
1049
+ message_type=None,
1050
+ enum_type=None,
1051
+ containing_type=None,
1052
+ is_extension=False,
1053
+ extension_scope=None,
1054
+ options=None),
1055
+ _descriptor.FieldDescriptor(
1056
+ name='blocks',
1057
+ full_name='protos.BlockPackage.blocks',
1058
+ index=1,
1059
+ number=2,
1060
+ type=11,
1061
+ cpp_type=10,
1062
+ label=3,
1063
+ has_default_value=False,
1064
+ default_value=[],
1065
+ message_type=None,
1066
+ enum_type=None,
1067
+ containing_type=None,
1068
+ is_extension=False,
1069
+ extension_scope=None,
1070
+ options=None),
1071
+ _descriptor.FieldDescriptor(
1072
+ name='concat_blocks',
1073
+ full_name='protos.BlockPackage.concat_blocks',
1074
+ index=2,
1075
+ number=3,
1076
+ type=9,
1077
+ cpp_type=9,
1078
+ label=3,
1079
+ has_default_value=False,
1080
+ default_value=[],
1081
+ message_type=None,
1082
+ enum_type=None,
1083
+ containing_type=None,
1084
+ is_extension=False,
1085
+ extension_scope=None,
1086
+ options=None),
1087
+ _descriptor.FieldDescriptor(
1088
+ name='output_blocks',
1089
+ full_name='protos.BlockPackage.output_blocks',
1090
+ index=3,
1091
+ number=4,
1092
+ type=9,
1093
+ cpp_type=9,
1094
+ label=3,
1095
+ has_default_value=False,
1096
+ default_value=[],
1097
+ message_type=None,
1098
+ enum_type=None,
1099
+ containing_type=None,
1100
+ is_extension=False,
1101
+ extension_scope=None,
1102
+ options=None),
1103
+ ],
1104
+ extensions=[],
1105
+ nested_types=[],
1106
+ enum_types=[],
1107
+ options=None,
1108
+ is_extendable=False,
1109
+ syntax='proto2',
1110
+ extension_ranges=[],
1111
+ oneofs=[],
1112
+ serialized_start=1797,
1113
+ serialized_end=1902,
1114
+ )
1115
+
1116
+ _BACKBONETOWER = _descriptor.Descriptor(
1117
+ name='BackboneTower',
1118
+ full_name='protos.BackboneTower',
1119
+ filename=None,
1120
+ file=DESCRIPTOR,
1121
+ containing_type=None,
1122
+ fields=[
1123
+ _descriptor.FieldDescriptor(
1124
+ name='packages',
1125
+ full_name='protos.BackboneTower.packages',
1126
+ index=0,
1127
+ number=1,
1128
+ type=11,
1129
+ cpp_type=10,
1130
+ label=3,
1131
+ has_default_value=False,
1132
+ default_value=[],
1133
+ message_type=None,
1134
+ enum_type=None,
1135
+ containing_type=None,
1136
+ is_extension=False,
1137
+ extension_scope=None,
1138
+ options=None),
1139
+ _descriptor.FieldDescriptor(
1140
+ name='blocks',
1141
+ full_name='protos.BackboneTower.blocks',
1142
+ index=1,
1143
+ number=2,
1144
+ type=11,
1145
+ cpp_type=10,
1146
+ label=3,
1147
+ has_default_value=False,
1148
+ default_value=[],
1149
+ message_type=None,
1150
+ enum_type=None,
1151
+ containing_type=None,
1152
+ is_extension=False,
1153
+ extension_scope=None,
1154
+ options=None),
1155
+ _descriptor.FieldDescriptor(
1156
+ name='concat_blocks',
1157
+ full_name='protos.BackboneTower.concat_blocks',
1158
+ index=2,
1159
+ number=3,
1160
+ type=9,
1161
+ cpp_type=9,
1162
+ label=3,
1163
+ has_default_value=False,
1164
+ default_value=[],
1165
+ message_type=None,
1166
+ enum_type=None,
1167
+ containing_type=None,
1168
+ is_extension=False,
1169
+ extension_scope=None,
1170
+ options=None),
1171
+ _descriptor.FieldDescriptor(
1172
+ name='output_blocks',
1173
+ full_name='protos.BackboneTower.output_blocks',
1174
+ index=3,
1175
+ number=4,
1176
+ type=9,
1177
+ cpp_type=9,
1178
+ label=3,
1179
+ has_default_value=False,
1180
+ default_value=[],
1181
+ message_type=None,
1182
+ enum_type=None,
1183
+ containing_type=None,
1184
+ is_extension=False,
1185
+ extension_scope=None,
1186
+ options=None),
1187
+ _descriptor.FieldDescriptor(
1188
+ name='top_mlp',
1189
+ full_name='protos.BackboneTower.top_mlp',
1190
+ index=4,
1191
+ number=5,
1192
+ type=11,
1193
+ cpp_type=10,
1194
+ label=1,
1195
+ has_default_value=False,
1196
+ default_value=None,
1197
+ message_type=None,
1198
+ enum_type=None,
1199
+ containing_type=None,
1200
+ is_extension=False,
1201
+ extension_scope=None,
1202
+ options=None),
1203
+ ],
1204
+ extensions=[],
1205
+ nested_types=[],
1206
+ enum_types=[],
1207
+ options=None,
1208
+ is_extendable=False,
1209
+ syntax='proto2',
1210
+ extension_ranges=[],
1211
+ oneofs=[],
1212
+ serialized_start=1905,
1213
+ serialized_end=2067,
1214
+ )
1215
+
1216
+ _INPUT.fields_by_name['reset_input'].message_type = _INPUTLAYER
1217
+ _INPUT.oneofs_by_name['name'].fields.append(
1218
+ _INPUT.fields_by_name['feature_group_name'])
1219
+ _INPUT.fields_by_name[
1220
+ 'feature_group_name'].containing_oneof = _INPUT.oneofs_by_name['name']
1221
+ _INPUT.oneofs_by_name['name'].fields.append(_INPUT.fields_by_name['block_name'])
1222
+ _INPUT.fields_by_name['block_name'].containing_oneof = _INPUT.oneofs_by_name[
1223
+ 'name']
1224
+ _INPUT.oneofs_by_name['name'].fields.append(
1225
+ _INPUT.fields_by_name['package_name'])
1226
+ _INPUT.fields_by_name['package_name'].containing_oneof = _INPUT.oneofs_by_name[
1227
+ 'name']
1228
+ _INPUT.oneofs_by_name['name'].fields.append(
1229
+ _INPUT.fields_by_name['use_package_input'])
1230
+ _INPUT.fields_by_name[
1231
+ 'use_package_input'].containing_oneof = _INPUT.oneofs_by_name['name']
1232
+ _RECURRENTLAYER.fields_by_name[
1233
+ 'keras_layer'].message_type = easy__rec_dot_python_dot_protos_dot_keras__layer__pb2._KERASLAYER
1234
+ _REPEATLAYER.fields_by_name[
1235
+ 'keras_layer'].message_type = easy__rec_dot_python_dot_protos_dot_keras__layer__pb2._KERASLAYER
1236
+ _LAYER.fields_by_name['lambda'].message_type = _LAMBDA
1237
+ _LAYER.fields_by_name[
1238
+ 'keras_layer'].message_type = easy__rec_dot_python_dot_protos_dot_keras__layer__pb2._KERASLAYER
1239
+ _LAYER.fields_by_name['recurrent'].message_type = _RECURRENTLAYER
1240
+ _LAYER.fields_by_name['repeat'].message_type = _REPEATLAYER
1241
+ _LAYER.oneofs_by_name['layer'].fields.append(_LAYER.fields_by_name['lambda'])
1242
+ _LAYER.fields_by_name['lambda'].containing_oneof = _LAYER.oneofs_by_name[
1243
+ 'layer']
1244
+ _LAYER.oneofs_by_name['layer'].fields.append(
1245
+ _LAYER.fields_by_name['keras_layer'])
1246
+ _LAYER.fields_by_name['keras_layer'].containing_oneof = _LAYER.oneofs_by_name[
1247
+ 'layer']
1248
+ _LAYER.oneofs_by_name['layer'].fields.append(_LAYER.fields_by_name['recurrent'])
1249
+ _LAYER.fields_by_name['recurrent'].containing_oneof = _LAYER.oneofs_by_name[
1250
+ 'layer']
1251
+ _LAYER.oneofs_by_name['layer'].fields.append(_LAYER.fields_by_name['repeat'])
1252
+ _LAYER.fields_by_name['repeat'].containing_oneof = _LAYER.oneofs_by_name[
1253
+ 'layer']
1254
+ _BLOCK.fields_by_name['inputs'].message_type = _INPUT
1255
+ _BLOCK.fields_by_name['layers'].message_type = _LAYER
1256
+ _BLOCK.fields_by_name['input_layer'].message_type = _INPUTLAYER
1257
+ _BLOCK.fields_by_name['lambda'].message_type = _LAMBDA
1258
+ _BLOCK.fields_by_name[
1259
+ 'keras_layer'].message_type = easy__rec_dot_python_dot_protos_dot_keras__layer__pb2._KERASLAYER
1260
+ _BLOCK.fields_by_name['recurrent'].message_type = _RECURRENTLAYER
1261
+ _BLOCK.fields_by_name['repeat'].message_type = _REPEATLAYER
1262
+ _BLOCK.fields_by_name['raw_input'].message_type = _RAWINPUTLAYER
1263
+ _BLOCK.fields_by_name['embedding_layer'].message_type = _EMBEDDINGLAYER
1264
+ _BLOCK.oneofs_by_name['layer'].fields.append(
1265
+ _BLOCK.fields_by_name['input_layer'])
1266
+ _BLOCK.fields_by_name['input_layer'].containing_oneof = _BLOCK.oneofs_by_name[
1267
+ 'layer']
1268
+ _BLOCK.oneofs_by_name['layer'].fields.append(_BLOCK.fields_by_name['lambda'])
1269
+ _BLOCK.fields_by_name['lambda'].containing_oneof = _BLOCK.oneofs_by_name[
1270
+ 'layer']
1271
+ _BLOCK.oneofs_by_name['layer'].fields.append(
1272
+ _BLOCK.fields_by_name['keras_layer'])
1273
+ _BLOCK.fields_by_name['keras_layer'].containing_oneof = _BLOCK.oneofs_by_name[
1274
+ 'layer']
1275
+ _BLOCK.oneofs_by_name['layer'].fields.append(_BLOCK.fields_by_name['recurrent'])
1276
+ _BLOCK.fields_by_name['recurrent'].containing_oneof = _BLOCK.oneofs_by_name[
1277
+ 'layer']
1278
+ _BLOCK.oneofs_by_name['layer'].fields.append(_BLOCK.fields_by_name['repeat'])
1279
+ _BLOCK.fields_by_name['repeat'].containing_oneof = _BLOCK.oneofs_by_name[
1280
+ 'layer']
1281
+ _BLOCK.oneofs_by_name['layer'].fields.append(_BLOCK.fields_by_name['raw_input'])
1282
+ _BLOCK.fields_by_name['raw_input'].containing_oneof = _BLOCK.oneofs_by_name[
1283
+ 'layer']
1284
+ _BLOCK.oneofs_by_name['layer'].fields.append(
1285
+ _BLOCK.fields_by_name['embedding_layer'])
1286
+ _BLOCK.fields_by_name[
1287
+ 'embedding_layer'].containing_oneof = _BLOCK.oneofs_by_name['layer']
1288
+ _BLOCKPACKAGE.fields_by_name['blocks'].message_type = _BLOCK
1289
+ _BACKBONETOWER.fields_by_name['packages'].message_type = _BLOCKPACKAGE
1290
+ _BACKBONETOWER.fields_by_name['blocks'].message_type = _BLOCK
1291
+ _BACKBONETOWER.fields_by_name[
1292
+ 'top_mlp'].message_type = easy__rec_dot_python_dot_protos_dot_dnn__pb2._MLP
1293
+ DESCRIPTOR.message_types_by_name['InputLayer'] = _INPUTLAYER
1294
+ DESCRIPTOR.message_types_by_name['RawInputLayer'] = _RAWINPUTLAYER
1295
+ DESCRIPTOR.message_types_by_name['EmbeddingLayer'] = _EMBEDDINGLAYER
1296
+ DESCRIPTOR.message_types_by_name['Lambda'] = _LAMBDA
1297
+ DESCRIPTOR.message_types_by_name['Input'] = _INPUT
1298
+ DESCRIPTOR.message_types_by_name['RecurrentLayer'] = _RECURRENTLAYER
1299
+ DESCRIPTOR.message_types_by_name['RepeatLayer'] = _REPEATLAYER
1300
+ DESCRIPTOR.message_types_by_name['Layer'] = _LAYER
1301
+ DESCRIPTOR.message_types_by_name['Block'] = _BLOCK
1302
+ DESCRIPTOR.message_types_by_name['BlockPackage'] = _BLOCKPACKAGE
1303
+ DESCRIPTOR.message_types_by_name['BackboneTower'] = _BACKBONETOWER
1304
+ _sym_db.RegisterFileDescriptor(DESCRIPTOR)
1305
+
1306
+ InputLayer = _reflection.GeneratedProtocolMessageType(
1307
+ 'InputLayer',
1308
+ (_message.Message,),
1309
+ dict(
1310
+ DESCRIPTOR=_INPUTLAYER,
1311
+ __module__='easy_rec.python.protos.backbone_pb2'
1312
+ # @@protoc_insertion_point(class_scope:protos.InputLayer)
1313
+ ))
1314
+ _sym_db.RegisterMessage(InputLayer)
1315
+
1316
+ RawInputLayer = _reflection.GeneratedProtocolMessageType(
1317
+ 'RawInputLayer',
1318
+ (_message.Message,),
1319
+ dict(
1320
+ DESCRIPTOR=_RAWINPUTLAYER,
1321
+ __module__='easy_rec.python.protos.backbone_pb2'
1322
+ # @@protoc_insertion_point(class_scope:protos.RawInputLayer)
1323
+ ))
1324
+ _sym_db.RegisterMessage(RawInputLayer)
1325
+
1326
+ EmbeddingLayer = _reflection.GeneratedProtocolMessageType(
1327
+ 'EmbeddingLayer',
1328
+ (_message.Message,),
1329
+ dict(
1330
+ DESCRIPTOR=_EMBEDDINGLAYER,
1331
+ __module__='easy_rec.python.protos.backbone_pb2'
1332
+ # @@protoc_insertion_point(class_scope:protos.EmbeddingLayer)
1333
+ ))
1334
+ _sym_db.RegisterMessage(EmbeddingLayer)
1335
+
1336
+ Lambda = _reflection.GeneratedProtocolMessageType(
1337
+ 'Lambda',
1338
+ (_message.Message,),
1339
+ dict(
1340
+ DESCRIPTOR=_LAMBDA,
1341
+ __module__='easy_rec.python.protos.backbone_pb2'
1342
+ # @@protoc_insertion_point(class_scope:protos.Lambda)
1343
+ ))
1344
+ _sym_db.RegisterMessage(Lambda)
1345
+
1346
+ Input = _reflection.GeneratedProtocolMessageType(
1347
+ 'Input',
1348
+ (_message.Message,),
1349
+ dict(
1350
+ DESCRIPTOR=_INPUT,
1351
+ __module__='easy_rec.python.protos.backbone_pb2'
1352
+ # @@protoc_insertion_point(class_scope:protos.Input)
1353
+ ))
1354
+ _sym_db.RegisterMessage(Input)
1355
+
1356
+ RecurrentLayer = _reflection.GeneratedProtocolMessageType(
1357
+ 'RecurrentLayer',
1358
+ (_message.Message,),
1359
+ dict(
1360
+ DESCRIPTOR=_RECURRENTLAYER,
1361
+ __module__='easy_rec.python.protos.backbone_pb2'
1362
+ # @@protoc_insertion_point(class_scope:protos.RecurrentLayer)
1363
+ ))
1364
+ _sym_db.RegisterMessage(RecurrentLayer)
1365
+
1366
+ RepeatLayer = _reflection.GeneratedProtocolMessageType(
1367
+ 'RepeatLayer',
1368
+ (_message.Message,),
1369
+ dict(
1370
+ DESCRIPTOR=_REPEATLAYER,
1371
+ __module__='easy_rec.python.protos.backbone_pb2'
1372
+ # @@protoc_insertion_point(class_scope:protos.RepeatLayer)
1373
+ ))
1374
+ _sym_db.RegisterMessage(RepeatLayer)
1375
+
1376
+ Layer = _reflection.GeneratedProtocolMessageType(
1377
+ 'Layer',
1378
+ (_message.Message,),
1379
+ dict(
1380
+ DESCRIPTOR=_LAYER,
1381
+ __module__='easy_rec.python.protos.backbone_pb2'
1382
+ # @@protoc_insertion_point(class_scope:protos.Layer)
1383
+ ))
1384
+ _sym_db.RegisterMessage(Layer)
1385
+
1386
+ Block = _reflection.GeneratedProtocolMessageType(
1387
+ 'Block',
1388
+ (_message.Message,),
1389
+ dict(
1390
+ DESCRIPTOR=_BLOCK,
1391
+ __module__='easy_rec.python.protos.backbone_pb2'
1392
+ # @@protoc_insertion_point(class_scope:protos.Block)
1393
+ ))
1394
+ _sym_db.RegisterMessage(Block)
1395
+
1396
+ BlockPackage = _reflection.GeneratedProtocolMessageType(
1397
+ 'BlockPackage',
1398
+ (_message.Message,),
1399
+ dict(
1400
+ DESCRIPTOR=_BLOCKPACKAGE,
1401
+ __module__='easy_rec.python.protos.backbone_pb2'
1402
+ # @@protoc_insertion_point(class_scope:protos.BlockPackage)
1403
+ ))
1404
+ _sym_db.RegisterMessage(BlockPackage)
1405
+
1406
+ BackboneTower = _reflection.GeneratedProtocolMessageType(
1407
+ 'BackboneTower',
1408
+ (_message.Message,),
1409
+ dict(
1410
+ DESCRIPTOR=_BACKBONETOWER,
1411
+ __module__='easy_rec.python.protos.backbone_pb2'
1412
+ # @@protoc_insertion_point(class_scope:protos.BackboneTower)
1413
+ ))
1414
+ _sym_db.RegisterMessage(BackboneTower)
1415
+
1416
+ # @@protoc_insertion_point(module_scope)