openpoints 0.1.0__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.
Files changed (184) hide show
  1. openpoints/__init__.py +3 -0
  2. openpoints/cpp/__init__.py +6 -0
  3. openpoints/cpp/chamfer_dist/__init__.py +110 -0
  4. openpoints/cpp/chamfer_dist/setup.py +19 -0
  5. openpoints/cpp/chamfer_dist/test.py +34 -0
  6. openpoints/cpp/emd/__init__.py +3 -0
  7. openpoints/cpp/emd/emd.py +88 -0
  8. openpoints/cpp/emd/setup.py +27 -0
  9. openpoints/cpp/emd/test_emd_loss.py +45 -0
  10. openpoints/cpp/pointnet2_batch/__init__.py +24 -0
  11. openpoints/cpp/pointnet2_batch/setup.py +23 -0
  12. openpoints/cpp/pointops/__init__.py +0 -0
  13. openpoints/cpp/pointops/functions/__init__.py +0 -0
  14. openpoints/cpp/pointops/functions/pointops.py +314 -0
  15. openpoints/cpp/pointops/setup.py +37 -0
  16. openpoints/cpp/pointops/src/__init__.py +0 -0
  17. openpoints/dataset/__init__.py +10 -0
  18. openpoints/dataset/atom3d/__init__.py +1 -0
  19. openpoints/dataset/atom3d/psr.py +38 -0
  20. openpoints/dataset/build.py +98 -0
  21. openpoints/dataset/data_util.py +192 -0
  22. openpoints/dataset/datalist.py +67 -0
  23. openpoints/dataset/dataset_base.py +96 -0
  24. openpoints/dataset/graph_dataset/__init__.py +3 -0
  25. openpoints/dataset/graph_dataset/graph_dataset.py +93 -0
  26. openpoints/dataset/graph_dataset/stack_with_pad.py +91 -0
  27. openpoints/dataset/graph_dataset/structural_dataset.py +73 -0
  28. openpoints/dataset/graph_dataset/svd_encodings_dataset.py +110 -0
  29. openpoints/dataset/grid_sample.py +21 -0
  30. openpoints/dataset/matterport3d/__init__.py +1 -0
  31. openpoints/dataset/matterport3d/category_mapping.tsv +1660 -0
  32. openpoints/dataset/matterport3d/matterport3d.py +210 -0
  33. openpoints/dataset/matterport3d/matterport3d_dataprocessing.py +105 -0
  34. openpoints/dataset/modelnet/__init__.py +3 -0
  35. openpoints/dataset/modelnet/modelnet40_normal_resampled_loader.py +124 -0
  36. openpoints/dataset/modelnet/modelnet40_ply_2048_loader.py +160 -0
  37. openpoints/dataset/molhiv/__init__.py +1 -0
  38. openpoints/dataset/molhiv/data.py +59 -0
  39. openpoints/dataset/molpcba/__init__.py +1 -0
  40. openpoints/dataset/molpcba/data.py +59 -0
  41. openpoints/dataset/parsers/__init__.py +1 -0
  42. openpoints/dataset/parsers/class_map.py +19 -0
  43. openpoints/dataset/parsers/constants.py +1 -0
  44. openpoints/dataset/parsers/parser.py +17 -0
  45. openpoints/dataset/parsers/parser_factory.py +29 -0
  46. openpoints/dataset/parsers/parser_image_folder.py +69 -0
  47. openpoints/dataset/parsers/parser_image_in_tar.py +222 -0
  48. openpoints/dataset/parsers/parser_image_tar.py +72 -0
  49. openpoints/dataset/parsers/parser_tfds.py +297 -0
  50. openpoints/dataset/pcqm4m/__init__.py +1 -0
  51. openpoints/dataset/pcqm4m/data.py +62 -0
  52. openpoints/dataset/pcqm4mv2/__init__.py +1 -0
  53. openpoints/dataset/pcqm4mv2/data.py +87 -0
  54. openpoints/dataset/s3dis/__init__.py +2 -0
  55. openpoints/dataset/s3dis/s3dis.py +156 -0
  56. openpoints/dataset/s3dis/s3dis_block.py +96 -0
  57. openpoints/dataset/s3dis/s3dis_sphere.py +349 -0
  58. openpoints/dataset/scannetv2/__init__.py +1 -0
  59. openpoints/dataset/scannetv2/scannet.py +176 -0
  60. openpoints/dataset/scanobjectnn/__init__.py +3 -0
  61. openpoints/dataset/scanobjectnn/scanobjectnn.py +110 -0
  62. openpoints/dataset/semantic_kitti/__init__.py +1 -0
  63. openpoints/dataset/semantic_kitti/helper_tool.py +286 -0
  64. openpoints/dataset/semantic_kitti/label_mapping.yaml +211 -0
  65. openpoints/dataset/semantic_kitti/semantickitti.py +229 -0
  66. openpoints/dataset/semantic_kitti/utils/meta/anno_paths.txt +272 -0
  67. openpoints/dataset/semantic_kitti/utils/meta/class_names.txt +13 -0
  68. openpoints/dataset/semantic_kitti/utils/semantic-kitti.yaml +211 -0
  69. openpoints/dataset/shapenet/__init__.py +1 -0
  70. openpoints/dataset/shapenet/shapenet55.py +76 -0
  71. openpoints/dataset/shapenet/shapenetpart.py +121 -0
  72. openpoints/dataset/shapenetpart/__init__.py +1 -0
  73. openpoints/dataset/shapenetpart/shapenet55.py +75 -0
  74. openpoints/dataset/shapenetpart/shapenetpart.py +388 -0
  75. openpoints/dataset/vis2d.py +17 -0
  76. openpoints/dataset/vis3d.py +153 -0
  77. openpoints/loss/__init__.py +3 -0
  78. openpoints/loss/build.py +281 -0
  79. openpoints/loss/cross_entropy.py +38 -0
  80. openpoints/loss/distill_loss.py +76 -0
  81. openpoints/models/__init__.py +10 -0
  82. openpoints/models/backbone/Stratified_transformer.py +558 -0
  83. openpoints/models/backbone/__init__.py +11 -0
  84. openpoints/models/backbone/baafnet.py +527 -0
  85. openpoints/models/backbone/ball_dgcnn.py +123 -0
  86. openpoints/models/backbone/curvenet.py +793 -0
  87. openpoints/models/backbone/debug_invvit.py +114 -0
  88. openpoints/models/backbone/deepgcn.py +143 -0
  89. openpoints/models/backbone/dgcnn.py +119 -0
  90. openpoints/models/backbone/graphvit3d.py +134 -0
  91. openpoints/models/backbone/grouppointnet.py +100 -0
  92. openpoints/models/backbone/pct.py +163 -0
  93. openpoints/models/backbone/pointmlp.py +417 -0
  94. openpoints/models/backbone/pointnet.py +199 -0
  95. openpoints/models/backbone/pointnetv2.py +511 -0
  96. openpoints/models/backbone/pointnext.py +663 -0
  97. openpoints/models/backbone/pointnextPyG.py +555 -0
  98. openpoints/models/backbone/pointtransformer.py +293 -0
  99. openpoints/models/backbone/pointvector.py +853 -0
  100. openpoints/models/backbone/pointvit.py +392 -0
  101. openpoints/models/backbone/pointvit_inv.py +942 -0
  102. openpoints/models/backbone/pointvit_inv_old.py +784 -0
  103. openpoints/models/backbone/randlenet.py +318 -0
  104. openpoints/models/backbone/resnet.py +342 -0
  105. openpoints/models/backbone/simpleview.py +153 -0
  106. openpoints/models/backbone/simpleview_util.py +292 -0
  107. openpoints/models/build.py +13 -0
  108. openpoints/models/classification/__init__.py +5 -0
  109. openpoints/models/classification/cls_base.py +136 -0
  110. openpoints/models/classification/point_bert.py +154 -0
  111. openpoints/models/layers/__init__.py +14 -0
  112. openpoints/models/layers/activation.py +57 -0
  113. openpoints/models/layers/attention.py +103 -0
  114. openpoints/models/layers/conv.py +167 -0
  115. openpoints/models/layers/drop.py +164 -0
  116. openpoints/models/layers/graph_conv.py +122 -0
  117. openpoints/models/layers/group.py +415 -0
  118. openpoints/models/layers/group_embed.py +286 -0
  119. openpoints/models/layers/helpers.py +43 -0
  120. openpoints/models/layers/kmeans.py +119 -0
  121. openpoints/models/layers/knn.py +110 -0
  122. openpoints/models/layers/local_aggregation.py +286 -0
  123. openpoints/models/layers/mlp.py +129 -0
  124. openpoints/models/layers/norm.py +106 -0
  125. openpoints/models/layers/padding.py +56 -0
  126. openpoints/models/layers/patch_embed.py +37 -0
  127. openpoints/models/layers/registry.py +168 -0
  128. openpoints/models/layers/subsample.py +185 -0
  129. openpoints/models/layers/upsampling.py +106 -0
  130. openpoints/models/layers/weight_init.py +89 -0
  131. openpoints/models/reconstruction/__init__.py +8 -0
  132. openpoints/models/reconstruction/base_recontruct.py +216 -0
  133. openpoints/models/reconstruction/maskedpoint.py +116 -0
  134. openpoints/models/reconstruction/maskedpointgroup.py +168 -0
  135. openpoints/models/reconstruction/maskedpointvit.py +253 -0
  136. openpoints/models/reconstruction/nodeshuffle.py +11 -0
  137. openpoints/models/registry.py +149 -0
  138. openpoints/models/segmentation/__init__.py +6 -0
  139. openpoints/models/segmentation/base_seg.py +278 -0
  140. openpoints/models/segmentation/vit_seg.py +126 -0
  141. openpoints/optim/__init__.py +15 -0
  142. openpoints/optim/adabelief.py +201 -0
  143. openpoints/optim/adafactor.py +167 -0
  144. openpoints/optim/adahessian.py +156 -0
  145. openpoints/optim/adamp.py +105 -0
  146. openpoints/optim/adamw.py +122 -0
  147. openpoints/optim/lamb.py +192 -0
  148. openpoints/optim/lars.py +135 -0
  149. openpoints/optim/lookahead.py +61 -0
  150. openpoints/optim/madgrad.py +184 -0
  151. openpoints/optim/nadam.py +92 -0
  152. openpoints/optim/nvnovograd.py +120 -0
  153. openpoints/optim/optim_factory.py +306 -0
  154. openpoints/optim/radam.py +89 -0
  155. openpoints/optim/rmsprop_tf.py +139 -0
  156. openpoints/optim/sgdp.py +70 -0
  157. openpoints/scheduler/__init__.py +8 -0
  158. openpoints/scheduler/cosine_lr.py +124 -0
  159. openpoints/scheduler/multistep_lr.py +65 -0
  160. openpoints/scheduler/plateau_lr.py +113 -0
  161. openpoints/scheduler/poly_lr.py +116 -0
  162. openpoints/scheduler/scheduler.py +110 -0
  163. openpoints/scheduler/scheduler_factory.py +118 -0
  164. openpoints/scheduler/step_lr.py +65 -0
  165. openpoints/scheduler/tanh_lr.py +117 -0
  166. openpoints/transforms/__init__.py +7 -0
  167. openpoints/transforms/point_transform_cpu.py +332 -0
  168. openpoints/transforms/point_transformer_gpu.py +764 -0
  169. openpoints/transforms/transforms_factory.py +60 -0
  170. openpoints/utils/__init__.py +8 -0
  171. openpoints/utils/ckpt_util.py +438 -0
  172. openpoints/utils/config.py +113 -0
  173. openpoints/utils/dist_utils.py +54 -0
  174. openpoints/utils/logger.py +170 -0
  175. openpoints/utils/metrics.py +311 -0
  176. openpoints/utils/random.py +16 -0
  177. openpoints/utils/registry.py +294 -0
  178. openpoints/utils/str2bool.py +11 -0
  179. openpoints/utils/wandb.py +88 -0
  180. openpoints-0.1.0.dist-info/METADATA +150 -0
  181. openpoints-0.1.0.dist-info/RECORD +184 -0
  182. openpoints-0.1.0.dist-info/WHEEL +5 -0
  183. openpoints-0.1.0.dist-info/licenses/LICENSE +21 -0
  184. openpoints-0.1.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,184 @@
1
+ openpoints/__init__.py,sha256=kZgy5hTU_rmQgXm_asllSWqFsYAHP5mObtPgsO8_vyk,49
2
+ openpoints/cpp/__init__.py,sha256=5-AqMv78a4A_2kMQDEnhpbJ0sYhmZXNAfwDf0mTv5B0,71
3
+ openpoints/cpp/chamfer_dist/__init__.py,sha256=PcHxFW5XYlUnLz3EPfMLYf2pXC-uLDaqKGJimthvzEs,3681
4
+ openpoints/cpp/chamfer_dist/setup.py,sha256=4hKme0fQWunH7rI5qZKVTSfGWM3jvisDaBI3R5EgyVA,515
5
+ openpoints/cpp/chamfer_dist/test.py,sha256=fEBXmibtIFiLNJDPz5SZ4LIV8yp4zBZyuMmM8PKrfPA,911
6
+ openpoints/cpp/emd/__init__.py,sha256=s3J5ISFb3UtxE9NaEUfax0SkJZIccanFZ4MaSvMhd8s,63
7
+ openpoints/cpp/emd/emd.py,sha256=FwttGbdhIWwUyZJUR7UR_sdVrAA9HglYDSf61Us1fDQ,2669
8
+ openpoints/cpp/emd/setup.py,sha256=rChMZt80bqbW6qf_OPsIUgwjmDMkn1WPcYk-K-V_FQU,642
9
+ openpoints/cpp/emd/test_emd_loss.py,sha256=td_OCKs8-6JfKQ9lNUmN3bqFDUyPKW8qcN6rif8oamE,1223
10
+ openpoints/cpp/pointnet2_batch/__init__.py,sha256=sJC-utyJASRXORDthc01eg-j0LhRzTLLQsDaQQHkPso,805
11
+ openpoints/cpp/pointnet2_batch/setup.py,sha256=J0zkjAebQI95x3Paj0rCrxeI0efFT3HeTQ7yKQ5Ugyg,638
12
+ openpoints/cpp/pointops/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
13
+ openpoints/cpp/pointops/setup.py,sha256=x5z7wm2NYfj6OiQVmZCiEMfKlv9xp-S659YTl2Kr4pY,1337
14
+ openpoints/cpp/pointops/functions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
15
+ openpoints/cpp/pointops/functions/pointops.py,sha256=ZG__oZQMWX3ORwoLc7hC-xKqQMbxDXCBl9jRbGOBGts,11375
16
+ openpoints/cpp/pointops/src/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
17
+ openpoints/dataset/__init__.py,sha256=f9oOQAhKJ1cQmVGlFwVGkqqyPrLDuPNKIvAViaz-P6E,385
18
+ openpoints/dataset/build.py,sha256=IQ5uZ2pgEiR7oZqVJXZmu_cj-6f_bNOXb52DlUR8CqY,4154
19
+ openpoints/dataset/data_util.py,sha256=1Ta6f3ekliwjtUiK_hNmv3N7IaOJ9iHAOPDHkM6OTnI,6657
20
+ openpoints/dataset/datalist.py,sha256=0ro_E60Jex8hxKSFZGMH_vs9AROawYdKVbTFT-3osx0,2326
21
+ openpoints/dataset/dataset_base.py,sha256=yWxIc5nsrVD29MZGUybIIjRtwe3CbvE7mtETEiMPO18,3362
22
+ openpoints/dataset/grid_sample.py,sha256=cF8h4PyRChcWczx4sXXUJif5G_n0fn4yV8UYaiBUBng,1131
23
+ openpoints/dataset/vis2d.py,sha256=kjSL7De7Bhhl2W6wkp5qXpcHyDyX4KxwQSVMA1W8aL0,504
24
+ openpoints/dataset/vis3d.py,sha256=iz7lQW4DRN7Q3-Ph6122yycKDn2Fcrx6WiMsLZcLoAo,5223
25
+ openpoints/dataset/atom3d/__init__.py,sha256=40m47ULo_Un8GeYarts0AvxV5WIEK1jql9FKKfosBAc,38
26
+ openpoints/dataset/atom3d/psr.py,sha256=KK3mxjFg4eFxlK2vs7gMXvalVcI5x8Cjom3wxdMMtBo,1416
27
+ openpoints/dataset/graph_dataset/__init__.py,sha256=kGN5qgH8kt95itnXPy4z7yM_bJYxxzAyTYB3ryNcbmk,169
28
+ openpoints/dataset/graph_dataset/graph_dataset.py,sha256=2SrfJt_9yHRCIyIf_K2LwzuZYhZDmJw8Uc09G9xjMRs,3269
29
+ openpoints/dataset/graph_dataset/stack_with_pad.py,sha256=Od_GeMNifI3wzXLjBr41kk3xv3CqUzEi3XEdg_d3SGI,2480
30
+ openpoints/dataset/graph_dataset/structural_dataset.py,sha256=L6lIwlr6Pg0Iv1v2ekLRf18ti-QgWI7jP7qr_Gbn-rs,2387
31
+ openpoints/dataset/graph_dataset/svd_encodings_dataset.py,sha256=M5SR0FdUjVIM7v-iD-TUhAIjXBg2WGZO2_LhjyeVoZ8,4385
32
+ openpoints/dataset/matterport3d/__init__.py,sha256=B69ltmybmzKA_RZEc8i0WvgWp1YuTwgmbs3Aa9gXXKE,32
33
+ openpoints/dataset/matterport3d/category_mapping.tsv,sha256=BMEvz59EW0SSmt34wsGYVWwEiUXI-l1ZDmJ5B7zgapE,155713
34
+ openpoints/dataset/matterport3d/matterport3d.py,sha256=FLAxvwkLZdqsc4aNy_PUC9idi_usQHe9Z7I9IGmpvRw,6930
35
+ openpoints/dataset/matterport3d/matterport3d_dataprocessing.py,sha256=o61dCMfJhNr5p9HSo-5QMKo4t6tOtL1wqhI5Ff6-ano,4268
36
+ openpoints/dataset/modelnet/__init__.py,sha256=4ICe14J1AA4hDauALhLjHC4sIsVGmZIBRSC-d14U_9A,116
37
+ openpoints/dataset/modelnet/modelnet40_normal_resampled_loader.py,sha256=A_ElEQYnCn0dUcULqeW-NyyiHexmWXW-3bQAidCJPNs,4120
38
+ openpoints/dataset/modelnet/modelnet40_ply_2048_loader.py,sha256=SZSEFlFEm0HeBbAsBJdlhbgmqiqs8saS6pJfKS5gjig,5184
39
+ openpoints/dataset/molhiv/__init__.py,sha256=E8Yq6dVhdpxFl8Lyeb8DqyU2OtZK2h53r1jE95ecx6M,19
40
+ openpoints/dataset/molhiv/data.py,sha256=6tH3m1_tLhOrZ8X1_bFOLyZNmr_ohoCEMfu8VS2_zD8,1980
41
+ openpoints/dataset/molpcba/__init__.py,sha256=E8Yq6dVhdpxFl8Lyeb8DqyU2OtZK2h53r1jE95ecx6M,19
42
+ openpoints/dataset/molpcba/data.py,sha256=FdyT3nqjjn84UXW2QRqWcyGYe2IsGYCdpEeZkldo3Yo,1991
43
+ openpoints/dataset/parsers/__init__.py,sha256=f1ffuO9Pj74PBI2y3h1iweooYJlTJlADGs8wdQuaZmw,42
44
+ openpoints/dataset/parsers/class_map.py,sha256=rYqhlPYplTRj86FH1CZRf76NB5zUECX4-D93T-u-SjQ,759
45
+ openpoints/dataset/parsers/constants.py,sha256=X4eulfViOcrn8_k-Awi6LTGHFK5vZKXeS8exbD_KtT4,43
46
+ openpoints/dataset/parsers/parser.py,sha256=BoIya5V--BuyXWEeYzi-rg8wsXI0UiEiuxQxkho0dCY,487
47
+ openpoints/dataset/parsers/parser_factory.py,sha256=Z6Vku9nKq1lcKgqwjuYCdid4lJyJH7Pyf9QnoVvHbGU,1078
48
+ openpoints/dataset/parsers/parser_image_folder.py,sha256=h4n_EIe3ON00_iALKKfnS2SICm4C1OKLZ5lvymdbE_4,2514
49
+ openpoints/dataset/parsers/parser_image_in_tar.py,sha256=ZN4cdj2zV0T__0IJokOqVS1pT_R_b97AGaNoUXBtOZU,8993
50
+ openpoints/dataset/parsers/parser_image_tar.py,sha256=MdaR5ajzgcvL1KDkggk2mIXxAQ092iRgJMl0k1eJiWI,2595
51
+ openpoints/dataset/parsers/parser_tfds.py,sha256=iZ6F8GGw-YbqN8DYOLtqZLTwQwjOLG5So9Rpt614lhY,15819
52
+ openpoints/dataset/pcqm4m/__init__.py,sha256=E8Yq6dVhdpxFl8Lyeb8DqyU2OtZK2h53r1jE95ecx6M,19
53
+ openpoints/dataset/pcqm4m/data.py,sha256=YGyCLOimR1JGnTGtP1jCRMrSVDUhtdRykshXPlItz_c,2085
54
+ openpoints/dataset/pcqm4mv2/__init__.py,sha256=E8Yq6dVhdpxFl8Lyeb8DqyU2OtZK2h53r1jE95ecx6M,19
55
+ openpoints/dataset/pcqm4mv2/data.py,sha256=FpDy8hWxInpUkkC2FsEYZplyf4pABA_6gAgSxp2RXuo,3089
56
+ openpoints/dataset/s3dis/__init__.py,sha256=oKueRLfdgb8v7zOALGgs7ySjVziFR2IBuz36PORnVWw,63
57
+ openpoints/dataset/s3dis/s3dis.py,sha256=BEP7wCxmJyoIY-EeKKSlIu1rmipe_u2pmdtX8P2MBBk,7017
58
+ openpoints/dataset/s3dis/s3dis_block.py,sha256=vAspW4R-zpUbFgInWh01jKM95s2Wjhzs841C0LiEw8o,4002
59
+ openpoints/dataset/s3dis/s3dis_sphere.py,sha256=6AITVcktQ2lTPVX4zFub_82dFFOqiVSVCQOp2vU5UrM,17430
60
+ openpoints/dataset/scannetv2/__init__.py,sha256=m_HORNp4slmkV1FhYWy9Lessq7bV9jaIA7Vw_ylAzmQ,28
61
+ openpoints/dataset/scannetv2/scannet.py,sha256=hDFivY6h8z4EcQX8YFfp9785d8kKZOcpJ1QJjFPhqOI,6764
62
+ openpoints/dataset/scanobjectnn/__init__.py,sha256=0AIZkpCsBZaBTH8hmhG7VH-mZE20SitENYePJEVY7No,48
63
+ openpoints/dataset/scanobjectnn/scanobjectnn.py,sha256=ORuqfwa61Z-0oJeLnvmVoH35-G-J1JO4WkQ-bDD3c-o,3936
64
+ openpoints/dataset/semantic_kitti/__init__.py,sha256=ISn8uEmn9RzOTpOs43-KnuyGh3FFLQl4AO_wvZ1Fr0k,41
65
+ openpoints/dataset/semantic_kitti/helper_tool.py,sha256=BZD43aLRVgh9c5OTPGmA8Dl0_HRO7jEOBUjjxJya9Sk,10989
66
+ openpoints/dataset/semantic_kitti/label_mapping.yaml,sha256=w593osopf13UPEtdoJ80P80Lv-rIuSOoI-FNXNh622I,5539
67
+ openpoints/dataset/semantic_kitti/semantickitti.py,sha256=4PSBo3-hwcVhZ17HEy-JMBa6qyyqH9KWRLUGivwMqYM,9538
68
+ openpoints/dataset/semantic_kitti/utils/semantic-kitti.yaml,sha256=w593osopf13UPEtdoJ80P80Lv-rIuSOoI-FNXNh622I,5539
69
+ openpoints/dataset/semantic_kitti/utils/meta/anno_paths.txt,sha256=MrbGLzmf0HEvjZNmltx2kLtmi7x3kpDtW92KgMm6J20,7868
70
+ openpoints/dataset/semantic_kitti/utils/meta/class_names.txt,sha256=CmmceOyhr02EFTUCS7H5gqAfhpM2cX65rcKDkQLt-YU,83
71
+ openpoints/dataset/shapenet/__init__.py,sha256=YIFpTamQ_tdgwyDmF46LpsC51CF-F15Ulhke_NB9s9U,33
72
+ openpoints/dataset/shapenet/shapenet55.py,sha256=wtFVOg9ImwguRyYJIn05Y-Yi9SJpT-feSuZLGYhc8PQ,2507
73
+ openpoints/dataset/shapenet/shapenetpart.py,sha256=JOhh_LqHpSvkZ8hQ5ZORDQwq6TcP1GSZ1wKCdYoPSDc,4415
74
+ openpoints/dataset/shapenetpart/__init__.py,sha256=cfQNWqSoTnEL40evazE8lA4L74aj0xWHygiPj76HpF4,58
75
+ openpoints/dataset/shapenetpart/shapenet55.py,sha256=RB28ICcXYoU5GVHexFtK-KZr1ICmBSgSZqxBBgw0xq0,2478
76
+ openpoints/dataset/shapenetpart/shapenetpart.py,sha256=1yxq0imkHNcuVRjsgWWHdzbCFmWjJ7yTjllO5kdPUIg,15847
77
+ openpoints/loss/__init__.py,sha256=Nmr7tHgTaxOPy0Wg7A62i1Upmh8rINHRFowi0zgaOZk,160
78
+ openpoints/loss/build.py,sha256=mon8Nx3G1yMfOK6_DbSLSd-wZ2ZnkEnWFPG14NsLXyc,11029
79
+ openpoints/loss/cross_entropy.py,sha256=VyDqjTlafK0TKrofMxXnLxT9CTS-BvY4CLO03U0SL-Y,1219
80
+ openpoints/loss/distill_loss.py,sha256=XAV-7vXJRkBUa0Hz2In-BE4nEsUDwqeo7XrQ8Wx5hV8,3455
81
+ openpoints/models/__init__.py,sha256=ukzOa9D3DgE79AnxnZRJJeaFjEcSgXsIk7h1CDaSfhI,240
82
+ openpoints/models/build.py,sha256=TtMCfSYZQmFPAmhQqzQXMsxmYVh6gcd0rmcTtPrED50,309
83
+ openpoints/models/registry.py,sha256=YRSPZojqIfVIQ4z5yLK-LnNZZ2FXJ__cP3bNFVVbVck,5680
84
+ openpoints/models/backbone/Stratified_transformer.py,sha256=xbYliwoMhx8aTZayXEroLECFysyT9ZN_VTLLgQJPstY,25350
85
+ openpoints/models/backbone/__init__.py,sha256=P0EhBsBnQyry9L29Yabkla8h-KY4l8YtnTfNLONek9E,445
86
+ openpoints/models/backbone/baafnet.py,sha256=_vdIpPf7glUcN-uJkKlxBvZX4rt701Uz1Y9e131QSsk,16456
87
+ openpoints/models/backbone/ball_dgcnn.py,sha256=6rKckMY4vjq0LVR8QE76w3EtNKqbyuIDMEKCF2LH0e8,5293
88
+ openpoints/models/backbone/curvenet.py,sha256=eajooss0JyxDzzFQDHKd9KPwChCYCQQcUe2wDxnzbxE,29425
89
+ openpoints/models/backbone/debug_invvit.py,sha256=rfRNp82r0dy1l8nhlOT7gh98B-AnxU5AD7tcduGxBhc,4256
90
+ openpoints/models/backbone/deepgcn.py,sha256=6j_nEFaK13QrrTvTzAJJvDtTbsK7CLbSYVjWmJ_k9-M,6688
91
+ openpoints/models/backbone/dgcnn.py,sha256=YVJO_2zn036HQt0pNkFGWiblt8Sdmr5JPcZ6_w7MWbo,5132
92
+ openpoints/models/backbone/graphvit3d.py,sha256=uJCz6w8c8t4mx9v9asVvo1ZL0HkEnor-AMPzys49YGU,5965
93
+ openpoints/models/backbone/grouppointnet.py,sha256=TrXQ3xbvIpPUBcnFdyYuFbQm97QIfh12xqPZCNHBE58,4444
94
+ openpoints/models/backbone/pct.py,sha256=TcLYtVhrdEtvB7gtHR0YBv-xxeC_LfLY_dldWqXSmSM,5652
95
+ openpoints/models/backbone/pointmlp.py,sha256=nXyeaGoQhnticSa2PuGJpvzO0wKkdU5bAra88no49KQ,17188
96
+ openpoints/models/backbone/pointnet.py,sha256=HvqaW4KV4V2RdKi7TYvJfivw0tZqylrGGkJ6VMOsHrc,6478
97
+ openpoints/models/backbone/pointnetv2.py,sha256=Fy4HAmdkOsJhRXw3wnuiRAUrINwhMDoVEOj-tDmUFc4,21851
98
+ openpoints/models/backbone/pointnext.py,sha256=d3LGGSZ6ll4VawG3ObT1ghnbdn5XdorpUPXdZApvhNY,29471
99
+ openpoints/models/backbone/pointnextPyG.py,sha256=9eGop01cMnWu6DhEDD4u4j7DOkISOEszZKwLa1mVgb8,22568
100
+ openpoints/models/backbone/pointtransformer.py,sha256=UGl-rYWXMGAJ8U6esPBWcdlLQvgULCIbkIxNXx4bgks,13852
101
+ openpoints/models/backbone/pointvector.py,sha256=zMlG07RSBQYU3EUdpXWHQ8JwREf4Ozz59k2N6tDAE-U,37091
102
+ openpoints/models/backbone/pointvit.py,sha256=F5IbxPb1AkKxM0hasRmUxu_24ndUqUd8xTt6HHHyNyg,16684
103
+ openpoints/models/backbone/pointvit_inv.py,sha256=hBZsUSRr6T_IbiwhY1xPSW-e7KBf1gpZRGqGesa_jCI,38909
104
+ openpoints/models/backbone/pointvit_inv_old.py,sha256=OT13GuLhUsJtXzY3MCq-zPlqdCqPad0LB1Xe0GT2iO0,31527
105
+ openpoints/models/backbone/randlenet.py,sha256=ALJozQItKGIGlW6c2V_Fnr9yBKIOIq_u1rA1r5eaOqA,9382
106
+ openpoints/models/backbone/resnet.py,sha256=ErgkkY0JIeixfZT2_OLagsyXq4ceIQD0IYDwoeBpEto,14209
107
+ openpoints/models/backbone/simpleview.py,sha256=QXlO1w28_T17m3G8-Us8jEypXL3g99zbljpAokn4LlI,4734
108
+ openpoints/models/backbone/simpleview_util.py,sha256=rH3hl7yq6TNVPRjCv5wH63pdYbgLynFDq9IofqPTnHY,9950
109
+ openpoints/models/classification/__init__.py,sha256=Z1n6jPmfdcHtMHZ_rkC4LrYM_vtYr-IfQ9VZWjIjpl0,65
110
+ openpoints/models/classification/cls_base.py,sha256=ET_IwTRBShO573mCDq42C5OZO-90604aOyiEsC0umS4,5823
111
+ openpoints/models/classification/point_bert.py,sha256=S8LVHhsLLN7LqcbNs8zzbcSiOZRuR1ZeNbUOdz-8-oM,5781
112
+ openpoints/models/layers/__init__.py,sha256=euGxaFI4gla0U-0pPegwo0RffriDtQGJ8_nNTJJDZJ8,806
113
+ openpoints/models/layers/activation.py,sha256=JGqF_54TqyFuYHEkvfkmTS0vmJL141230V12lcHU2Bc,1277
114
+ openpoints/models/layers/attention.py,sha256=8x1BZC13yUtIKXXou2xgcNYijoFJpqgFRhvqQl4X7hw,4211
115
+ openpoints/models/layers/conv.py,sha256=6t1cONd-oaHBmxbgQPqhPlLvAIn3g_DDnQap33WZnqo,6407
116
+ openpoints/models/layers/drop.py,sha256=mP_QIiL4HFWuXlzxLAE_lvzbQHNcQ_-3U_cH8JJPH4s,6689
117
+ openpoints/models/layers/graph_conv.py,sha256=Uo7yHUKhUtKfdW52i9Ip2QKeWr-1_I5BuelsVE1dpNA,4130
118
+ openpoints/models/layers/group.py,sha256=Jf2diZjVlllxv952JkIQBl1-5RFndWU9DvZP-ppjdF4,14892
119
+ openpoints/models/layers/group_embed.py,sha256=x5ro-5VA32beOjDpzd2K-QAT--_mAbzzFBgBbelGxgY,11914
120
+ openpoints/models/layers/helpers.py,sha256=K4LDZ6QBudVuGM8lHdi-1rBByFyguCkX28VxifYxkEQ,1049
121
+ openpoints/models/layers/kmeans.py,sha256=bm0q4Xp_3A-X6YXAfUKiDgnfRUurLDMq030QMC6RtyE,4230
122
+ openpoints/models/layers/knn.py,sha256=t-budDTNv5Xo57r9fgKUTh13SiAxwfyhMTTZRFTnxRs,3334
123
+ openpoints/models/layers/local_aggregation.py,sha256=9BEQoF_-03CTDGyhJXOJQjdUaX3VRvsrxeeNeCClKz0,11878
124
+ openpoints/models/layers/mlp.py,sha256=bCUrY4ko6ZsBFcuCRBRuASW6Ia61J3GJwFeQkYwrWfI,4247
125
+ openpoints/models/layers/norm.py,sha256=aAJybO4yrIb2dJ47Zu-HvUrRyaXUk-R9tIuFV8VVbD4,3205
126
+ openpoints/models/layers/padding.py,sha256=BjbtxJmui-DyeroZohYMdRAj5mR4o6pWgW04imi3hDI,2167
127
+ openpoints/models/layers/patch_embed.py,sha256=yDQDYGkcTIZSO-xJCpnPaoYkBAim3vLmYWlFYZu6hvg,1456
128
+ openpoints/models/layers/registry.py,sha256=BsZCxRvV0ooexoZ0h3-jyG0NhQd4DQFYyMjf9AjHhR0,6179
129
+ openpoints/models/layers/subsample.py,sha256=3Cs7MywpoSSTlFJrv4xmaqfStUvBdCqAshhSY9Xkq9k,5738
130
+ openpoints/models/layers/upsampling.py,sha256=xFxul3GkGed1g5pkfatTvVCYVG7M5tzSaacAIHjZmnM,3426
131
+ openpoints/models/layers/weight_init.py,sha256=EbhK0ecja64ZJ4eXLpDVs7kLseumJBlSzWgbG9v5HL4,3324
132
+ openpoints/models/reconstruction/__init__.py,sha256=0lbEOYjoeUj23-Dqtl_MJgs-0WcdQdZdosGJBRjw7No,233
133
+ openpoints/models/reconstruction/base_recontruct.py,sha256=89m5WBmVWomDp1b904f-qcaJoMv3eAPJvTYpr7BgVKk,8801
134
+ openpoints/models/reconstruction/maskedpoint.py,sha256=xURwI1RFvkTh0NOx3m86CRPiUFqtmd5-ILI6PEbVyFc,4563
135
+ openpoints/models/reconstruction/maskedpointgroup.py,sha256=4r3SzQ-PApp8yICjgCSE9vtY601o1pKrK7dF4_zBIr0,7020
136
+ openpoints/models/reconstruction/maskedpointvit.py,sha256=Xc4nI9-Hak36ZSr70Vkn51NvyAbaq2O4wf6BX29vmvc,11440
137
+ openpoints/models/reconstruction/nodeshuffle.py,sha256=MDofjF48d7aAVjzRKvr3nbq5EWJKovnJGDh4UXL8Z9w,152
138
+ openpoints/models/segmentation/__init__.py,sha256=s4xnipsTKJQaHtjBS_OX4NfuWxKbNmabZ3h10ZqMw38,127
139
+ openpoints/models/segmentation/base_seg.py,sha256=LK2aGqdfF3NvOeQj1fK9HsAcCMxGxm8FHwPdgZMUofQ,10510
140
+ openpoints/models/segmentation/vit_seg.py,sha256=Gi3b04X1c-YH4qs7BUpoUUq6x2db7H7GH4F76ceneYo,4712
141
+ openpoints/optim/__init__.py,sha256=j_e36y3kZE37WnvMxmL_FnKNfO-jIKXpEJObdFjOWmo,496
142
+ openpoints/optim/adabelief.py,sha256=n8nVbFX0TrCgkI98s7sV9D1l_rwPoqgVdfUW1KxGMPY,9827
143
+ openpoints/optim/adafactor.py,sha256=UOYdbisCGOXJJF4sklBa4XEb3m68IyV6IkzcEopGack,7459
144
+ openpoints/optim/adahessian.py,sha256=vJtQ8bZTGLrkMYuGPOJdgO-5V8hjVvM2Il-HSqg59Ao,6535
145
+ openpoints/optim/adamp.py,sha256=PSJYfobQvxy9K0tdU6-mjaiF4BqhIXY9sHV2vposx5I,3574
146
+ openpoints/optim/adamw.py,sha256=OKSBGfaWs6DJC1aXJHadAp4FADAnDDwb-ZRKuPao7zk,5147
147
+ openpoints/optim/lamb.py,sha256=II9zTpcxWzNqgk4K-bs5VGKlQPabUolSAmHkcSjsqSU,9184
148
+ openpoints/optim/lars.py,sha256=8Ytu-q4FvXQWTEcP7R-8xSKdb72c2s1XhTvMzIshBME,5255
149
+ openpoints/optim/lookahead.py,sha256=nd42FXVedX6qlnyBXGMcxkj1IsUUOtwbVFa4dQYy83M,2463
150
+ openpoints/optim/madgrad.py,sha256=V3LJuPjGwiO7RdHAZFF0Qqa8JT8a9DJJLSEO2PCG7Ho,6893
151
+ openpoints/optim/nadam.py,sha256=ASEISt72rXnpfqVkKfgotJXBYpsyG9Pr17I8VFO6Eac,3871
152
+ openpoints/optim/nvnovograd.py,sha256=NkRLq007qqiRDrhqiZK1KP_kfCcFcDSYCWRcoYvddOQ,4856
153
+ openpoints/optim/optim_factory.py,sha256=5lcWAtfoHDiQVfgOSIrYZ7uRoDl73BAZdO5vOEAtjsQ,11416
154
+ openpoints/optim/radam.py,sha256=dCeFJGKo5WC8w7Ad8tuldM6QFz41nYXJIYI5HkH6uxk,3468
155
+ openpoints/optim/rmsprop_tf.py,sha256=SX47YRaLPNB-YpJpLUbXqx21ZFoDPeqvpJX2kin4wCc,6143
156
+ openpoints/optim/sgdp.py,sha256=7f4ZMVHbjCTDTgPOZfE06S4lmdUBnIBCDr_Yzy1RFhY,2296
157
+ openpoints/scheduler/__init__.py,sha256=5gM6oxkwc8LbVIiWue3nf4-Hxm5aShGzWxaBBvl7_Us,299
158
+ openpoints/scheduler/cosine_lr.py,sha256=Bu0SiW0DvIUXZ6Deam3Ki6ji8BJ7en7vLT0YWSJ8n6w,4501
159
+ openpoints/scheduler/multistep_lr.py,sha256=oqqjnbZtH07YaWl92tCHsDhDYkP5y6okqjr4Rp12X9w,2104
160
+ openpoints/scheduler/plateau_lr.py,sha256=831LB8XE2nGCSmXSeWhSN8bDr_S4rS9mAR1TZNl-ttA,4140
161
+ openpoints/scheduler/poly_lr.py,sha256=ylGGseBnIZmqBkUxCFApYu9wq7Np6LyE_MT36K40lKw,4011
162
+ openpoints/scheduler/scheduler.py,sha256=yhGsiYoGgG4ugXsdSukCyFK6leF0j5bDm63OQhGFjAo,4880
163
+ openpoints/scheduler/scheduler_factory.py,sha256=a5wSsaQAI0Shj2w1fazSZdOW6e2P_jnPLzX62pMJkis,4239
164
+ openpoints/scheduler/step_lr.py,sha256=67tHNjQGRQz0yqAZ4J2H4Z_hETu3hSwAH4N0X1eVPkA,1984
165
+ openpoints/scheduler/tanh_lr.py,sha256=LhreCYGjVRSCrmrBR1Od64Ik84X9K43wQmAuNm0S9EY,3944
166
+ openpoints/transforms/__init__.py,sha256=380_MgtYSPkpDhZyBCl1WjXBQd-r3coIVUvOtr9-5NQ,134
167
+ openpoints/transforms/point_transform_cpu.py,sha256=OhJSnzfQ0Kqf86RYw13ReY5_KK6Yw_bjDRYuPuowhnM,12213
168
+ openpoints/transforms/point_transformer_gpu.py,sha256=Rt2ZQyBbnpyoP539JF8L4dQZsrQxpLva8G343AsFBRA,32128
169
+ openpoints/transforms/transforms_factory.py,sha256=sC9BoYv9ZPNb6uUbuVSTL-3E4aYoxRuVt6MNzfLrcN0,1870
170
+ openpoints/utils/__init__.py,sha256=sh0pWwPg4Hgrfhn1eyM63AAnG2JfoGWFBOimPmh1_4s,541
171
+ openpoints/utils/ckpt_util.py,sha256=0PFguU4wRimKBw5shfjNFeMih79wDN5f_Y8yaH5w3ZA,17359
172
+ openpoints/utils/config.py,sha256=Qy9IKF4zNOSt25322YcOBC2b4VIBeCvGrfevk9h_03s,3718
173
+ openpoints/utils/dist_utils.py,sha256=iDcBVcocIHyQbWULmOh_LZ0uaeL7eXEHrE_jtbAm5m4,1677
174
+ openpoints/utils/logger.py,sha256=LbuUTWoRYAmBZrxVHw3QHnoBlS7LS3s4W1f0BAApVD0,6420
175
+ openpoints/utils/metrics.py,sha256=TFkRux9ymqpNBZKk9eIGoOK8SzVfZuM7Ag8DC1ZVbmg,10396
176
+ openpoints/utils/random.py,sha256=K_zW4W-crwejSp2V6VVxuDNgqO6GvNBLGtXwJ5f_l68,406
177
+ openpoints/utils/registry.py,sha256=n914Kmf3mwbUaq0Id5LWoTb3PxlVDkcgcwqiW9k2M7g,11001
178
+ openpoints/utils/str2bool.py,sha256=gUfmmAMTgcNkqIbXWKXrSBrTrD5E1qhykN1amMWyLpI,303
179
+ openpoints/utils/wandb.py,sha256=RB5d--2b0VUauh0-g5K-PIpbaQleMD4VcxS6i-svIus,3256
180
+ openpoints-0.1.0.dist-info/licenses/LICENSE,sha256=dtim875Qqk_ajcJRuv1GTWNrsT8FIblBfxYMq8hCZgs,1066
181
+ openpoints-0.1.0.dist-info/METADATA,sha256=3ReduHm3O_if442dgX_Fyoi7HQL4IlOWjtNtkohZ1rk,6034
182
+ openpoints-0.1.0.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
183
+ openpoints-0.1.0.dist-info/top_level.txt,sha256=VlXZ3EXZW5DM0Cet4mnskCDgzA8EoduX2Vh_srKUUQ4,11
184
+ openpoints-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (82.0.1)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) Guocheng Qian.
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1 @@
1
+ openpoints