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,203 @@
1
+ Copyright 2020 The EasyRec Authors. All rights reserved.
2
+
3
+ Apache License
4
+ Version 2.0, January 2004
5
+ http://www.apache.org/licenses/
6
+
7
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
8
+
9
+ 1. Definitions.
10
+
11
+ "License" shall mean the terms and conditions for use, reproduction,
12
+ and distribution as defined by Sections 1 through 9 of this document.
13
+
14
+ "Licensor" shall mean the copyright owner or entity authorized by
15
+ the copyright owner that is granting the License.
16
+
17
+ "Legal Entity" shall mean the union of the acting entity and all
18
+ other entities that control, are controlled by, or are under common
19
+ control with that entity. For the purposes of this definition,
20
+ "control" means (i) the power, direct or indirect, to cause the
21
+ direction or management of such entity, whether by contract or
22
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
23
+ outstanding shares, or (iii) beneficial ownership of such entity.
24
+
25
+ "You" (or "Your") shall mean an individual or Legal Entity
26
+ exercising permissions granted by this License.
27
+
28
+ "Source" form shall mean the preferred form for making modifications,
29
+ including but not limited to software source code, documentation
30
+ source, and configuration files.
31
+
32
+ "Object" form shall mean any form resulting from mechanical
33
+ transformation or translation of a Source form, including but
34
+ not limited to compiled object code, generated documentation,
35
+ and conversions to other media types.
36
+
37
+ "Work" shall mean the work of authorship, whether in Source or
38
+ Object form, made available under the License, as indicated by a
39
+ copyright notice that is included in or attached to the work
40
+ (an example is provided in the Appendix below).
41
+
42
+ "Derivative Works" shall mean any work, whether in Source or Object
43
+ form, that is based on (or derived from) the Work and for which the
44
+ editorial revisions, annotations, elaborations, or other modifications
45
+ represent, as a whole, an original work of authorship. For the purposes
46
+ of this License, Derivative Works shall not include works that remain
47
+ separable from, or merely link (or bind by name) to the interfaces of,
48
+ the Work and Derivative Works thereof.
49
+
50
+ "Contribution" shall mean any work of authorship, including
51
+ the original version of the Work and any modifications or additions
52
+ to that Work or Derivative Works thereof, that is intentionally
53
+ submitted to Licensor for inclusion in the Work by the copyright owner
54
+ or by an individual or Legal Entity authorized to submit on behalf of
55
+ the copyright owner. For the purposes of this definition, "submitted"
56
+ means any form of electronic, verbal, or written communication sent
57
+ to the Licensor or its representatives, including but not limited to
58
+ communication on electronic mailing lists, source code control systems,
59
+ and issue tracking systems that are managed by, or on behalf of, the
60
+ Licensor for the purpose of discussing and improving the Work, but
61
+ excluding communication that is conspicuously marked or otherwise
62
+ designated in writing by the copyright owner as "Not a Contribution."
63
+
64
+ "Contributor" shall mean Licensor and any individual or Legal Entity
65
+ on behalf of whom a Contribution has been received by Licensor and
66
+ subsequently incorporated within the Work.
67
+
68
+ 2. Grant of Copyright License. Subject to the terms and conditions of
69
+ this License, each Contributor hereby grants to You a perpetual,
70
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
71
+ copyright license to reproduce, prepare Derivative Works of,
72
+ publicly display, publicly perform, sublicense, and distribute the
73
+ Work and such Derivative Works in Source or Object form.
74
+
75
+ 3. Grant of Patent License. Subject to the terms and conditions of
76
+ this License, each Contributor hereby grants to You a perpetual,
77
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
78
+ (except as stated in this section) patent license to make, have made,
79
+ use, offer to sell, sell, import, and otherwise transfer the Work,
80
+ where such license applies only to those patent claims licensable
81
+ by such Contributor that are necessarily infringed by their
82
+ Contribution(s) alone or by combination of their Contribution(s)
83
+ with the Work to which such Contribution(s) was submitted. If You
84
+ institute patent litigation against any entity (including a
85
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
86
+ or a Contribution incorporated within the Work constitutes direct
87
+ or contributory patent infringement, then any patent licenses
88
+ granted to You under this License for that Work shall terminate
89
+ as of the date such litigation is filed.
90
+
91
+ 4. Redistribution. You may reproduce and distribute copies of the
92
+ Work or Derivative Works thereof in any medium, with or without
93
+ modifications, and in Source or Object form, provided that You
94
+ meet the following conditions:
95
+
96
+ (a) You must give any other recipients of the Work or
97
+ Derivative Works a copy of this License; and
98
+
99
+ (b) You must cause any modified files to carry prominent notices
100
+ stating that You changed the files; and
101
+
102
+ (c) You must retain, in the Source form of any Derivative Works
103
+ that You distribute, all copyright, patent, trademark, and
104
+ attribution notices from the Source form of the Work,
105
+ excluding those notices that do not pertain to any part of
106
+ the Derivative Works; and
107
+
108
+ (d) If the Work includes a "NOTICE" text file as part of its
109
+ distribution, then any Derivative Works that You distribute must
110
+ include a readable copy of the attribution notices contained
111
+ within such NOTICE file, excluding those notices that do not
112
+ pertain to any part of the Derivative Works, in at least one
113
+ of the following places: within a NOTICE text file distributed
114
+ as part of the Derivative Works; within the Source form or
115
+ documentation, if provided along with the Derivative Works; or,
116
+ within a display generated by the Derivative Works, if and
117
+ wherever such third-party notices normally appear. The contents
118
+ of the NOTICE file are for informational purposes only and
119
+ do not modify the License. You may add Your own attribution
120
+ notices within Derivative Works that You distribute, alongside
121
+ or as an addendum to the NOTICE text from the Work, provided
122
+ that such additional attribution notices cannot be construed
123
+ as modifying the License.
124
+
125
+ You may add Your own copyright statement to Your modifications and
126
+ may provide additional or different license terms and conditions
127
+ for use, reproduction, or distribution of Your modifications, or
128
+ for any such Derivative Works as a whole, provided Your use,
129
+ reproduction, and distribution of the Work otherwise complies with
130
+ the conditions stated in this License.
131
+
132
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
133
+ any Contribution intentionally submitted for inclusion in the Work
134
+ by You to the Licensor shall be under the terms and conditions of
135
+ this License, without any additional terms or conditions.
136
+ Notwithstanding the above, nothing herein shall supersede or modify
137
+ the terms of any separate license agreement you may have executed
138
+ with Licensor regarding such Contributions.
139
+
140
+ 6. Trademarks. This License does not grant permission to use the trade
141
+ names, trademarks, service marks, or product names of the Licensor,
142
+ except as required for reasonable and customary use in describing the
143
+ origin of the Work and reproducing the content of the NOTICE file.
144
+
145
+ 7. Disclaimer of Warranty. Unless required by applicable law or
146
+ agreed to in writing, Licensor provides the Work (and each
147
+ Contributor provides its Contributions) on an "AS IS" BASIS,
148
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
149
+ implied, including, without limitation, any warranties or conditions
150
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
151
+ PARTICULAR PURPOSE. You are solely responsible for determining the
152
+ appropriateness of using or redistributing the Work and assume any
153
+ risks associated with Your exercise of permissions under this License.
154
+
155
+ 8. Limitation of Liability. In no event and under no legal theory,
156
+ whether in tort (including negligence), contract, or otherwise,
157
+ unless required by applicable law (such as deliberate and grossly
158
+ negligent acts) or agreed to in writing, shall any Contributor be
159
+ liable to You for damages, including any direct, indirect, special,
160
+ incidental, or consequential damages of any character arising as a
161
+ result of this License or out of the use or inability to use the
162
+ Work (including but not limited to damages for loss of goodwill,
163
+ work stoppage, computer failure or malfunction, or any and all
164
+ other commercial damages or losses), even if such Contributor
165
+ has been advised of the possibility of such damages.
166
+
167
+ 9. Accepting Warranty or Additional Liability. While redistributing
168
+ the Work or Derivative Works thereof, You may choose to offer,
169
+ and charge a fee for, acceptance of support, warranty, indemnity,
170
+ or other liability obligations and/or rights consistent with this
171
+ License. However, in accepting such obligations, You may act only
172
+ on Your own behalf and on Your sole responsibility, not on behalf
173
+ of any other Contributor, and only if You agree to indemnify,
174
+ defend, and hold each Contributor harmless for any liability
175
+ incurred by, or claims asserted against, such Contributor by reason
176
+ of your accepting any such warranty or additional liability.
177
+
178
+ END OF TERMS AND CONDITIONS
179
+
180
+ APPENDIX: How to apply the Apache License to your work.
181
+
182
+ To apply the Apache License to your work, attach the following
183
+ boilerplate notice, with the fields enclosed by brackets "[]"
184
+ replaced with your own identifying information. (Don't include
185
+ the brackets!) The text should be enclosed in the appropriate
186
+ comment syntax for the file format. We also recommend that a
187
+ file or class name and description of purpose be included on the
188
+ same "printed page" as the copyright notice for easier
189
+ identification within third-party archives.
190
+
191
+ Copyright [yyyy] [name of copyright owner]
192
+
193
+ Licensed under the Apache License, Version 2.0 (the "License");
194
+ you may not use this file except in compliance with the License.
195
+ You may obtain a copy of the License at
196
+
197
+ http://www.apache.org/licenses/LICENSE-2.0
198
+
199
+ Unless required by applicable law or agreed to in writing, software
200
+ distributed under the License is distributed on an "AS IS" BASIS,
201
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
202
+ See the License for the specific language governing permissions and
203
+ limitations under the License.
@@ -0,0 +1,48 @@
1
+ Metadata-Version: 2.1
2
+ Name: easy-cs-rec-custommodel
3
+ Version: 0.8.6
4
+ Summary: An easy-to-use framework for Recommendation
5
+ Home-page: https://github.com/alibaba/EasyRec
6
+ Author: EasyRec Team
7
+ Author-email: easy_rec@alibaba-inc.com
8
+ Classifier: Programming Language :: Python :: 2
9
+ Classifier: Programming Language :: Python :: 3
10
+ License-File: LICENSE
11
+ Requires-Dist: future
12
+ Requires-Dist: matplotlib
13
+ Requires-Dist: numpy<=1.23
14
+ Requires-Dist: oss2
15
+ Requires-Dist: pandas
16
+ Requires-Dist: psutil
17
+ Requires-Dist: pyarrow
18
+ Requires-Dist: pyodps
19
+ Requires-Dist: PyYAML
20
+ Requires-Dist: scikit-learn
21
+ Requires-Dist: xlrd>=0.9.0
22
+ Requires-Dist: eas-prediction==0.24; python_version < "3.0"
23
+ Requires-Dist: eas-prediction; python_version >= "3.0"
24
+ Provides-Extra: all
25
+ Requires-Dist: future; extra == "all"
26
+ Requires-Dist: matplotlib; extra == "all"
27
+ Requires-Dist: numpy<=1.23; extra == "all"
28
+ Requires-Dist: oss2; extra == "all"
29
+ Requires-Dist: pandas; extra == "all"
30
+ Requires-Dist: psutil; extra == "all"
31
+ Requires-Dist: pyarrow; extra == "all"
32
+ Requires-Dist: pyodps; extra == "all"
33
+ Requires-Dist: PyYAML; extra == "all"
34
+ Requires-Dist: scikit-learn; extra == "all"
35
+ Requires-Dist: xlrd>=0.9.0; extra == "all"
36
+ Requires-Dist: eas-prediction==0.24; python_version < "3.0" and extra == "all"
37
+ Requires-Dist: eas-prediction; python_version >= "3.0" and extra == "all"
38
+ Provides-Extra: tests
39
+ Requires-Dist: configparser; extra == "tests"
40
+ Requires-Dist: docformatter; extra == "tests"
41
+ Requires-Dist: flake8; extra == "tests"
42
+ Requires-Dist: flake8-docstrings; extra == "tests"
43
+ Requires-Dist: isort==4.3.21; extra == "tests"
44
+ Requires-Dist: pre-commit; extra == "tests"
45
+ Requires-Dist: yapf; extra == "tests"
46
+ Requires-Dist: mdformat; python_version > "3" and extra == "tests"
47
+ Requires-Dist: mdformat-tables; python_version > "3" and extra == "tests"
48
+
@@ -0,0 +1,336 @@
1
+ easy_rec/__init__.py,sha256=QxCuj9QBDTnCSlercANRuegyNq1alYnUoRh9QNDn_VQ,3937
2
+ easy_rec/version.py,sha256=dbHF0SgET3SRdkAc88x1Qm5s-RVbYrW6kNDeJVUkxUI,98
3
+ easy_rec/python/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
+ easy_rec/python/eval.py,sha256=FDdcMd87pLRzjhOC3mhWQgvIxDnFtqEzkiIBVFrq4uI,3823
5
+ easy_rec/python/export.py,sha256=DWvmZ9kr1rsrsHXaBUgke9txmiUcvrnxIIV-4B9c2n4,6097
6
+ easy_rec/python/main.py,sha256=76pqmSbh8v1-OzB93JCzXrYLZ8xzSVN6vciSIRl2iIc,36035
7
+ easy_rec/python/predict.py,sha256=GQ7A3RBzGn4C0ZwEyGIHrj2rUtx5qPsaboJ7BbOyCwY,6827
8
+ easy_rec/python/train_eval.py,sha256=Vnoq-9Y1YzCf2xs-blAyLQPoPVbzG_7jrM2LrmTz6dk,10997
9
+ easy_rec/python/builders/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
+ easy_rec/python/builders/hyperparams_builder.py,sha256=JHR01y_s7R1f53Ea3HA7ER4inStqEXsXXD2tMrISOHE,2890
11
+ easy_rec/python/builders/loss_builder.py,sha256=Amblw3gKEBkB9mjlTbXwFwskRvOGGOjbJiCc0cr-hbk,12824
12
+ easy_rec/python/builders/optimizer_builder.py,sha256=KupJhQiQfo9LJ0SYudix-WjxfWn04G2vb4ywUz8wNr8,8450
13
+ easy_rec/python/builders/strategy_builder.py,sha256=KFyuEyrO7AsqP3Jq2EDQNH-1Z57bWP5bYNiVfiQ4Qqk,1835
14
+ easy_rec/python/compat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
15
+ easy_rec/python/compat/adam_s.py,sha256=LTY3Z4ZAUQTBZ1-RN5vLPzWQzORfS1VemtCIDjpVr6s,10497
16
+ easy_rec/python/compat/array_ops.py,sha256=fACdfXB7RsroRTWXI-AzxdzwpBNnqO2chXHykVIw0yg,8749
17
+ easy_rec/python/compat/dynamic_variable.py,sha256=DT_RJP_tuJoBWncnzlVqdcnLmpf3pj2ri104efnXp88,18788
18
+ easy_rec/python/compat/early_stopping.py,sha256=SnAcrNKp6E-KhmiqtUTSxNAJigGctNYQHfa5ef_Rmhc,25264
19
+ easy_rec/python/compat/embedding_ops.py,sha256=OaWENuw-5H1cQeyOcMIIbQ26sc37NKfnMKl7FoNROWY,7177
20
+ easy_rec/python/compat/embedding_parallel_saver.py,sha256=82U8FmzS8_syyKz8RUCFVHd5P5cvzMhtoeVumRNkKZM,12992
21
+ easy_rec/python/compat/estimator_train.py,sha256=doS2Syj0vz83EKk79GwByN4bK2VF7khs1EAw25Ymefk,4332
22
+ easy_rec/python/compat/exporter.py,sha256=zI7i5GklRg9SpyqzrTVJ7b3jNMeY3mG9HxtWvsP0Xis,18881
23
+ easy_rec/python/compat/layers.py,sha256=pjbrrK3EZ1J3MX-B4Ud8-Rd3T1uYToMpDVA2K5Zm6Mc,13400
24
+ easy_rec/python/compat/ops.py,sha256=Zyd7GIGfaqiY4dF-q2CJqIs2cHvojmWlCagh5X-ZrlQ,572
25
+ easy_rec/python/compat/optimizers.py,sha256=faylIdPvQfbPu34l2hvJBUghtuDQvmsB5Mf2m85wOeo,25707
26
+ easy_rec/python/compat/queues.py,sha256=30d41BcAyKtWIK_P4Ls2RJU4m0j0Vipruq7QXGi9UJ0,9254
27
+ easy_rec/python/compat/regularizers.py,sha256=BOYcWiVTwIsfP1IgAkfxwXixqqQqVsyHUvglodBIXIk,7344
28
+ easy_rec/python/compat/sok_optimizer.py,sha256=U2nay91xXRNmMyou5NxFKXNpP-yLX6EJWymUDe18FAM,15312
29
+ easy_rec/python/compat/sync_replicas_optimizer.py,sha256=Wa9KgN5NNrbjMB_aSJ1yfkRd0Lsrk9qjnBuF7A7mcug,21730
30
+ easy_rec/python/compat/weight_decay_optimizers.py,sha256=i3Est7VKQeeIHwnfxJZBkiTC2ARMqZ6JyhZwIOoJxU0,20472
31
+ easy_rec/python/compat/feature_column/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
32
+ easy_rec/python/compat/feature_column/feature_column.py,sha256=8UvmoEcunxAWuV5B7jAJMPbiNdUGaVkc0oUoqK-6w7g,143858
33
+ easy_rec/python/compat/feature_column/feature_column_v2.py,sha256=iluT3EW_hyh-GvvSwYQXFvEAQfm59rOWBonRNWXn9iY,204187
34
+ easy_rec/python/compat/feature_column/sequence_feature_column.py,sha256=1958A6wR0XeSFWnizAzxozLwKslc-5FU9LwxeoQNdSY,25533
35
+ easy_rec/python/compat/feature_column/utils.py,sha256=Kcxm0Hvo4fDIuOtaPymyLEF1LX3s44D_w_66pcSLCvM,6158
36
+ easy_rec/python/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
37
+ easy_rec/python/core/learning_schedules.py,sha256=DxKTzQCV5gFl5bU8b-NZNbz3yMmTx0GsA5Jkm5rogto,9400
38
+ easy_rec/python/core/metrics.py,sha256=L_f-HlgKmR2N6jqrbTSKdsT6izV_bdbi6jZIGczdlnM,17226
39
+ easy_rec/python/core/sampler.py,sha256=TEO4zvhgpue4hu0qysHMasNRorL3zSnyC7c9WM_-Qj0,30738
40
+ easy_rec/python/core/easyrec_metrics/__init__.py,sha256=VneXXxpsSsyvWZl3mA-RRI5C86DpdIqywF1lFX3irtY,807
41
+ easy_rec/python/core/easyrec_metrics/distribute_metrics_impl_pai.py,sha256=1JDTZO83n7mWt2Ls2AnhbPF2XQPpvUd6bEYUnBmRcjU,163524
42
+ easy_rec/python/core/easyrec_metrics/distribute_metrics_impl_tf.py,sha256=znABtgeO1mejQRkvK5lLUsjnIL6SISSfOJ5oUgqrOus,166843
43
+ easy_rec/python/feature_column/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
44
+ easy_rec/python/feature_column/feature_column.py,sha256=yM93QYCm2hvUsxIA6N3hlt22RHJSghPj2g8m9dO4IUU,25931
45
+ easy_rec/python/feature_column/feature_group.py,sha256=pTuEoOi7V7bMnD6FUnEGD6HucpOK_z402IO31GsFS6w,3010
46
+ easy_rec/python/hpo/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
47
+ easy_rec/python/hpo/emr_hpo.py,sha256=TjAGhuLaho9QF5jZpW31Amgmx439s-f8fXd6BX1hwdE,4269
48
+ easy_rec/python/hpo/generate_hpo_sql.py,sha256=RoXDBn31l2sJ3SS6QtX2yPhoM4xAh1Lrtw_GGajfL7U,2815
49
+ easy_rec/python/hpo/pai_hpo.py,sha256=6Rt2MVM_ORDHBDSN_juMPQS-yPsqX7rAPVKhAJELTOo,9649
50
+ easy_rec/python/inference/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
51
+ easy_rec/python/inference/csv_predictor.py,sha256=qxn6vZE9L47cgYs9AnUkRaLH5m1GY7X_czuwUQ1rRu8,6710
52
+ easy_rec/python/inference/hive_parquet_predictor.py,sha256=Ws0Aycy71m7zOMQJp0B8tUEcx2k-xJ3UXc1Ue9grnVY,7441
53
+ easy_rec/python/inference/hive_predictor.py,sha256=M3qWyNQpnDliAE_SBiygWWzus01UlirR9lZ_i9sWuTQ,6278
54
+ easy_rec/python/inference/odps_predictor.py,sha256=I0llrQ4AL8YYUHwc89aelU28vmCwSJTZ0DOOwSI2gN4,2412
55
+ easy_rec/python/inference/parquet_predictor.py,sha256=BAZExHB-TM9G9hD4kLSqL0M5jcL_-_ALFlHjFtJeBMg,5263
56
+ easy_rec/python/inference/parquet_predictor_v2.py,sha256=qdHS6RaubeGIDru9Ssf5eZ0HOjTe0riyT8nbR1-1pRI,5276
57
+ easy_rec/python/inference/predictor.py,sha256=vEoPgOZMR3shDiabSwwcDyWiL4ALDvevxkqZpgkiUpM,24458
58
+ easy_rec/python/inference/vector_retrieve.py,sha256=lZTSnteqqL3lnOw0fM6437tDMQX6_9eiK80lCqXV0QY,4147
59
+ easy_rec/python/inference/processor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
60
+ easy_rec/python/inference/processor/test.py,sha256=0XdeTUDu_9w_7GcdY2EBCIHiy3h2iIMvMngfd98snPk,6498
61
+ easy_rec/python/input/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
62
+ easy_rec/python/input/batch_tfrecord_input.py,sha256=1hjxxmrTmhhUUxXX6eZr73DVOyoKcQ17ba0pkj55k5U,4522
63
+ easy_rec/python/input/criteo_binary_reader.py,sha256=hxmbwPepAm845jFpy2cb6eZLAr5W4shNYMwgtiEJ4BY,8982
64
+ easy_rec/python/input/criteo_input.py,sha256=_tgiTQDLtCctKqXyNvYe2XMsESpVbBnZqUfYcndvsdA,4003
65
+ easy_rec/python/input/csv_input.py,sha256=IAqezcuKew2eUiWGSmTug2ekjSguWF6rcVoRSYpusz8,6303
66
+ easy_rec/python/input/csv_input_ex.py,sha256=Qhi4AhwiTkZ5m5zHVgEUe8EIY2k_4bEFm27txszh1tA,2437
67
+ easy_rec/python/input/csv_input_v2.py,sha256=DdZs8VOx2EEIEYD51fovGJTDr-8RiA9Naxbl6y4K-A0,2427
68
+ easy_rec/python/input/datahub_input.py,sha256=LFwj8NhnP08U9Ub9h3I21x8vDAy9_57wN4ugTgKlxys,11526
69
+ easy_rec/python/input/dummy_input.py,sha256=vvgCr1wYe7qB0uqjV6COTv4tFfEM7zAtanSBif0kFy4,1810
70
+ easy_rec/python/input/hive_input.py,sha256=TRXpYSOjyNRBIVnUuq6dq4m1z8QlHdLIUiz3Dxf99WA,4363
71
+ easy_rec/python/input/hive_parquet_input.py,sha256=fNALbcJgebHY60C3DqZZX_-bP7Jk9ZcBjmdIJ5ocIho,4974
72
+ easy_rec/python/input/hive_rtp_input.py,sha256=Cnpy68e1EKyIK5TkpHSgfuT43RyHqmyQdvmoL01AENE,6540
73
+ easy_rec/python/input/input.py,sha256=pG65en_4Y2zTMwiTlxrPJjOhW-7nwkRbc93L7XON6EE,45502
74
+ easy_rec/python/input/kafka_dataset.py,sha256=0-vfdWMdc8qQvXk9lY3ijV-hz4MF_VsJEGE3L9jhkds,5430
75
+ easy_rec/python/input/kafka_input.py,sha256=lKCUSCV9zxzLt_SQToxjTQN1py91DGxVcPAHoM3ITFo,8350
76
+ easy_rec/python/input/load_parquet.py,sha256=cKLeEYr3SiwjZnF6YIEFa30yquaXBcAyBzzlnZbp4Kg,11403
77
+ easy_rec/python/input/odps_input.py,sha256=ZUzZZZDW3BiP1zXHRvaBTg7kEHVGVFOKEpTUyqGHHNc,3582
78
+ easy_rec/python/input/odps_input_v2.py,sha256=RQJCtELnR7mCrt-jX7o7wPAjelBt7fviVk0erDT7zsM,3712
79
+ easy_rec/python/input/odps_input_v3.py,sha256=MbJv4zDoDNfRWzmboVn0M4KcRg9AcLet3R8KMlX-gAI,4668
80
+ easy_rec/python/input/odps_rtp_input.py,sha256=Sf0AALJ_7NkGTu_Nad0SR_ujjlhY6apezPppiD7TEbA,6958
81
+ easy_rec/python/input/odps_rtp_input_v2.py,sha256=01f9l2lHb3LVY1us2pjr_YBAJmxeUGgs03zI898pIDs,3792
82
+ easy_rec/python/input/parquet_input.py,sha256=6QBgWQAQCqL4exdEJzKlg4oBSTAHFfKugFe50F_LRLU,13706
83
+ easy_rec/python/input/parquet_input_v2.py,sha256=7EkMa5sI9fiRmt6m68HmD4zcda2KES8LE1JCqJfdKC4,6271
84
+ easy_rec/python/input/parquet_input_v3.py,sha256=hAfOT2vFCseLhOoFBJxAjjRGEODlzHGcDfivYTlGF90,7198
85
+ easy_rec/python/input/rtp_input.py,sha256=9XH1yXTzjM_x3bQWqfegLly4JMF9fAyuqHzbq6zGhx0,8603
86
+ easy_rec/python/input/rtp_input_v2.py,sha256=4thNwx_CXioW72tHcRpo4p3ZLF4qM753MHRFY6zcnfk,5160
87
+ easy_rec/python/input/tfrecord_input.py,sha256=ywPCZk9MfYHAjvz0BJMGJ_PfqwpqTuUhXh1MgvybiN8,3764
88
+ easy_rec/python/layers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
89
+ easy_rec/python/layers/backbone.py,sha256=9HNDEsxcjTj1PMN9LcOZKt8wKXsMeyAqOW9JCKArWNY,22224
90
+ easy_rec/python/layers/capsule_layer.py,sha256=CSZAokfUN9PST1fS_ViQWhyzHdAVy00By2bXcDUQGZg,7673
91
+ easy_rec/python/layers/cmbf.py,sha256=8Ndimo4u2nmyKBrDEzHboa_9bbNbJmmXMqipn9hFEI0,18093
92
+ easy_rec/python/layers/common_layers.py,sha256=rKKkiGrmAByKSN7VqZGGrLZ8vF4OomKKhGI7mkYbeWY,6704
93
+ easy_rec/python/layers/dnn.py,sha256=SY8YQ4-3eWbMnsR6l3A1JdVrhpWkmedS54NnJP2sy18,3048
94
+ easy_rec/python/layers/embed_input_layer.py,sha256=H1YVX6tmB1Dj4JEYxCxosdpf07SS_AgHMFmtZoMjULs,889
95
+ easy_rec/python/layers/fm.py,sha256=9JZS5DftLBUuYuXivRpoxe2C3kIoLv8Onl6ODnyeHfc,586
96
+ easy_rec/python/layers/input_layer.py,sha256=xN9XAqdOnFfaYUZDFS2OgLm772BsQzaEZkYO8bGyJws,16057
97
+ easy_rec/python/layers/layer_norm.py,sha256=x8Koyu3hPqSfF1c9hJWDW915TrPbCkSmfUukooT1ybI,1729
98
+ easy_rec/python/layers/mmoe.py,sha256=rgJdBAzXHppZYeGpKflgVkG3J-geaR4I13O9BbzCPco,2767
99
+ easy_rec/python/layers/multihead_attention.py,sha256=qqi0R_eYAi_uWEUMd_WCwNZLBm3-gfMNVtGa1IlZI5Q,5548
100
+ easy_rec/python/layers/multihead_cross_attention.py,sha256=_V4dangvJ-Wd0X_j99QJdhG-JUSs8A3CjK_GANUEV_0,31307
101
+ easy_rec/python/layers/senet.py,sha256=PGmr6FSSxWH0lHGrsVS42sNX_dkcu98HotGngZS5FIk,1993
102
+ easy_rec/python/layers/seq_input_layer.py,sha256=cPAvvn5pddJ0NWtU3VAMupYy6bvaFD8yEySrLjH99xE,5262
103
+ easy_rec/python/layers/sequence_feature_layer.py,sha256=lIjiWN5K66svmrnTi-7zFAvW0rseoWqoaMetec8-MJs,9922
104
+ easy_rec/python/layers/uniter.py,sha256=jnldGLlcpWknoR2Dwc8kb52eKPc4F3L-o_QEgFW6WVM,12806
105
+ easy_rec/python/layers/utils.py,sha256=0XSuFHPpdwa93lvRgNC48VcgKMrJ92QBqzgb6aE13So,7523
106
+ easy_rec/python/layers/variational_dropout_layer.py,sha256=CzwHQw4w3iCAa1W0x5l473wWq0uONjCXUstZ_VCSruI,5009
107
+ easy_rec/python/layers/keras/__init__.py,sha256=1X9n81QjV14tI8IqE9rJCpRfwPRE7VvH8N-AvqfkTkU,1181
108
+ easy_rec/python/layers/keras/activation.py,sha256=RT7SvpdKbCqNv-3ellwPp2YBpKKxorqxowcWhnKwt4U,3693
109
+ easy_rec/python/layers/keras/attention.py,sha256=mXbMwNzp8W4dcZahG9hNHfu6MpGGdMHTQhUCt4SVBj0,11666
110
+ easy_rec/python/layers/keras/auxiliary_loss.py,sha256=CmfRL9JQLEkWiRfmWXw7DRriHot7ZYU1psaTCcbc910,1856
111
+ easy_rec/python/layers/keras/blocks.py,sha256=nLomOC9ud7oZd19RRN9e0tMuFVV3JRxPvWXv1O0TOM8,10245
112
+ easy_rec/python/layers/keras/bst.py,sha256=WAZdvZYmdkuaTyFQYjqyG-tgMdLkdv0NQrbTZXryHhY,4916
113
+ easy_rec/python/layers/keras/custom_ops.py,sha256=gh6nOuuDgZgbk4508eU4SsirYSEaw5vFN9ktXRLiiz4,10239
114
+ easy_rec/python/layers/keras/data_augment.py,sha256=cCz6MyZ3kxFQ96J4WLs7I8dahbskk8C7gz7rTkwzjwI,4537
115
+ easy_rec/python/layers/keras/din.py,sha256=MRNGScsCytVFLqKYgVYciji73TMDS6kPZZtj7gdiID8,2850
116
+ easy_rec/python/layers/keras/einsum_dense.py,sha256=dA9ACjVe3OIzTYPdjlgsTaBRBD-nT2hSuaaG7HcP8UQ,23544
117
+ easy_rec/python/layers/keras/embedding.py,sha256=OTEOPZMNqT-OOECjzPDOxy5vSulSReCUnzT_3ADLBNc,3180
118
+ easy_rec/python/layers/keras/fibinet.py,sha256=IqIVWuflGzlx9wsShR1v6jqXsCpHcM6toiSvUvpfXI8,8824
119
+ easy_rec/python/layers/keras/interaction.py,sha256=nJV8auHTPCiB6Ps24f6emXyUXfGQZet-HAF0fOI2ThI,17081
120
+ easy_rec/python/layers/keras/layer_norm.py,sha256=hRH6KMS0DNAbRHn6f-bQNpG3LdpGq5Frz6CjAdJOlno,13069
121
+ easy_rec/python/layers/keras/mask_net.py,sha256=VFtjFtd9yG6vKCYcbzvylnE8xQrmglKalmCsaR5ml9c,6019
122
+ easy_rec/python/layers/keras/multi_head_attention.py,sha256=w8JnqUBhgcY5hB8liUYh1nwyBWmj5tWETTGs-6lnOyk,28310
123
+ easy_rec/python/layers/keras/multi_task.py,sha256=2d8jla6Acfn5wHe1kVFsZU_Q9sDlSYXny9tdCNiHPk4,4509
124
+ easy_rec/python/layers/keras/numerical_embedding.py,sha256=_7tOyCRzbvMzYujpFUQ3bSCba1_-mF7bW_5k_ZfiM-k,15084
125
+ easy_rec/python/layers/keras/ppnet.py,sha256=P3DGSmMerZrzyEj8V_9lXDvbQMmxgp7TnJR6zwm2Dn4,7500
126
+ easy_rec/python/layers/keras/transformer.py,sha256=x0Q0_f8jqV1UM7JfNzhmrNbQRhWr4hwuG2wMgSLO3Oc,8261
127
+ easy_rec/python/loss/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
128
+ easy_rec/python/loss/circle_loss.py,sha256=qbaLvo0a6vvt9kovnsnkzP7WZhyPYhjeTN4adxFS6eo,3049
129
+ easy_rec/python/loss/contrastive_loss.py,sha256=WA4khuskpPsxPog_8YizcwHv49RzABFrL2OrQADZKYY,2666
130
+ easy_rec/python/loss/f1_reweight_loss.py,sha256=wvxM7pZwVRcd2nMVsvPqladUqSUQ4GvDc61p1XCbook,1461
131
+ easy_rec/python/loss/focal_loss.py,sha256=IIJyZ6PdjchdNgyjjMHDiuIglJrc2H283udrVZNnfjc,3722
132
+ easy_rec/python/loss/jrc_loss.py,sha256=8WS9_FEDJLJxGIxMW065hRgpf2L-KKVj9oQm5Kornao,5566
133
+ easy_rec/python/loss/listwise_loss.py,sha256=YmZrSsO5gt1VBHVNoSV8dFH8nV40yNe79_UIWjlC7Ho,5725
134
+ easy_rec/python/loss/multi_similarity.py,sha256=0Geh-uWxkmkEwOoP-M5-AEMRCfArEJB7ize0mO1tGVA,2334
135
+ easy_rec/python/loss/pairwise_loss.py,sha256=3OyvS6vcg1BnTXLgjh06hiXVtOYxr4nOqq0oa04hSiQ,12170
136
+ easy_rec/python/loss/softmax_loss_with_negative_mining.py,sha256=XmraAbAx16vswMtHTyEK_1_TlUSoH4B-dNoRiPFPSOc,4902
137
+ easy_rec/python/loss/zero_inflated_lognormal.py,sha256=lFD-fEcsRU7v1qHLNb1fY16iEP-RihrWgx4aZilJ4E8,2543
138
+ easy_rec/python/model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
139
+ easy_rec/python/model/autoint.py,sha256=1W0oJfmGCHC4Wv--u9FBZyhX0WqufkQDU8l_nAuMkXo,2724
140
+ easy_rec/python/model/cmbf.py,sha256=juiD2z5SA-vmP0Wko4rZZyAOn7FaWWo6n5QkqG2Y7sk,1685
141
+ easy_rec/python/model/collaborative_metric_learning.py,sha256=SpF7wLVBBxXmwQwbkYd_90sxyXlwRO8czcjTzrZx5YA,7060
142
+ easy_rec/python/model/custom_model.py,sha256=XSAahLte18WzEK4suMLYO0c5YW_96HlUZ7xaOfOfhUc,11913
143
+ easy_rec/python/model/dat.py,sha256=x63rIXG-EO6vM1WAuH7dCQoijVnrCGV_G2kngPMFFzU,5614
144
+ easy_rec/python/model/dbmtl.py,sha256=Q9QRWIqhLG5u4P93Jcr8rhcg5h78ELZg6WWZm3cwaF8,4466
145
+ easy_rec/python/model/dcn.py,sha256=39WFMFpdVVJJnQ2P3r7Hp887P6KvnCbv3Rd-aNcS_4U,2386
146
+ easy_rec/python/model/deepfm.py,sha256=fQARn56KeBDoir5_5H6ximp-jbaHrgWE6ElgjMLk0I0,3799
147
+ easy_rec/python/model/dlrm.py,sha256=niiKfparyE-sMX8DBYpdIC6ISavt3PJywPyDKrZWAFQ,3040
148
+ easy_rec/python/model/dropoutnet.py,sha256=j_q41Gjij-AV4QoNCmK7NNquvTosuAIz4E-PaSo90Ro,9858
149
+ easy_rec/python/model/dssm.py,sha256=2lrAzy7ZR9TXo4HziCMjXOcJY9uebYEKzn3o3OEdoPE,6354
150
+ easy_rec/python/model/dssm_senet.py,sha256=oV80umnXYDOH_VDgcftWfCbeG1xKbEaDb3OGUCeaeS8,5447
151
+ easy_rec/python/model/dummy_model.py,sha256=5HYr_-s-NznNFOURX_2i6SjToClodwOLmGLrolNHCuU,1471
152
+ easy_rec/python/model/easy_rec_estimator.py,sha256=NvZOoIMKCIydRQGVGtruCfRSPpqaRELs064ft8Wy_UY,29609
153
+ easy_rec/python/model/easy_rec_model.py,sha256=vinm3FeA7Z-n9d8fXRk3FySL435fN8lVq_hiJQrkOOE,17138
154
+ easy_rec/python/model/esmm.py,sha256=7OlITbUi1DK2SDbcYFNDRylh1Arv6v_BhReXnCZLmLc,9342
155
+ easy_rec/python/model/fm.py,sha256=OTeHbXpQyjYhtdosIx1qRDh7DtCcAqX-CyguKpfDLpQ,2030
156
+ easy_rec/python/model/match_model.py,sha256=RyhEdxvF1r0zdZ94wkTmapR_uRzCH6QWRBV9b6CtpWc,14403
157
+ easy_rec/python/model/mind.py,sha256=uVDJE-GnsAREavL85SV8B4itEobVRKI5irXAfFdhly0,18615
158
+ easy_rec/python/model/mmoe.py,sha256=wuVBqVDcP3GdgX6ptlP9jHzjQ82kBim4xnr60WJggl4,2468
159
+ easy_rec/python/model/multi_task_model.py,sha256=KTaWPxJ8DG9MqAWchDeMvwgtLM8x5WQgbCKitZbJFRQ,12131
160
+ easy_rec/python/model/multi_tower.py,sha256=TzADLiy2SaW6imTFENGgsUmswU4AB3f1YCgNCISXbq4,2229
161
+ easy_rec/python/model/multi_tower_bst.py,sha256=54XpH1LkCFJvKVaSWwSdfArZcz9Xbl1PhTT2kfQcxvE,7689
162
+ easy_rec/python/model/multi_tower_din.py,sha256=hhVRvTXj8rbi4m9xFaH-GCCMSqbu-EIKsBAoufhQLGQ,4887
163
+ easy_rec/python/model/multi_tower_recall.py,sha256=gQoAMQAPo520HiHnCPy4FheRzjgrcr6Fbf-yl4coga8,2561
164
+ easy_rec/python/model/pdn.py,sha256=dbec0xiOTNSdSk28VWsHSGf6EtYBUlgwBVLC7h5706Y,7081
165
+ easy_rec/python/model/ple.py,sha256=dvQYuhj_b0vJ-3-WfAsTJf9mMCDum8Ie2JtvaVpR5ME,4478
166
+ easy_rec/python/model/rank_model.py,sha256=3b6YtHePLREThaSGzjg70Zl6WxK13vTYp8c_auO1HJg,21289
167
+ easy_rec/python/model/rocket_launching.py,sha256=D3OCsQO1yA4po3cYw5vPffZJbTonGLo31QUorxZq6mM,7817
168
+ easy_rec/python/model/simple_multi_task.py,sha256=h0fSk_afk-e4VUbXh_OL9lIcV5tQXGK0becsnk4lZEE,1862
169
+ easy_rec/python/model/uniter.py,sha256=NO3p7NY_Ym-ELELBRGVH_ytadvx461bWGJCaPHQdfAk,1644
170
+ easy_rec/python/model/wide_and_deep.py,sha256=aNGwDkpaxxHictiB6sDmc2Afh_v_qC6Al-DXdqTJXsA,4509
171
+ easy_rec/python/ops/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
172
+ easy_rec/python/ops/gen_kafka_ops.py,sha256=GrvZW5F-l-5UP9YG46Tlgi2AuA6i-Zarf1p1RZ2x0MQ,6808
173
+ easy_rec/python/ops/gen_str_avx_op.py,sha256=jm7WCi_TP1ZX2OcNwk_d6vLg2lv8jmJYo7o3Zb2p2KM,935
174
+ easy_rec/python/ops/incr_record.py,sha256=R6m6cjN1pssWrE1d3IBHYB_Jp_nQkRV8AR96KIhUXRE,925
175
+ easy_rec/python/ops/1.12/incr_record.so,sha256=Thr1gcQal3SAk2ln2ilmkzN67ZjGkqWcMGbbj_nKGE4,467344
176
+ easy_rec/python/ops/1.12/kafka.so,sha256=UxFDP-y_A7cot9wRfEW1ymcHlBBNqZONHJgiGTVdy6o,569408
177
+ easy_rec/python/ops/1.12/libcustom_ops.so,sha256=O9fMXJ8fute43DDpTcdiUg5XBsc6mbgWmO-duDxAIlI,407664
178
+ easy_rec/python/ops/1.12/libembed_op.so,sha256=21F9jqQwe-1LgyiRVhrsA4pGDhpFgm4sb-dyXg4H4Kw,7496792
179
+ easy_rec/python/ops/1.12/libhiredis.so.1.0.0,sha256=MIzls9Iu4z3Kqsn3KI6pI-XaXWA03Uh3LVF38YSC2kc,297384
180
+ easy_rec/python/ops/1.12/librdkafka++.so.1,sha256=YK6Zk0_XXrNLopUopgmqszUpAe-A_F3yS6Wm-qty1HI,1623149
181
+ easy_rec/python/ops/1.12/librdkafka.so.1,sha256=VShwvQkwd7rtwEVJ63iBYWzhFdqi7x-3PlLC_NNhzEI,9284040
182
+ easy_rec/python/ops/1.12/libredis++.so,sha256=obdorfTv_BKix0IxOfNgyY0AlyUemGonDq61I0k1FkI,495000
183
+ easy_rec/python/ops/1.12/libredis++.so.1,sha256=obdorfTv_BKix0IxOfNgyY0AlyUemGonDq61I0k1FkI,495000
184
+ easy_rec/python/ops/1.12/libredis++.so.1.2.3,sha256=obdorfTv_BKix0IxOfNgyY0AlyUemGonDq61I0k1FkI,495000
185
+ easy_rec/python/ops/1.12/libstr_avx_op.so,sha256=RyrDMClblwWz1tUklOW49NI2twT9tawgxe1xpwJvDlU,40752
186
+ easy_rec/python/ops/1.12/libwrite_sparse_kv.so,sha256=wD_E7inIqvM5brsWb1RZR9_EmI8ppEazQc-r6RbW3vc,819336
187
+ easy_rec/python/ops/1.15/incr_record.so,sha256=Gt77SMu2w7tvlQItJCk1vSNmnktvzIgv9rqr71qaJLs,511664
188
+ easy_rec/python/ops/1.15/kafka.so,sha256=zXEQoGYosFEqJUUKfj_6O5sRBNwoxdzIi6VrUsaKU44,657832
189
+ easy_rec/python/ops/1.15/libcustom_ops.so,sha256=mrjAxbmHwPHPVkXmTKwQpu0DvAeKZPr28cNCh88e4UU,413064
190
+ easy_rec/python/ops/1.15/libembed_op.so,sha256=xAgQZT_FhgjZysThmbsofw5_KW6r79OFPq-11yrwr-E,7563056
191
+ easy_rec/python/ops/1.15/libhiredis.so.1.0.0,sha256=gx1cVzcShizOPrCse-dbwzQmYoheyKPrxsONJ2SHQs0,295736
192
+ easy_rec/python/ops/1.15/librdkafka++.so,sha256=0AcIb0T6K8_VKLOSJtBbwWIzbCxfnRqUOwowj_TpuYc,1901304
193
+ easy_rec/python/ops/1.15/librdkafka++.so.1,sha256=0AcIb0T6K8_VKLOSJtBbwWIzbCxfnRqUOwowj_TpuYc,1901304
194
+ easy_rec/python/ops/1.15/librdkafka.so,sha256=2Izuk9ygGLzcRKwu_6GCBPoYs5IH4kgvy6GvH1ymnx8,8872424
195
+ easy_rec/python/ops/1.15/librdkafka.so.1,sha256=2Izuk9ygGLzcRKwu_6GCBPoYs5IH4kgvy6GvH1ymnx8,8872424
196
+ easy_rec/python/ops/1.15/libredis++.so.1,sha256=9a0NAR6uOFahh2hx_tMz9-dVarZ3pAiDYbH9Yl7R3FU,575504
197
+ easy_rec/python/ops/1.15/libstr_avx_op.so,sha256=C5xQT7fDgQb700mkmMr8GvlikXFI_OawkimMFAbSn8U,45896
198
+ easy_rec/python/ops/2.12/libcustom_ops.so,sha256=B21W4wW-lZ62E45NXc-TqgMl-zOwOfdSaCCEuNCfcBA,1417928
199
+ easy_rec/python/ops/2.12/libload_embed.so,sha256=nGysn0b2NC_UqlJHOEgda9sgIIdCnNTfePDb0ieypZs,87544
200
+ easy_rec/python/ops/2.12/libstr_avx_op.so,sha256=YL8PUJU5wEq-ZWyxxrO4ZeGvIpVourzDhZuwG2JrVGI,45736
201
+ easy_rec/python/protos/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
202
+ easy_rec/python/protos/autoint_pb2.py,sha256=lmJbKerRYRcwCjal9Kiv3z-3rqxDnpXw0x3bphgsHJ4,3808
203
+ easy_rec/python/protos/backbone_pb2.py,sha256=fPh9ylRT4Q9h3I-YiuJjtoEHCNOclEOqxVE1gIDQ6RA,47017
204
+ easy_rec/python/protos/cmbf_pb2.py,sha256=9ratVYsUDMNfVLyuujoBZnGs0ClbCfovdEV30pU6mDY,14628
205
+ easy_rec/python/protos/collaborative_metric_learning_pb2.py,sha256=ZB16vYq3JapNXsf5mJwLus1cokKDGzVIjqr6SYB98dg,9324
206
+ easy_rec/python/protos/custom_model_pb2.py,sha256=CFdEPnI8YhOdUqlHM6rMvT8aaeZrpfoIUNdX5DxwLq0,1663
207
+ easy_rec/python/protos/dat_pb2.py,sha256=K6BwHCSC3BSmCua3m_kW4kHJ2chGMHE_rhhMcj0BmRk,8511
208
+ easy_rec/python/protos/data_source_pb2.py,sha256=ymvPZV3TM0Ttvzr60QOKDQdP95-KCaBnHWc9iUhMOys,13741
209
+ easy_rec/python/protos/dataset_pb2.py,sha256=TbhQPnFO6wxxff3K5XNAPGj3CRr2OfKIcChovDmFRnY,67944
210
+ easy_rec/python/protos/dbmtl_pb2.py,sha256=5KsvySAG_D2n3ZCP1VQxHB_qLKcLFgRsB7sDTJ3kOPY,6839
211
+ easy_rec/python/protos/dcn_pb2.py,sha256=5NrxE4-9EFr0kNBubxoudr5sk3pHBUc4LGDjwuZC1k4,6280
212
+ easy_rec/python/protos/deepfm_pb2.py,sha256=2UCUnBuDRGvhJ9avaKDBuTSmVoo7kCRRKcpVe9Luwf8,5353
213
+ easy_rec/python/protos/dlrm_pb2.py,sha256=i26TL_c2abDkGAWN6PrUWZlKVYmTlb2Pu6svT1_uH-Q,5357
214
+ easy_rec/python/protos/dnn_pb2.py,sha256=A7lIWyCHRjnLjLpTUzTwP3kg1reCKb3lfXtc0gsl2XQ,10342
215
+ easy_rec/python/protos/dropoutnet_pb2.py,sha256=ojIdsAWggYatJFjQjTf_k1muRBcgt8mkb5QYxQk-1-w,8494
216
+ easy_rec/python/protos/dssm_pb2.py,sha256=xSrpd6VNacB9_bg2OBAg4-4bOc5oXu9JlqL7VFixW1Q,8506
217
+ easy_rec/python/protos/dssm_senet_pb2.py,sha256=WtC7FEy7wdUmZu9KAPR8cStCUinnSD_3q2wEd78OCqg,9660
218
+ easy_rec/python/protos/easy_rec_model_pb2.py,sha256=RryzyvCbrGmj5eRePRUIgaaZtKCgOEfDUrLfUj_5fR0,66454
219
+ easy_rec/python/protos/esmm_pb2.py,sha256=IVyrpBnDGdtWw8oGrVuLLuUMTbLi4iMDc_ktnM_lMFk,4301
220
+ easy_rec/python/protos/eval_pb2.py,sha256=OPiGZ6dyBXXLbtH2drsoFhdtVkPw7PDt90sC47igY6c,29411
221
+ easy_rec/python/protos/export_pb2.py,sha256=AnT0r9wVugFYkiq0WVp8gxU_fik7iWRGXEw8cGpDnP0,12713
222
+ easy_rec/python/protos/feature_config_pb2.py,sha256=BeXwMt-6aPIp7L2bv89ThxXd84xDegduoYubGJaOfVI,46964
223
+ easy_rec/python/protos/fm_pb2.py,sha256=cbd_JFf8APSTUN_F_8OKpdyFS770fCGSU3aNooBEVJ8,2620
224
+ easy_rec/python/protos/hive_config_pb2.py,sha256=4rUQgZgUSngQAHT2PCDfPAgmlKog1UBX2lTY57Znq38,4377
225
+ easy_rec/python/protos/hyperparams_pb2.py,sha256=7OX0Nn88Xkb8w1aSusJpvPGdfQspaRkoHQbFVdKRB9o,20623
226
+ easy_rec/python/protos/keras_layer_pb2.py,sha256=FHJaLnbtT6s8JLuEzaDf3j6vayPzuYqbt1dzO_VhaGw,27008
227
+ easy_rec/python/protos/layer_pb2.py,sha256=7G_h_ifKR0X5L3mmHPgbzbpO_EybciabC-zenjKkVdU,61095
228
+ easy_rec/python/protos/loss_pb2.py,sha256=8EbbOJmXbD4WrKDH9SjtcclbXYtklGtp0305mUATHt8,57811
229
+ easy_rec/python/protos/mind_pb2.py,sha256=sMmtda_wgz55oc76QViCNRKTgGgzLv_fAUKKlxan-8M,16697
230
+ easy_rec/python/protos/mmoe_pb2.py,sha256=NrrE67zXgBRZCNgqSGmHoMus7DdF4sRU23Ec1ei1AFY,6971
231
+ easy_rec/python/protos/multi_tower_pb2.py,sha256=UZ9J9eugEgcFC5RA3slY4VM6C7QDB66B9co59FtmKBM,9463
232
+ easy_rec/python/protos/multi_tower_recall_pb2.py,sha256=vokI-oWt_LJlwtpIkmd04EMqOZi1IeUDyHUMjX5YMcQ,6716
233
+ easy_rec/python/protos/optimizer_pb2.py,sha256=aSeJcYEjepyFiqEg9wVH1lVRIDN03MvsY3qtugtjq6g,69624
234
+ easy_rec/python/protos/pdn_pb2.py,sha256=-UKsDKMei8LNkYeClEUiY1AkCMN7YaYskPa6o-oPVOM,10043
235
+ easy_rec/python/protos/pipeline_pb2.py,sha256=eS3tHU93srC5ORW2tqsOo6bpEwGyG5tfzKi-MHXQAQE,21007
236
+ easy_rec/python/protos/ple_pb2.py,sha256=33yLALlLfQVQVLu7uHdIqF4qB5Uun9XcxkBDtQUP2mM,7757
237
+ easy_rec/python/protos/predict_pb2.py,sha256=S7pe5DNUA5jGUsUp3HrMSxf41tj53kTja6zVgARWDfU,41100
238
+ easy_rec/python/protos/rocket_launching_pb2.py,sha256=KLEfjqzloI742ioFcTD7DfLU2kMbtwCjpU_CoxjGCeE,6114
239
+ easy_rec/python/protos/seq_encoder_pb2.py,sha256=hdXSNG0JZkRfsJ7h7YXXFfnOLOCHcpCe5CBs8ncVpes,35895
240
+ easy_rec/python/protos/simi_pb2.py,sha256=1CZLiYI7kfjGIImgpbi-fazaZAT81a1q9NBuwnFz87A,1809
241
+ easy_rec/python/protos/simple_multi_task_pb2.py,sha256=W1DCuwThJo8wVz8McOLx3ieyImMx4X-2Y8rOvwxT6hs,3221
242
+ easy_rec/python/protos/tf_predict_pb2.py,sha256=AMxOJJyfuO1iNy-mnTUClWthDbeap1ELqAub5nclDQQ,23328
243
+ easy_rec/python/protos/tower_pb2.py,sha256=mzHEERAdnq3x22A6I8QL01dBFhDSh-0aLpMPM6nTrOQ,22717
244
+ easy_rec/python/protos/train_pb2.py,sha256=8teg9b0hVeBma9qY5sVSPhyByMymajtIWgtwUjTL8M8,42109
245
+ easy_rec/python/protos/uniter_pb2.py,sha256=UVVdrlyBGpyGQwfHarv3cHlRQJOZ59xZmksrUFr2DCU,10151
246
+ easy_rec/python/protos/variational_dropout_pb2.py,sha256=-IAULFK3vko1aunXrU8IYQCf90dcG4k2ykw1OMCGQj0,3044
247
+ easy_rec/python/protos/wide_and_deep_pb2.py,sha256=yym8ERHM669HAQNHFhmlrki4CT8kRIYqBRDLv_VtP9s,4310
248
+ easy_rec/python/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
249
+ easy_rec/python/test/csv_input_test.py,sha256=X-O4FAvHr3oEexhtKJOMh14VDYqSl8Iv-tJN_NpFz5M,11871
250
+ easy_rec/python/test/custom_early_stop_func.py,sha256=x6rmVLkFdc7ro5QpOXhUvWWay_-IE6gJfpEHhVsLBIs,554
251
+ easy_rec/python/test/dh_local_run.py,sha256=He-NadloeC80_h_K4OeS05qvWVrXQsp2_sEQfFM5RgA,3581
252
+ easy_rec/python/test/embed_test.py,sha256=QhCyw0Ggm-WrK_mkTxQ-_dIC2LEJAVerBJuHsvpB3jc,4874
253
+ easy_rec/python/test/emr_run.py,sha256=AY8uhe24chqYOZaMGCGpVslUv2CNTXJ0f9USI2FFU9s,4231
254
+ easy_rec/python/test/eval_metric_test.py,sha256=ldZUtXJkJL0qySlRBvH4Blyn0IfG8V99wVJLJ_Ig5nQ,3639
255
+ easy_rec/python/test/excel_convert_test.py,sha256=DlB_PPfVCl40mYaqZu3-3TbpAWpCRnu5cQQRqhWd8Uc,2217
256
+ easy_rec/python/test/export_test.py,sha256=MJtFUHiZaNqVGvkAUDXObxC4xMZh8Bbxr8B4e-VxYuE,18954
257
+ easy_rec/python/test/fg_test.py,sha256=MnfjlxDQTWwP9_sEJEnYsIhN4VQ7s9FSOavyDDWqTYA,2354
258
+ easy_rec/python/test/hive_input_test.py,sha256=cqkX1P5rdw3k7yTWX6Ekz_OBkuiB4EtCMs6zdz2C6bE,10113
259
+ easy_rec/python/test/hpo_test.py,sha256=GUQPhHz1xsFAAHftGFUQWQIwKIaecxKn9MC_eYROUH8,10735
260
+ easy_rec/python/test/kafka_test.py,sha256=hPWZLdGvoEYfzs2y0JHnN0eILfGJl9xRvGZAR3u-1gw,12918
261
+ easy_rec/python/test/local_incr_test.py,sha256=pba4DzyFoOPDRFOj208CpGNcQlqi9Styxp39dAP17kg,4506
262
+ easy_rec/python/test/loss_test.py,sha256=Mxxiaqd2UKGLP22-A4FMfLoPxeFANghnP3a3Rd_rx1E,4533
263
+ easy_rec/python/test/odps_command.py,sha256=iy6vFtV0NsI7olZQ-Iaqp9QaPu_qiJgANXcUMkHJsmQ,2105
264
+ easy_rec/python/test/odps_local_run.py,sha256=Gy62OOIk_ZcFIs3ZOfBMZyBBi38eTbS2Jx5Hi5sQhUo,2912
265
+ easy_rec/python/test/odps_run.py,sha256=MUPr4iAJR2f_6u_2G-4zoLQ8M7ZpxwWmrlcReW-OCRI,9150
266
+ easy_rec/python/test/odps_test_cls.py,sha256=j92uDyaNiLYLb7LGbn7_TH5i7nZlokpDDtrAunptIiE,1092
267
+ easy_rec/python/test/odps_test_prepare.py,sha256=N6ukVIvJ5Uw2KP-vnecR7bDGPTkyIPaLP7RZR1t-Kr0,6976
268
+ easy_rec/python/test/odps_test_util.py,sha256=o8iYjoPAHw8heRkDE60LrBSJ7i4oFSEvVh5oxXQATaE,8066
269
+ easy_rec/python/test/pre_check_test.py,sha256=ayoQmCzZmZUj5ZSrD8RSs20_8j7Pxc7kArcbwrKjEio,1533
270
+ easy_rec/python/test/predictor_test.py,sha256=Dn6ks5GYih9QabIcm7YWjBn-vv_g2svniQBC7BjjXs8,15383
271
+ easy_rec/python/test/rtp_convert_test.py,sha256=Xyx8zjja_5iaYKj9kMnQ8Na-yxLdfgu8b4eywR77AZE,4960
272
+ easy_rec/python/test/run.py,sha256=bONG_uKaF69AEdzA4DPz_MUr11wfPSi6xiXQ_qSOkVA,5066
273
+ easy_rec/python/test/train_eval_test.py,sha256=U2sUJyVKWLZLHOlO6iPXqUiwAZPfOauwkD-4EAsbPf0,52217
274
+ easy_rec/python/test/util_test.py,sha256=bOp8cDpIovBOvhk9ILPs3r5C7WIieM8iD7auHPwqPDU,3163
275
+ easy_rec/python/test/zero_inflated_lognormal_test.py,sha256=8HiuwdjN2OksJxPM5Hbr6o9Zn7nVycJ_F1KxREqcvx4,1650
276
+ easy_rec/python/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
277
+ easy_rec/python/tools/add_boundaries_to_config.py,sha256=AgVVVUGdMJ2X5U6HoogD7l1RQP0foO24Bp2msHHzW-U,2171
278
+ easy_rec/python/tools/add_feature_info_to_config.py,sha256=nSdWmvGrQs4KYPe1F4sgoKnyV2GLSi1pteb6Vd1_9vo,5668
279
+ easy_rec/python/tools/convert_config_format.py,sha256=duvNWd8qp3n27Mmpu2kAQrRKwAa8b7CGAzD-EH1JcXI,1548
280
+ easy_rec/python/tools/convert_rtp_data.py,sha256=KOOfIhSCjlhQf2moWRQbCBf1h9kQOOivGZTKxouq-Ik,2317
281
+ easy_rec/python/tools/convert_rtp_fg.py,sha256=U16mGKqg-RhBcp-DGj1kXkhkaaZtY9A54Wi3-n8SIbs,3831
282
+ easy_rec/python/tools/create_config_from_excel.py,sha256=qu_4YGLdhjQlzxTIMSm-1sVL6Izc9CG5Pzu8VzlzaS8,14678
283
+ easy_rec/python/tools/edit_lookup_graph.py,sha256=Tr1c_ej106XWSKX2pRHryBjYUofD_paMlmk3lV6adE4,5277
284
+ easy_rec/python/tools/faiss_index_pai.py,sha256=OT-kPitRJPWLX8Ez9R5jZz7y3-Px_pvUWxAOwSHTpRs,4155
285
+ easy_rec/python/tools/feature_selection.py,sha256=AE9VcY4uERkjrg_QhZ-5y68knwuN4zoEgC6NTP45CEs,12478
286
+ easy_rec/python/tools/hit_rate_ds.py,sha256=BdkgoSnhITtgPcABamTXKbRINkqHCyCYo_LlGPCpXQ4,8526
287
+ easy_rec/python/tools/hit_rate_pai.py,sha256=TLm1NKy5EZb9dIYisK70nW756i7itVn6FqjWeuoW_Gw,5350
288
+ easy_rec/python/tools/pre_check.py,sha256=UTqlnqEiY66MXESpqxDrC12-xs16IZSGO2L3sMqHYLY,3823
289
+ easy_rec/python/tools/predict_and_chk.py,sha256=A47x3mkB96jNBMUsi_l328g6AF4Nl_ibpz7Luf-HEjo,3506
290
+ easy_rec/python/tools/read_kafka.py,sha256=dfw8a4DAYPcuKLM6jwZGuZOIXr8zM_0xF04e6gUDhss,1756
291
+ easy_rec/python/tools/split_model_pai.py,sha256=v_5O89CGtM_BZurMm2oGSywJPkMFdtUj-hWxVqcWPmw,9953
292
+ easy_rec/python/tools/split_pdn_model_pai.py,sha256=cZrs9YVXVL9l2MUCWzni2k8M5-vPn6fpSO55dolO530,9308
293
+ easy_rec/python/tools/test_saved_model.py,sha256=t_fb6c83sFhbo0C_Zkrr9rIKXSs3y91LLW9kFxmWK7c,2837
294
+ easy_rec/python/tools/view_saved_model.py,sha256=wdiFmgFSMag8HCmC9QOadOqlNrcpXt-4yLR4RdzTE6A,1286
295
+ easy_rec/python/tools/write_kafka.py,sha256=UlmU3R0y5JjLASGVDDSoH8BQoHCDSpFdtp1rUuOPV3g,1957
296
+ easy_rec/python/tools/criteo/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
297
+ easy_rec/python/tools/criteo/convert_data.py,sha256=_An9NTZkyL0zACpyJuK161zgEsrB5acsL1Dhuwt5_fI,5062
298
+ easy_rec/python/utils/__init__.py,sha256=2r_PvhqME3KQUdwhWmDfBPH3A_jjDL3TU6XZtQ-O9a0,469
299
+ easy_rec/python/utils/activation.py,sha256=bK1uHaht5j0TAfqwfQskN7KBERYDTrzvvL7gPwPh4yc,3440
300
+ easy_rec/python/utils/check_utils.py,sha256=IBOUdAyFIFfNsRBHFpSGRMjD-meONnNZ5CTrLOKWzX4,3202
301
+ easy_rec/python/utils/compat.py,sha256=CtiVFib78a7Vvv0g5NrXVCpeZPHMWm1PQ3yea7lZUBI,261
302
+ easy_rec/python/utils/config_util.py,sha256=FFFO36YT9CgCZtdP6Q2raLOUvpzPLVQjSNoBW8m-r2o,22509
303
+ easy_rec/python/utils/constant.py,sha256=S5oy9_cjbdE1wt7dKzjZEnuaFDoATi2aLvFyxIxeEXE,1182
304
+ easy_rec/python/utils/convert_rtp_fg.py,sha256=utHUKGrfWZpiblLup2ajJWWzmPe1OkH1g-HuEthKolE,22762
305
+ easy_rec/python/utils/dag.py,sha256=e0lfrnWYBAYxqCv9AM9pzMAwCPV2Ctn6J7dZia_T_W0,5933
306
+ easy_rec/python/utils/distribution_utils.py,sha256=gJ1OSTybqR1nAcr-3eJzKProKQRi3nnGbvaSpfBRUUk,10562
307
+ easy_rec/python/utils/ds_util.py,sha256=tCKLDLEbKB-B3uY7c4vqJNiNqACBdlWt8Vhz82VA5rw,2435
308
+ easy_rec/python/utils/embedding_utils.py,sha256=_mLCbRTOFBcCRdoy9dRQ3raESDTunexg-3OV0oqeY7E,1853
309
+ easy_rec/python/utils/estimator_utils.py,sha256=vqI_70Xc_jGNMTJTvZV833GaNnT9low39QVDwuWh4IM,37369
310
+ easy_rec/python/utils/export_big_model.py,sha256=TQL1wl9ZtwDtnW05wzqyl-VoAMuUWdkV-_odpuSNCTs,24005
311
+ easy_rec/python/utils/expr_util.py,sha256=SEvtIjZ-jra9k1b13QLQydbXm_j9PE7MRjC25zWML_k,3061
312
+ easy_rec/python/utils/fg_util.py,sha256=0dg3O4o9ECFHknqhgXzvNOs1A5oWI5mZQOL9XvdsKyY,1708
313
+ easy_rec/python/utils/hit_rate_utils.py,sha256=FEgPOnODOEnRUd0IqfHi-0oGnLT7fJ2XvUFRAeUo15o,7399
314
+ easy_rec/python/utils/hive_utils.py,sha256=NgjqKbGgz8VwzAHtXEo_dqVARBNOspxjYaYCUZnX5Cw,5149
315
+ easy_rec/python/utils/hpo_util.py,sha256=Mwfdy6meWmvUDU0STiOBCrvFXsAnDcrHCdLdbbpe5TY,4883
316
+ easy_rec/python/utils/hvd_utils.py,sha256=LaagUFlaTx1TGwYlU5DnitY-Ivvy8rUklbxsmNwkIA4,2033
317
+ easy_rec/python/utils/input_utils.py,sha256=l4PTV1Dc5VGFZKTHhn9QOCZNUJqRgatA_EPDOUWPF_4,3391
318
+ easy_rec/python/utils/io_util.py,sha256=wLxXqptGyZGr1JJuzceNBDsGUCbj41dGvGlr9Zgtq2s,7775
319
+ easy_rec/python/utils/load_class.py,sha256=sctWda5tvdHNH8SW0SWT6SdZmWBbZ8-PxsHn0HLQ6hU,7359
320
+ easy_rec/python/utils/meta_graph_editor.py,sha256=rNA6hA4QS1Ng5K86R7OCDeHp3WocKNKcoAcJnTHaVBA,37538
321
+ easy_rec/python/utils/multi_optimizer.py,sha256=dUDiQwq-phGYKweFMp4wJFyTL74lrXHrUMhJspZHDYo,1990
322
+ easy_rec/python/utils/numpy_utils.py,sha256=I5CsPUL_OtxijOOnLqjb2K-J7-dZW5E44mZB7qCRDJY,439
323
+ easy_rec/python/utils/odps_util.py,sha256=Hj_frm8b76_JjVafkGFnzmnHbPYcUkMSaI2-k0ZH1uU,2669
324
+ easy_rec/python/utils/pai_util.py,sha256=NNafGyjA5BsrAmljFiKOaOIsZCRwbSFg39S9mipvwa8,2133
325
+ easy_rec/python/utils/proto_util.py,sha256=w62IiiykBeShrJ5NWrn1NuAdCDTBlC_clMSTwswrpmQ,2937
326
+ easy_rec/python/utils/restore_filter.py,sha256=5aYpibnJXL9bykvXYlnxGa_Uekzk04RTJDhmm-1jbuM,1984
327
+ easy_rec/python/utils/shape_utils.py,sha256=S2Wf1Bv078OEVqNUMo-hAxP9JWG2uXAJD3pgQGtHh4Q,14198
328
+ easy_rec/python/utils/static_shape.py,sha256=eR86HPsdRXWDgJ44uVMCoo_r5NC0Ly7SJzdnrjELFAU,1919
329
+ easy_rec/python/utils/test_utils.py,sha256=mNEe9dE64Rm0RrWjE0efnjiE7m1y-9SSWfNEWi95yq8,31267
330
+ easy_rec/python/utils/tf_utils.py,sha256=iwMEmYAI7qgxYN-sTSpp4C-nRwkIrNs7q7964LdU-5g,1422
331
+ test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
332
+ easy_cs_rec_custommodel-0.8.6.dist-info/LICENSE,sha256=OyDcOV2wM1PYMf438Gvr-4xvoLgYIFzUoAWa8zCfoWU,11416
333
+ easy_cs_rec_custommodel-0.8.6.dist-info/METADATA,sha256=YebT9hk3N7nH4o6NNnhhmfpSITG5zp-1vY__S_xXqaE,1806
334
+ easy_cs_rec_custommodel-0.8.6.dist-info/WHEEL,sha256=OpXWERl2xLPRHTvd2ZXo_iluPEQd8uSbYkJ53NAER_Y,109
335
+ easy_cs_rec_custommodel-0.8.6.dist-info/top_level.txt,sha256=4l19URo4BRCGC0fzDqg9Vh3jmDwpFo8JAJAzcKpofJQ,14
336
+ easy_cs_rec_custommodel-0.8.6.dist-info/RECORD,,
@@ -0,0 +1,6 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (75.3.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py2-none-any
5
+ Tag: py3-none-any
6
+
@@ -0,0 +1,2 @@
1
+ easy_rec
2
+ test