diffract-core 0.2.1__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 (193) hide show
  1. diffract/__init__.py +52 -0
  2. diffract/configs/fast_speed_without_disk.ini +48 -0
  3. diffract/configs/hybrid.ini +74 -0
  4. diffract/configs/sqlite.ini +62 -0
  5. diffract/containers.py +405 -0
  6. diffract/core/__init__.py +23 -0
  7. diffract/core/cache/__init__.py +24 -0
  8. diffract/core/cache/containers.py +93 -0
  9. diffract/core/cache/interface.py +117 -0
  10. diffract/core/cache/redis_manager.py +464 -0
  11. diffract/core/cache/simple_manager.py +478 -0
  12. diffract/core/compute/__init__.py +46 -0
  13. diffract/core/compute/config.py +48 -0
  14. diffract/core/compute/containers.py +81 -0
  15. diffract/core/compute/decorator.py +125 -0
  16. diffract/core/compute/exceptions.py +31 -0
  17. diffract/core/compute/execution/__init__.py +14 -0
  18. diffract/core/compute/execution/_types.py +70 -0
  19. diffract/core/compute/execution/aggregation.py +74 -0
  20. diffract/core/compute/execution/aggregation_runner.py +362 -0
  21. diffract/core/compute/execution/enums.py +38 -0
  22. diffract/core/compute/execution/executor.py +125 -0
  23. diffract/core/compute/execution/parameter_runner.py +125 -0
  24. diffract/core/compute/execution/restrictions.py +61 -0
  25. diffract/core/compute/execution/strategy.py +118 -0
  26. diffract/core/compute/execution/utils.py +112 -0
  27. diffract/core/compute/extensions/__init__.py +0 -0
  28. diffract/core/compute/extensions/power_law.py +1051 -0
  29. diffract/core/compute/extensions/rmt.py +150 -0
  30. diffract/core/compute/extensions/utils.py +36 -0
  31. diffract/core/compute/field_signature.py +183 -0
  32. diffract/core/compute/kernels/__init__.py +48 -0
  33. diffract/core/compute/kernels/alignment.py +106 -0
  34. diffract/core/compute/kernels/heavy_tailed.py +394 -0
  35. diffract/core/compute/kernels/marchenko_pastur.py +99 -0
  36. diffract/core/compute/kernels/mat_decomposition.py +101 -0
  37. diffract/core/compute/kernels/mat_properties.py +53 -0
  38. diffract/core/compute/kernels/model_quality.py +27 -0
  39. diffract/core/compute/kernels/norms.py +88 -0
  40. diffract/core/compute/kernels/ranks.py +35 -0
  41. diffract/core/compute/kernels/tracy_widom.py +36 -0
  42. diffract/core/compute/metadata.py +67 -0
  43. diffract/core/compute/registry.py +485 -0
  44. diffract/core/constants.py +147 -0
  45. diffract/core/data/__init__.py +32 -0
  46. diffract/core/data/interface.py +304 -0
  47. diffract/core/data/metadata/__init__.py +15 -0
  48. diffract/core/data/metadata/containers.py +60 -0
  49. diffract/core/data/metadata/interface.py +208 -0
  50. diffract/core/data/metadata/sqlite_index.py +604 -0
  51. diffract/core/data/nn/__init__.py +43 -0
  52. diffract/core/data/nn/aggregates/__init__.py +35 -0
  53. diffract/core/data/nn/aggregates/metadata.py +96 -0
  54. diffract/core/data/nn/aggregates/proxy.py +57 -0
  55. diffract/core/data/nn/aggregates/repository.py +87 -0
  56. diffract/core/data/nn/aggregates/view.py +307 -0
  57. diffract/core/data/nn/containers.py +86 -0
  58. diffract/core/data/nn/extractors/__init__.py +49 -0
  59. diffract/core/data/nn/extractors/base.py +300 -0
  60. diffract/core/data/nn/extractors/factory.py +234 -0
  61. diffract/core/data/nn/extractors/flax.py +112 -0
  62. diffract/core/data/nn/extractors/handlers/__init__.py +39 -0
  63. diffract/core/data/nn/extractors/handlers/base.py +110 -0
  64. diffract/core/data/nn/extractors/handlers/flax_handlers.py +71 -0
  65. diffract/core/data/nn/extractors/handlers/numpy_handlers.py +63 -0
  66. diffract/core/data/nn/extractors/handlers/onnx_handlers.py +67 -0
  67. diffract/core/data/nn/extractors/handlers/tensorflow_handlers.py +82 -0
  68. diffract/core/data/nn/extractors/handlers/torch_handlers.py +124 -0
  69. diffract/core/data/nn/extractors/interface.py +56 -0
  70. diffract/core/data/nn/extractors/numpy.py +94 -0
  71. diffract/core/data/nn/extractors/onnx.py +108 -0
  72. diffract/core/data/nn/extractors/tensorflow.py +99 -0
  73. diffract/core/data/nn/extractors/torch.py +204 -0
  74. diffract/core/data/nn/params/__init__.py +27 -0
  75. diffract/core/data/nn/params/interface.py +402 -0
  76. diffract/core/data/nn/params/metadata.py +110 -0
  77. diffract/core/data/nn/params/proxy.py +93 -0
  78. diffract/core/data/nn/params/repository.py +45 -0
  79. diffract/core/data/nn/params/schema.py +82 -0
  80. diffract/core/data/nn/params/view.py +393 -0
  81. diffract/core/data/proxy.py +246 -0
  82. diffract/core/data/repository.py +227 -0
  83. diffract/core/data/utils.py +33 -0
  84. diffract/core/data/view.py +389 -0
  85. diffract/core/export/__init__.py +27 -0
  86. diffract/core/export/containers.py +47 -0
  87. diffract/core/export/exporters.py +191 -0
  88. diffract/core/export/formatters/__init__.py +23 -0
  89. diffract/core/export/formatters/base.py +68 -0
  90. diffract/core/export/formatters/dict_formatter.py +38 -0
  91. diffract/core/export/formatters/json_formatter.py +58 -0
  92. diffract/core/export/formatters/list_formatter.py +41 -0
  93. diffract/core/export/formatters/pandas_formatter.py +86 -0
  94. diffract/core/export/formatters/polars_formatter.py +86 -0
  95. diffract/core/export/formatters/registry.py +84 -0
  96. diffract/core/export/interface.py +105 -0
  97. diffract/core/parallel/__init__.py +21 -0
  98. diffract/core/parallel/containers.py +57 -0
  99. diffract/core/parallel/execution.py +91 -0
  100. diffract/core/parallel/runtime.py +91 -0
  101. diffract/core/storage/__init__.py +35 -0
  102. diffract/core/storage/base_manager.py +330 -0
  103. diffract/core/storage/containers.py +122 -0
  104. diffract/core/storage/hdf5_manager.py +856 -0
  105. diffract/core/storage/hybrid_manager.py +218 -0
  106. diffract/core/storage/interface.py +222 -0
  107. diffract/core/storage/metadata.py +89 -0
  108. diffract/core/storage/ram_manager.py +159 -0
  109. diffract/core/storage/sqlite_manager.py +1062 -0
  110. diffract/core/storage/zarr_manager.py +992 -0
  111. diffract/core/utils/__init__.py +45 -0
  112. diffract/core/utils/build.py +46 -0
  113. diffract/core/utils/exceptions.py +11 -0
  114. diffract/core/utils/hashing.py +90 -0
  115. diffract/core/utils/imports.py +292 -0
  116. diffract/core/utils/math.py +15 -0
  117. diffract/py.typed +0 -0
  118. diffract/session/__init__.py +24 -0
  119. diffract/session/errors.py +17 -0
  120. diffract/session/field_cache.py +216 -0
  121. diffract/session/namespaces/__init__.py +15 -0
  122. diffract/session/namespaces/compute/__init__.py +219 -0
  123. diffract/session/namespaces/models/__init__.py +282 -0
  124. diffract/session/namespaces/models/parameters/__init__.py +133 -0
  125. diffract/session/namespaces/models/parameters/meta_patcher.py +167 -0
  126. diffract/session/namespaces/results/__init__.py +378 -0
  127. diffract/session/namespaces/results/eraser.py +129 -0
  128. diffract/session/namespaces/results/injester.py +249 -0
  129. diffract/session/namespaces/utils/__init__.py +141 -0
  130. diffract/session/namespaces/utils/merger.py +295 -0
  131. diffract/session/namespaces/viz/__init__.py +91 -0
  132. diffract/session/namespaces/viz/_utils.py +14 -0
  133. diffract/session/namespaces/viz/box.py +207 -0
  134. diffract/session/namespaces/viz/grid.py +160 -0
  135. diffract/session/namespaces/viz/heatmap.py +164 -0
  136. diffract/session/namespaces/viz/scatter.py +202 -0
  137. diffract/session/namespaces/viz/sparkline.py +270 -0
  138. diffract/session/namespaces/viz/violin.py +212 -0
  139. diffract/session/session.py +260 -0
  140. diffract/session/utils.py +81 -0
  141. diffract/viz/__init__.py +42 -0
  142. diffract/viz/data/__init__.py +34 -0
  143. diffract/viz/data/detection.py +57 -0
  144. diffract/viz/data/extraction.py +117 -0
  145. diffract/viz/data/filtering.py +57 -0
  146. diffract/viz/data/ordering.py +129 -0
  147. diffract/viz/data/provider.py +99 -0
  148. diffract/viz/data/types.py +98 -0
  149. diffract/viz/plots/__init__.py +37 -0
  150. diffract/viz/plots/base/__init__.py +20 -0
  151. diffract/viz/plots/base/axis.py +219 -0
  152. diffract/viz/plots/base/coloraxis.py +133 -0
  153. diffract/viz/plots/base/configurator.py +18 -0
  154. diffract/viz/plots/base/jitter.py +368 -0
  155. diffract/viz/plots/base/line.py +197 -0
  156. diffract/viz/plots/base/marker.py +278 -0
  157. diffract/viz/plots/base/overlay.py +14 -0
  158. diffract/viz/plots/base/plot.py +110 -0
  159. diffract/viz/plots/base/update.py +50 -0
  160. diffract/viz/plots/boxplot.py +283 -0
  161. diffract/viz/plots/cluster.py +374 -0
  162. diffract/viz/plots/heatmap.py +168 -0
  163. diffract/viz/plots/scatter.py +233 -0
  164. diffract/viz/plots/sparkline.py +405 -0
  165. diffract/viz/plots/subplots/__init__.py +32 -0
  166. diffract/viz/plots/subplots/coloraxis.py +339 -0
  167. diffract/viz/plots/subplots/factory.py +713 -0
  168. diffract/viz/plots/subplots/grid.py +214 -0
  169. diffract/viz/plots/subplots/layout.py +370 -0
  170. diffract/viz/plots/subplots/spec.py +39 -0
  171. diffract/viz/plots/violin.py +298 -0
  172. diffract/viz/renderer.py +513 -0
  173. diffract/viz/styling/__init__.py +78 -0
  174. diffract/viz/styling/palettes/__init__.py +20 -0
  175. diffract/viz/styling/palettes/bundle.py +16 -0
  176. diffract/viz/styling/palettes/color.py +83 -0
  177. diffract/viz/styling/palettes/dashes.py +27 -0
  178. diffract/viz/styling/palettes/symbols.py +42 -0
  179. diffract/viz/styling/resolvers/__init__.py +11 -0
  180. diffract/viz/styling/resolvers/categorical.py +68 -0
  181. diffract/viz/styling/resolvers/color.py +77 -0
  182. diffract/viz/styling/resolvers/numeric.py +108 -0
  183. diffract/viz/styling/sources.py +27 -0
  184. diffract/viz/styling/theme/__init__.py +29 -0
  185. diffract/viz/styling/theme/applier.py +114 -0
  186. diffract/viz/styling/theme/components.py +66 -0
  187. diffract/viz/styling/theme/presets.py +58 -0
  188. diffract/viz/styling/theme/theme.py +36 -0
  189. diffract_core-0.2.1.dist-info/METADATA +530 -0
  190. diffract_core-0.2.1.dist-info/RECORD +193 -0
  191. diffract_core-0.2.1.dist-info/WHEEL +4 -0
  192. diffract_core-0.2.1.dist-info/licenses/LICENSE +201 -0
  193. diffract_core-0.2.1.dist-info/licenses/NOTICE +2 -0
@@ -0,0 +1,193 @@
1
+ diffract/__init__.py,sha256=boQJ31X3lqqFrpfXOmV4o82UMMpxFM_DrhPse6DLXx4,1176
2
+ diffract/containers.py,sha256=aQSZf93fU5AuSFchq70yE855C8aiNtmS7RKnsgRjN80,13558
3
+ diffract/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
+ diffract/configs/fast_speed_without_disk.ini,sha256=0DnSksisReX6Qo4ghTeubtiPRwc6NosdWSz3VfMC0k8,776
5
+ diffract/configs/hybrid.ini,sha256=AY05USw45GnkRI3o46tkmlCZ4vDQ-EcNgaALbJERavs,1361
6
+ diffract/configs/sqlite.ini,sha256=ULd0XSuDRLRZF37ILJQi1GYFN_I0BJeav9OqbWCw4CM,1090
7
+ diffract/core/__init__.py,sha256=T3P2Az86HrEg6UU1dNta42dBL7LG_w7uUZgBoHI8nx4,476
8
+ diffract/core/constants.py,sha256=p8GGLJwO91dYQE7jDXBGfwFwWbn4IFjvIi7vPw8H9Uk,4561
9
+ diffract/core/cache/__init__.py,sha256=S_i9srGGWWgDDJqKrg1GSbZQAQyZnp56irmKOqd-ggU,739
10
+ diffract/core/cache/containers.py,sha256=CQgCAr-HB7I2cc781F1ca_evKQFm4p4t9ZIjdeZx0q4,2801
11
+ diffract/core/cache/interface.py,sha256=IUAsnv02c1yV2e71bd9F9CGhZQ9vLMaMHUuCDaGUlg4,3407
12
+ diffract/core/cache/redis_manager.py,sha256=SlCn6M2SHtUtudREA7R-3Mlm8z0VEe8as_CfUq4Ccds,17077
13
+ diffract/core/cache/simple_manager.py,sha256=njWhwdIdCH4bgQSaeCY8DhjRmLdlQ1daLuhTxtQf-1c,18168
14
+ diffract/core/compute/__init__.py,sha256=ScbBRfIqHf1rEIWw65kZ1Sdl0v0E2MfWUivh3I49tCc,1223
15
+ diffract/core/compute/config.py,sha256=ZA0BTpGIaQz3UJLGK7fKzKzJPUEnYPuWH_9taWSk_yk,1481
16
+ diffract/core/compute/containers.py,sha256=45_y9QxaMSGc_3-nMcqGFKXZG1_FSEkLe3d_GrB3sSQ,2706
17
+ diffract/core/compute/decorator.py,sha256=MmQa24YungJmM5mnx_mXe2N-ykvtnJy4UrI21vbaF7Q,4716
18
+ diffract/core/compute/exceptions.py,sha256=by2IDvdNQSmFNUUjJQZ4zRJQnalX1uKT9vDoyuf4Vrs,810
19
+ diffract/core/compute/field_signature.py,sha256=OL1-x4siUD7Nxx0rRo7t6RfWwdEl8YhlTW9Fvf9WxFc,5394
20
+ diffract/core/compute/metadata.py,sha256=cb5h0PxTLdwwfpV0sHhQd5E2zZZH2UKmobnC-KLzY2I,2350
21
+ diffract/core/compute/registry.py,sha256=E74Cbu4FoQJSsL0LBNBPkyYh0Bsy84L-Zhl2HXQHp5I,16047
22
+ diffract/core/compute/execution/__init__.py,sha256=9hm-bNGlgTJB9eOaHagDgfVJ-NwbO_jmx8qlWbA91FA,417
23
+ diffract/core/compute/execution/_types.py,sha256=590-5buR_ulxevEcQ0F5fBjRafu22W_iKdUv_ROOpJ4,2205
24
+ diffract/core/compute/execution/aggregation.py,sha256=z56021MGCrqDy8Gyhd79NO4Fdnaq-SemrHfFg7GDszo,2568
25
+ diffract/core/compute/execution/aggregation_runner.py,sha256=bU2w97LnqRgWDQX3ZYHvu5xHAAtCbtCxTvoiSO1SdYU,13889
26
+ diffract/core/compute/execution/enums.py,sha256=ae1fZQ0bPaPTa-jllw9KzlbqxpRNk3JyW1NDz8zAaAo,932
27
+ diffract/core/compute/execution/executor.py,sha256=ew4ArVXsoFDiNDJ_oFUJwsfgd9QtY4io-FmwVfMWs2E,4776
28
+ diffract/core/compute/execution/parameter_runner.py,sha256=g9UCGFyoPiIZdIQ4zmPYJHRTe0YGloiVLRUfliN-gGU,4431
29
+ diffract/core/compute/execution/restrictions.py,sha256=mpMXXSGbFrJtu_jQ7x95-yFQauYPJmuNwzfpYCG7hJo,1671
30
+ diffract/core/compute/execution/strategy.py,sha256=0RdNYP44OJ3hwkL2FTILQys-YgjWSIeFqsoaR9hwbu0,3760
31
+ diffract/core/compute/execution/utils.py,sha256=ncvtJnrfBDOoQ0rNgb82vEQNPAuvl7LeBEaZVzLpndM,3773
32
+ diffract/core/compute/extensions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
33
+ diffract/core/compute/extensions/power_law.py,sha256=NBQoKtqnRP-we13i7zgZn_J_5dCkRrpx2-ATkIu2IoU,37331
34
+ diffract/core/compute/extensions/rmt.py,sha256=GaWspzmUjh4dkfxW3qqOnjNbsSAL3O96_DlSrBDFw1g,5364
35
+ diffract/core/compute/extensions/utils.py,sha256=VZ7xWUcGZ1DFuhRS7o-FtP-sCsFZw66W2MhgJhwFqQ8,1114
36
+ diffract/core/compute/kernels/__init__.py,sha256=yA4yTROehn-0i2OEVnO4sdspzWpZ3wTxAydQN6NBri4,1023
37
+ diffract/core/compute/kernels/alignment.py,sha256=fBjEKBitLlS2QKY2OQjE4BNw5dVzf3Xt-AWD6h_YrxA,2929
38
+ diffract/core/compute/kernels/heavy_tailed.py,sha256=t7kl5JO1vn_WAiWt22jqUjKE3JxQoxD0OuBxHs5Vwi4,12714
39
+ diffract/core/compute/kernels/marchenko_pastur.py,sha256=k6pxxt0dC0A4E3nWmGwoen6Ndj8ol-iSE-9Tw2tbrUA,3035
40
+ diffract/core/compute/kernels/mat_decomposition.py,sha256=JPCWI49zvZt8ivW3aSGtFZFfn7FNgF6fAPCOcrtyOeA,3071
41
+ diffract/core/compute/kernels/mat_properties.py,sha256=5vWbJqUdGYz0Ygkkh2TvHHnNjO-WsnfM5AY_In86IzQ,1264
42
+ diffract/core/compute/kernels/model_quality.py,sha256=oRZolW7Rdv95o6VjRNy4xUNdeLSPYLDZzTrcDP0abw0,731
43
+ diffract/core/compute/kernels/norms.py,sha256=murClooTCsH4fsPf4J5d4C17EynM8xw3X9iHMMTlsEw,3219
44
+ diffract/core/compute/kernels/ranks.py,sha256=IrGY1jEocuqVaA9H0_wMUyFkr5ZFtTILEJMHfN-fx5I,1085
45
+ diffract/core/compute/kernels/tracy_widom.py,sha256=IlpmjufpuSQ-VyjHgjtwaa6bbipTgVODZJ_dDqhNKw0,1024
46
+ diffract/core/data/__init__.py,sha256=axjy5_d8up9HyoE8Bk1QFO1MNREBZqHPULtRBaba8_c,1037
47
+ diffract/core/data/interface.py,sha256=4j9hHGZFIX_S-28zPW4Ycw8DqIrpZekEbK8Mmf7XXWw,8848
48
+ diffract/core/data/proxy.py,sha256=s-_m4xMFbMc6cI8QIH0GEIkpDk1q0vNk5BwDOrHaaYM,7629
49
+ diffract/core/data/repository.py,sha256=K9UK-GNSzQ2ZDF3Oer5lDrhgRF7Q6-QQsz2x8bTrvoE,8092
50
+ diffract/core/data/utils.py,sha256=uiqA32LHRpgjW5_gsVIBsLZcgehPo8G6ia8PeEA6Wcs,965
51
+ diffract/core/data/view.py,sha256=RbXIsErg8BteAfrx9IkESEVVTwjPrLleV_lOSFPrOP0,12659
52
+ diffract/core/data/metadata/__init__.py,sha256=waI4cHrRWjrJCXtEqK5jRnthma3NKmuEqdyN3yhfsqs,384
53
+ diffract/core/data/metadata/containers.py,sha256=LwDYDIfVDaTtP3DtOsTxGlfYvbnc7J8jK_wya1rWgM4,1720
54
+ diffract/core/data/metadata/interface.py,sha256=4FVkpoJ8t5XVbWx8tyUgO2Au0Utk8ww3HQ9X6CzBFgM,5738
55
+ diffract/core/data/metadata/sqlite_index.py,sha256=FRzSA1DCe_ZrppTaL7Amvlcj74bnA4pDNuAvvok37l0,21266
56
+ diffract/core/data/nn/__init__.py,sha256=EjKdMKMG1f4shkGN0D2HRpxFeGdtBERwgBgv8IUoYrc,1497
57
+ diffract/core/data/nn/containers.py,sha256=Lvta34w8V9omtMlugPMuE39o4OiciLr1qGeIwtZDdS0,3525
58
+ diffract/core/data/nn/aggregates/__init__.py,sha256=eDF3-o3BEgiS9I5kTsB1VUrcp8FFoddDw22IXQ2M6zw,1132
59
+ diffract/core/data/nn/aggregates/metadata.py,sha256=iSp55dc_wNb1sQvZNsA640HM8dSwJiO_bUZL9IJdAog,3250
60
+ diffract/core/data/nn/aggregates/proxy.py,sha256=YK9lPvsKMePaCHVGwOXeXxa4SOAAgVOYAlviAL6Srmc,1661
61
+ diffract/core/data/nn/aggregates/repository.py,sha256=qotF3Rdp2g1pZJxJLNOeKwKqzEgYxT_hE3PHdxDCI6o,2794
62
+ diffract/core/data/nn/aggregates/view.py,sha256=lpbIXgcsm0-VdKa3Rru1hxyqdv_KWfRXEWYtLQRUIZY,10630
63
+ diffract/core/data/nn/extractors/__init__.py,sha256=L3Lh9958UZLbvDOROeLyjthPVgVF8bpjL8-Djp8x5pU,1821
64
+ diffract/core/data/nn/extractors/base.py,sha256=lih-bWLvWVQurPyPiwvdPWIrl_9-KcCG7InZx8sLU8I,11532
65
+ diffract/core/data/nn/extractors/factory.py,sha256=6_0b68PZW7rYZNUZW4J-ZxwYRpvaIKkL7faz2kaaNRI,8137
66
+ diffract/core/data/nn/extractors/flax.py,sha256=WlUMmLsz_DDUUEJWSykfuUjfaG0F4MwT-oxuyuStjO8,3869
67
+ diffract/core/data/nn/extractors/interface.py,sha256=viqCcgsc3shJ4eyznUnyb2K-hTgYI2w8J8giBxQBmv8,2156
68
+ diffract/core/data/nn/extractors/numpy.py,sha256=Wdp5cOUdyA_oBYRccvLQoBbSZQMOstHfch3YagyMlRc,3402
69
+ diffract/core/data/nn/extractors/onnx.py,sha256=dsCMJtqB86ZtDlZN0GJncce16-SMk_Q1bvuP3GZmOQI,3647
70
+ diffract/core/data/nn/extractors/tensorflow.py,sha256=I_Bh7r9fXDCRjlbA4r2QSnpntA9BrEWyKhvCwxYUG-M,3575
71
+ diffract/core/data/nn/extractors/torch.py,sha256=pf5qAMKHKibrYvxDLvG0TPwaQsnmpZgfMT8_Zl81YpE,8148
72
+ diffract/core/data/nn/extractors/handlers/__init__.py,sha256=FN2QnZNLSLM-eoI5aZqrb0miQF6qiNNbdZLRaMIxLJI,1404
73
+ diffract/core/data/nn/extractors/handlers/base.py,sha256=kzXTraCBPOb6QVVAbkCIZasRDizOe5vauOJhrjJagZ8,3999
74
+ diffract/core/data/nn/extractors/handlers/flax_handlers.py,sha256=vFWadxtcO02-0y84xga2tdzQPxEHinJWxHNg3et4pCQ,2370
75
+ diffract/core/data/nn/extractors/handlers/numpy_handlers.py,sha256=47PbSQvX2ou69WANU-RwsZDwLnIv08isUS2_gh2l38Y,2046
76
+ diffract/core/data/nn/extractors/handlers/onnx_handlers.py,sha256=3xJ7w2DBbpFId6wMc_I5fl-dOHDTvuMI7OfuFMPyR9Q,2128
77
+ diffract/core/data/nn/extractors/handlers/tensorflow_handlers.py,sha256=Y122IzmLT7Jc_NCWpzHvX_c5jWUvzyqrkf8bumvZiC4,2972
78
+ diffract/core/data/nn/extractors/handlers/torch_handlers.py,sha256=AhZUuXDNE3UevOQE-PQW7gHLFgbr9EOYm0EEtYYcbik,4488
79
+ diffract/core/data/nn/params/__init__.py,sha256=vz0S1SuMFEOIsrSYIEtELhWv7LTkxBAMwzM-2C7eqQk,804
80
+ diffract/core/data/nn/params/interface.py,sha256=2DQ5xon_AmAr0Sr9TEYFF_PYGJZa2ke5DaghG-Oo9Iw,13488
81
+ diffract/core/data/nn/params/metadata.py,sha256=RxEyStQY5-34HAQW7nK2xOGLp0-2VxlFbYps0V0ioyg,3613
82
+ diffract/core/data/nn/params/proxy.py,sha256=6gKAf4AJmOw4ZqozXMjXmmnC3FLVx38cAZlZ3ix8C8A,3154
83
+ diffract/core/data/nn/params/repository.py,sha256=gMFIr2MIXR0lIVodpDuVlR0_0fpJoSoaqX3YDzwwXfA,1443
84
+ diffract/core/data/nn/params/schema.py,sha256=Nem91w2LCwLnaKpTNRLZYfZKiJEGRIZH-a_TdOddXb0,2735
85
+ diffract/core/data/nn/params/view.py,sha256=U1x2sT0KLY88hYzApI2XGIAb2hI5WU-ZsXP6e62mDnY,13984
86
+ diffract/core/export/__init__.py,sha256=ew1jYyjoCUM0n1_RIN1GpThO7aYvl_Med0lWuHmPeQE,818
87
+ diffract/core/export/containers.py,sha256=aaIKmKsOdKso2ZrGrpxZbYi0HHewyieYCZAjdgvRx5A,1307
88
+ diffract/core/export/exporters.py,sha256=RtD73BF5FvoWf1n2cD54hGIU6eqrwzGVmAEd8l4xQEk,7145
89
+ diffract/core/export/interface.py,sha256=K2gXAJ3AYHMMIjOCNrPQoygQ7darGjSmfO0kVLJkq0g,3069
90
+ diffract/core/export/formatters/__init__.py,sha256=rqWftk232z44zMVIeWYH5fAdxJfqW045ctELTfnRgc0,732
91
+ diffract/core/export/formatters/base.py,sha256=4rUxV0SyQlPlWtyx3Qp3s4gvJqLtG-O0v4YDyBUJg_s,1907
92
+ diffract/core/export/formatters/dict_formatter.py,sha256=I1s8Kjs54fH2k03RU0JBnqZBn2sf8eXwNmYuzezj-8k,1110
93
+ diffract/core/export/formatters/json_formatter.py,sha256=_1xhkur_JV0JAGow9zRLNrPU80QMvel81PS-XdAGKYk,1716
94
+ diffract/core/export/formatters/list_formatter.py,sha256=81Db5kTycHCrwq9F66G4At9LYxHUTxO-MBJCTa_JajU,1209
95
+ diffract/core/export/formatters/pandas_formatter.py,sha256=93eFYTriT7w2XaPUXOYaiDrmgjcZxhDk1GQYlHJthE8,2839
96
+ diffract/core/export/formatters/polars_formatter.py,sha256=PWHGZxiZbH1MAEP_euJeVaeh1UvvHLBORFZyWeD17_o,2875
97
+ diffract/core/export/formatters/registry.py,sha256=QY39X318mWWzQi95SGhYE8e5sAI5LuqylK-O8yFSDsE,2552
98
+ diffract/core/parallel/__init__.py,sha256=5H-JxwKJorP_XCdirpWI7C8tfAuJfJfFwq5vqd5JVOc,540
99
+ diffract/core/parallel/containers.py,sha256=RFmT9SnK48Tce00j5DG2BmoZHeqyDg0QNlpQ9fKFJfw,1711
100
+ diffract/core/parallel/execution.py,sha256=mcXxi0yz14zoPXSH8WMqjOv2HXjiFlWGBZmC0BjwJQk,2468
101
+ diffract/core/parallel/runtime.py,sha256=19b54uZQ_TwMCs_jSFYiKcgEUlVBkv_UpOZKL7LxazA,2632
102
+ diffract/core/storage/__init__.py,sha256=RnuyGOqjYUaENyRnIh0qy_LhTO_qgl__r6D6udVltSo,1241
103
+ diffract/core/storage/base_manager.py,sha256=XgXZ9ohlkYm2yd-1WvxWE9m5qwtEUgEyHJf9UgV1MPo,10811
104
+ diffract/core/storage/containers.py,sha256=jxkmnEl44thpenw2_RczUb3l5_BSbYIAyh1Gxky8moY,3705
105
+ diffract/core/storage/hdf5_manager.py,sha256=Nt9TG8Ss_PpXILcgUuPpx8d4Er4Wi1S3Sv_9HdOXd3Q,35445
106
+ diffract/core/storage/hybrid_manager.py,sha256=nR-Cp-KWpLTNl2-GSH0uC55RXF6DQbUtCm8Pa2rmvuE,8136
107
+ diffract/core/storage/interface.py,sha256=v6V6F3N0bmnk86-Oi1OZG-e56ERAHZkQZufSwfj57eY,6883
108
+ diffract/core/storage/metadata.py,sha256=a-Uw0UjuEvTVAVIDN1zIR0cvE1jXMyWx8qjYi_Pezgc,2495
109
+ diffract/core/storage/ram_manager.py,sha256=qA4CnEiJxJwnh_vo5GpGAlTy28ovf6NaOoYxF4DVRVI,5802
110
+ diffract/core/storage/sqlite_manager.py,sha256=48UfgmDKcsicUKKEPQPP9sr1Kp8k-_TaubyG8E73bIg,36652
111
+ diffract/core/storage/zarr_manager.py,sha256=z2JNW-YYjV9AtEdRIaH1JnUB6FYBPtY540h1bdYL460,39427
112
+ diffract/core/utils/__init__.py,sha256=_hSfBxfbuGkx6Q0rk6mQBVA_ys23K67oioXnDWRzIkY,1074
113
+ diffract/core/utils/build.py,sha256=Dy-hNtqYnAnA4M8-tPlGKma4g4VkpSIGQUkgVx3EQ8M,1401
114
+ diffract/core/utils/exceptions.py,sha256=OO9ZyPNVcP8vfo6V18c_aj8JqjGTLbE0FR5ALEEtxxU,346
115
+ diffract/core/utils/hashing.py,sha256=vF9b-FZfueDrQ-qnJER6R_k-GXUQ-c5hkLwNJ23JMBg,2519
116
+ diffract/core/utils/imports.py,sha256=Dj87Nw83yFPQVTSz8d0LdDQXq7FSlQYz91NjRa4RAFY,7880
117
+ diffract/core/utils/math.py,sha256=1t7MnHZn23Uiu1nYJGHP43KJji3b4ZsGeyg8uS478wo,331
118
+ diffract/session/__init__.py,sha256=qpxFQR8z_C0Nvptjac7ZFGo1TbYeHVunlEXRvfXwXjA,546
119
+ diffract/session/errors.py,sha256=2vldLV3zF8dbsng-n__K127YAoi6iW8IaWx0Q-YiUGs,440
120
+ diffract/session/field_cache.py,sha256=_ZWjdfzimi5-tgtcq1ed9yPOmP55jHar_pMWZhIReOI,7275
121
+ diffract/session/session.py,sha256=dRYWy6CyqXxlKhNfxGHo_TCYCRgvbgc5ZgEyIIQ39zY,9470
122
+ diffract/session/utils.py,sha256=KHo-DrgEYZl-fi3jEdSrnYORH_1cGpj_wl9q7sF1ywE,2691
123
+ diffract/session/namespaces/__init__.py,sha256=IEKUPtrKDza-9-VYgFa1KLaP5KgVvQCRRRb_ttUw4SA,349
124
+ diffract/session/namespaces/compute/__init__.py,sha256=ONJiBfPFCmYIjJidxDfHRnz6F-Iq8CHNQdya7WCXdpA,8459
125
+ diffract/session/namespaces/models/__init__.py,sha256=DSJam5vhyZ0BAYzR6CsE6-BCZLVNcEPTw122vmPPymY,10298
126
+ diffract/session/namespaces/models/parameters/__init__.py,sha256=bYIehk7rubVA5ONizLzldccTXHXoM4KOMVFHHpchHDA,4873
127
+ diffract/session/namespaces/models/parameters/meta_patcher.py,sha256=at82_na7F8W_IWGP9kCYmCgD9azzSUI56HohuFz7d54,5285
128
+ diffract/session/namespaces/results/__init__.py,sha256=WbMwt46AB-PBRcIIOHdTZZgqAUTfUPaHEdjRwmeTz-U,14004
129
+ diffract/session/namespaces/results/eraser.py,sha256=EsRy-w9vHAXVk7VInS4k-6clhMNwqthuVDHc7KHdUXo,4169
130
+ diffract/session/namespaces/results/injester.py,sha256=J169IBL85aM0XYSzIwixjkjp5wxNE-mK_3ZZSKSabzI,8576
131
+ diffract/session/namespaces/utils/__init__.py,sha256=99cYSuDSdWoSPqGAm58tGAwLzCA6n3GEMi_JMEcS8iE,5504
132
+ diffract/session/namespaces/utils/merger.py,sha256=coTTkhonAjk04C_nKQrnk5eDvbd8TrHzAw1iVMIw_ZU,10391
133
+ diffract/session/namespaces/viz/__init__.py,sha256=MLwwh7mNmj4iYm_ts9SoGosWxhpnhEvyC8J0DBNdiPc,2942
134
+ diffract/session/namespaces/viz/_utils.py,sha256=D2Ry3BRDQ_yoxV1ZJ9D3XD4pY2Y2veBkshGQNrK2C5Y,364
135
+ diffract/session/namespaces/viz/box.py,sha256=xjWvP0d_UBOVmFhPQPWYNijSGOWCMFYmAwuQkiJ1vuY,8140
136
+ diffract/session/namespaces/viz/grid.py,sha256=o1aYq1GA-JQDssOgLv0AAh9J5oKRsquPXC9GmzvdK18,4914
137
+ diffract/session/namespaces/viz/heatmap.py,sha256=eBt73xegISpZuBCIUc2Vhd7JBV-Mx4FqfE0ginZpE-k,6252
138
+ diffract/session/namespaces/viz/scatter.py,sha256=lo4-mPC0wy327964fzGpSkElzkvpk2dEDZFhgepdf9o,7734
139
+ diffract/session/namespaces/viz/sparkline.py,sha256=HlS-bjPFe6fAeeUbKjEo-53snhxwi_B7gYSPCBkfB44,10859
140
+ diffract/session/namespaces/viz/violin.py,sha256=O9-4g6CV6hhXg_nBD82NfAtt0wkvzILfCDVXqrQ_feI,8441
141
+ diffract/viz/__init__.py,sha256=jyrkybDP-mm46DAslMV9WNtt4Cmp7z2USXQM6w8vt1s,1019
142
+ diffract/viz/renderer.py,sha256=0cAOi3DCMteLO2YeL6pbYJHlRuJ4ReOlbUc0pTnH1mk,17428
143
+ diffract/viz/data/__init__.py,sha256=9Jk_qf49s-HiKvtQjizPsOWD6U2YsxrlmEG9D76Xc4c,817
144
+ diffract/viz/data/detection.py,sha256=a6PqmJpzN5Q3fQdGY_BJtLyuQzltR3_qaNhyiVRP5NQ,1699
145
+ diffract/viz/data/extraction.py,sha256=UYQQQJkaoSsrNaaRfzIFbGVODwtDpN4HoM15Cyvd21A,3299
146
+ diffract/viz/data/filtering.py,sha256=gPIYNv8U0X40qI9CtBeoJTInhx-1VqtTlSjwNM_fKZk,1471
147
+ diffract/viz/data/ordering.py,sha256=GLt80V0ALuYsSEBpLs_BVnGX5h4Q5cHY3NQ5UiVCGgQ,3965
148
+ diffract/viz/data/provider.py,sha256=JfQ7WG2edFSWbqgI4MXeaNYEH38cpzgT5Q2xoR7yRjo,3221
149
+ diffract/viz/data/types.py,sha256=6Vcku4vAXVTrX6xVT7tMo7IHMGSRhSZ5LX-3I6N6-gc,2661
150
+ diffract/viz/plots/__init__.py,sha256=JBUcwADt_V8-OkY03FuNJYV_SCFoEDn7WiGfwjomcBM,853
151
+ diffract/viz/plots/boxplot.py,sha256=McRS9Ufw1Q3Nk9fb4g8LxlyRxJyQF5HJSGrnqtlbKc0,10092
152
+ diffract/viz/plots/cluster.py,sha256=_mTa_pumRS2uvAFkfZ2MqPaDgvpsmz-9I7UxWsopU4g,13260
153
+ diffract/viz/plots/heatmap.py,sha256=4gZhOge_vwIKviCbH3J3qN9BbEYOc87hWnmh0q_JUN0,5601
154
+ diffract/viz/plots/scatter.py,sha256=663iSyagLBdjnXup494vlT1_ozR-MuvdH61DnL8GY1E,7960
155
+ diffract/viz/plots/sparkline.py,sha256=SeG6Ldf5MqJPz0sEmOXjgtorl5iDRh7ZfETzz8RvlsA,14355
156
+ diffract/viz/plots/violin.py,sha256=JWOH8At7nkjr5rde41SPp0B4YNWwaQnNL8v4kbokZW0,10776
157
+ diffract/viz/plots/base/__init__.py,sha256=tSH0LRpZ4WDKJZ3w2OVJtbfFKXM6U9LrxynXmCXQ5CE,491
158
+ diffract/viz/plots/base/axis.py,sha256=3HEqhgu3NfZLCAe_RN9LHxhBZujVU21msVro1uPvmg0,7251
159
+ diffract/viz/plots/base/coloraxis.py,sha256=Owz-z73cnTbj980hVKyMUQtp8BIrzCvPBu01eXw63RM,3869
160
+ diffract/viz/plots/base/configurator.py,sha256=TMoh4V6_OHSqUrE68L4w1DhJ_fYxmvS-HGZSKI_2ND4,494
161
+ diffract/viz/plots/base/jitter.py,sha256=9wJA5UMeuEooolDMCKy2uikDnnrgpN8FSI2rGbAEdtg,11987
162
+ diffract/viz/plots/base/line.py,sha256=Nk7EJZrJlM4xF1uMA1P3WJOrpp20zEIZS7sG-PrDxVQ,6059
163
+ diffract/viz/plots/base/marker.py,sha256=3UVyHweTMFwSBHAhuzV1p8bTudesMEBsImPlSPSv9po,9000
164
+ diffract/viz/plots/base/overlay.py,sha256=2OZRozLz19v4nqz-h2VdRlDpCqvl0CMCuUlDWXmcZF8,362
165
+ diffract/viz/plots/base/plot.py,sha256=D5aQZb0l57yKYG9IdjaLKBa0IZBnvatfz4Px4adhPOo,3847
166
+ diffract/viz/plots/base/update.py,sha256=XnmacISLVcVmZAgfc_pULhKUnnSl0uPOzGjavQ0uEsY,1589
167
+ diffract/viz/plots/subplots/__init__.py,sha256=f2VcacjGz8ypSHHXqgEjF-9FVTyxRbKVhTStzvEnrsU,699
168
+ diffract/viz/plots/subplots/coloraxis.py,sha256=CJ8lNVQQNDlmTjUKo84vYKvkp0BSxwQTIBz_jWrnjnE,10709
169
+ diffract/viz/plots/subplots/factory.py,sha256=xzWrIK3G5W3AyNPwRrDKsKZXXTcj1Q5wAtyGhll3FP4,23375
170
+ diffract/viz/plots/subplots/grid.py,sha256=179UqzG4amaXsCCMVpTSdtSM_6p3ipkBB3HRyeIlGNQ,6631
171
+ diffract/viz/plots/subplots/layout.py,sha256=jnqMqdCFNpnm6qJ1igveXdM7Jvsdg3Hh9RNd558fP5I,10247
172
+ diffract/viz/plots/subplots/spec.py,sha256=wdu6unQFEtpXAazEGto6k6c4B5sy-q7ufJzdThjcw3s,1161
173
+ diffract/viz/styling/__init__.py,sha256=ABeHbs4w1sv6YKlSshM71R17eVEUVMgJDWYoHYE3LV0,1397
174
+ diffract/viz/styling/sources.py,sha256=cBh68WmPMyLnOT5A8ZdFwnDH3lxxoygOdK3fArbb99s,955
175
+ diffract/viz/styling/palettes/__init__.py,sha256=ncydj8l4pb6C-4RZYC7WfDUCZzylGfkQXeG2w8l671M,495
176
+ diffract/viz/styling/palettes/bundle.py,sha256=mSXgYtaSBGrNS3oBGarGX6twXb44q6x0QQG4zxvLmPc,552
177
+ diffract/viz/styling/palettes/color.py,sha256=DpaKaCbUBtPeGyCoU8d1B-rMHZlsI5KD1S07v98CdLc,2100
178
+ diffract/viz/styling/palettes/dashes.py,sha256=vXqYnfRn1suvHIbvs7cXIC0HonMlVrm6zaDhiU3RJWs,673
179
+ diffract/viz/styling/palettes/symbols.py,sha256=4TpT7XaYUDJ5HVHo-jFiqRuOVsio86e3RynX0JlW68o,838
180
+ diffract/viz/styling/resolvers/__init__.py,sha256=yZIurAsTCFMUaNuTaYojciw9G7LNOfoph4m8BcWoJqQ,301
181
+ diffract/viz/styling/resolvers/categorical.py,sha256=0QyXe1Bi4RGDW47d5RBd3Cd0sY718C21_iR5a6yM-Pw,2045
182
+ diffract/viz/styling/resolvers/color.py,sha256=n7uvPKBLeDVjbzm9EOhe3DBzgZt1X9tR8xdoCX3byQ0,2590
183
+ diffract/viz/styling/resolvers/numeric.py,sha256=_QW0_4a9Sh8Vnm95pOlJa88ZhhZGrvZuvwtXFhCdCrE,3455
184
+ diffract/viz/styling/theme/__init__.py,sha256=SMkQCygNPINlZe_vr7NBv2ivkajJoScPtZuUv1QCuXc,544
185
+ diffract/viz/styling/theme/applier.py,sha256=0_DMucyEbykj5yvRC0Fk7QgpcCHwvvATS06KRpyp-rY,3304
186
+ diffract/viz/styling/theme/components.py,sha256=Ln0isAbAEwdZxwdy55p4xwKtxym2LXXKBZa1poSlSd4,1359
187
+ diffract/viz/styling/theme/presets.py,sha256=RBjbD3lDukekw1idaOOEZf8MiYhEvkhtluOupacYw1U,1227
188
+ diffract/viz/styling/theme/theme.py,sha256=4m6VyNHDR16jJLPbbneNM5xZo6475qwVcaDNjQEALqU,1171
189
+ diffract_core-0.2.1.dist-info/METADATA,sha256=08t0zT4DC2d1qZGKChJRc2H0ab2NsgachvoCXkmgJtY,18519
190
+ diffract_core-0.2.1.dist-info/WHEEL,sha256=lCkmxWfQsSc9CfIClYeavTdQeEX2toPqufh9gI35EQA,87
191
+ diffract_core-0.2.1.dist-info/licenses/LICENSE,sha256=YvuKOpYh3COIF0yqq-nCMXtpS7mh1GyYvPVlW2j1G-M,11359
192
+ diffract_core-0.2.1.dist-info/licenses/NOTICE,sha256=5e0y5UV4DgfrkqQ1-TtLv6fYklSiHX0huLoWv_hP3dg,41
193
+ diffract_core-0.2.1.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.31.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ https://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "{}"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright {yyyy} {name of copyright owner}
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ https://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
@@ -0,0 +1,2 @@
1
+ Diffract
2
+ Copyright 2026 Risk AI Research