You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`TreeValue` is a generalized tree-based data structure mainly developed by [OpenDILab Contributors](https://github.com/opendilab).
24
29
25
-
Almost all the operation can be supported in form of trees in a convenient way to simplify the structure processing when the calculation is tree-based.
30
+
Almost all the operations can be supported in the form of trees in a convenient way to simplify the structure processing when the calculation is tree-based.
31
+
32
+
## Outline
33
+
34
+
*[Overview](#overview)
35
+
*[Getting Started](#getting-started)
36
+
*[Prerequisite](#prerequisite)
37
+
*[Installation](#installation)
38
+
*[Quick Usage](#quick-usage)
39
+
*[Tutorials](#tutorials)
40
+
*[External](#external)
41
+
*[Speed Performance](#speed-performance)
42
+
*[Change Log](#change-log)
43
+
*[Feedback and Contribute](#feedback-and-contribute)
44
+
*[Citation](#citation)
45
+
*[License](#license)
46
+
47
+
## Overview
48
+
49
+
When we build a complex nested structure, we need to model it as a tree structure, and the native list and dict in Python are often used to solve this problem. However, it takes a lot of codes and some complex and non-intuitive calculation logic, which is not easy to modify and extend related code and data, and parallelization is impossible.
50
+
51
+
Therefore, we need a kind of more proper data container, named `TreeValue`. It is designed for solving the following problems:
52
+
53
+
-**Ease of Use**: When the existing operations are applied to tree structures such as dict, they will become completely unrecognizable, with really low readability and maintainability.
54
+
-**Diversity of Data**: In the tree structure operation, various abnormal conditions (structure mismatch, missing key-value, type mismatch, etc.) occur from time to time, and the code will be more complicated if it needs to be handled properly.
55
+
-**Scalability and Parallelization**: When any multivariate operation is performed, the calculation logic needs to be redesigned under the native Python code implementation, and the processing will be more complicated and confusing, and the code quality is difficult to control.
56
+
57
+
## Getting Started
26
58
27
-
## Installation
59
+
### Prerequisite
60
+
61
+
`treevalue` has been fully tested in the Linux, macOS and Windows environments and with multiple Python versions, and it works properly on all these platforms.
62
+
63
+
However, **`treevalue` currently does not support PyPy**, so just pay attention to this when using it.
64
+
65
+
### Installation
28
66
29
67
You can simply install it with `pip` command line from the official PyPI site.
30
68
31
69
```shell
32
70
pip install treevalue
33
71
```
34
72
35
-
For more information about installation, you can refer to the [installation guide](https://opendilab.github.io/treevalue/main/tutorials/installation/index.html).
For more information about installation, you can refer to the [installation guide](https://opendilab.github.io/treevalue/main/tutorials/installation/index.html).
38
80
39
-
The detailed documentation are hosted on [https://opendilab.github.io/treevalue](https://opendilab.github.io/treevalue/).
81
+
After this, you can check if the installation is processed properly with the following code
40
82
41
-
Only english version is provided now, the chinese documentation is still under development.
83
+
```python
84
+
from treevalue import__version__
85
+
print('TreeValue version is', __version__)
86
+
```
42
87
43
-
## Quick Start
88
+
###Quick Usage
44
89
45
90
You can easily create a tree value object based on `FastTreeValue`.
*[Create a Tree](https://opendilab.github.io/treevalue/main/tutorials/basic_usage/index.html#create-a-tree)
199
+
*[Edit a Tree](https://opendilab.github.io/treevalue/main/tutorials/basic_usage/index.html#edit-the-tree)
200
+
*[Do Index or Slice Calculation on The Tree](https://opendilab.github.io/treevalue/main/tutorials/basic_usage/index.html#do-index-or-slice-calculation-on-the-tree)
201
+
*[Do Math Calculation on The Tree](https://opendilab.github.io/treevalue/main/tutorials/basic_usage/index.html#do-calculation-on-the-tree)
202
+
*[Make Function Tree-Supported](https://opendilab.github.io/treevalue/main/tutorials/basic_usage/index.html#make-function-tree-supported)
*[Costumize My TreeValue Class](https://opendilab.github.io/treevalue/main/tutorials/advanced_usage/index.html#diy-treevalue-class)
214
+
*[Visualization of TreeValue](https://opendilab.github.io/treevalue/main/tutorials/advanced_usage/index.html#draw-graph-for-treevalue)
215
+
216
+
### External
217
+
218
+
We provide an official treevalue-based-wrapper for numpy and torch called [DI-treetensor](https://github.com/opendilab/DI-treetensor) since the `treevalue` is often used with libraries like `numpy` and `torch`. It will actually be helpful while working with AI fields.
219
+
220
+
148
221
149
222
## Speed Performance
150
223
151
-
Here is the speed performance of all the operations in `FastTreeValue`, the following table is the performance comparison result with [dm-tree](https://github.com/deepmind/tree).
224
+
Here is the speed performance of all the operations in `FastTreeValue`; the following table is the performance comparison result with [dm-tree](https://github.com/deepmind/tree).
And this is the comparison between tianshou Batch and us, with `cat` , `stack` and `split` operations (**lower value means less time cost and runs faster**)
259
+
And this is the comparison between Tianshou Batch and us, with `cat` , `stack` and `split` operations (**lower value means less time cost and runs faster**)
187
260
188
261

189
262
@@ -197,36 +270,62 @@ Test benchmark code can be found here:
197
270
*[Comparison with jax-libtree](https://github.com/opendilab/treevalue/blob/main/test/compare/jax/test_jax.py)
198
271
*[Comparison with tianshou Batch](https://github.com/opendilab/treevalue/blob/main/test/compare/tianshou/test_tianshou_batch.py)
199
272
200
-
## Extension
273
+
## Change Log
201
274
202
-
If you need to translate `treevalue` object to runnable source code, you may use the [potc-treevalue](https://github.com/potc-dev/potc-treevalue) plugin with the installation command below
275
+
<details><summary><b>Version History</b> <i>[click to expand]</i></summary>
276
+
<div>
203
277
204
-
```shell
205
-
pip install potc-treevalue
206
-
```
278
+
* 2022-05-03
279
+
1.3.1: Change definition of getitem, setitem and delitem; add pop method for TreeValue class.
280
+
* 2022-03-15
281
+
1.3.0: Add getitem, setitem and delitem for adding, editing and removing items in TreeValue class.
282
+
* 2022-02-22
283
+
1.2.2: Optimize union function; add walk utility method.
284
+
* 2022-01-26
285
+
1.2.1: Update tree printing; add keys, values, items on TreeValue; add comparision to facebook nest library.
286
+
* 2022-01-04
287
+
1.2.0: Add flatten_values and flatten_keys; fix problem in mapping function; add support for potc.
288
+
* 2021-12-03
289
+
1.1.0: Add version information; fix bug of default value; add flatten and unflatten; optimization speed performance.
290
+
* 2021-10-24
291
+
1.0.0: Greatly optimize the speed performance using cython, overhead has been reduced to a negligible level.
292
+
</div>
293
+
</details>
207
294
208
-
Or just install it with `treevalue` itself
295
+
## Feedback and Contribute
209
296
210
-
```shell
211
-
pip install treevalue[potc]
212
-
```
297
+
Welcome to **OpenDILab** community - treevalue!
213
298
214
-
In potc, you can translate the objects to runnable python source code, which can be loaded to objects afterwards by the python interpreter, like the following graph
299
+
If you meet some problem or have some brilliant ideas, you can [file an issue](https://github.com/opendilab/treevalue/issues/new/choose).
Or just contact us with [slack](https://opendilab.slack.com/join/shared_invite/zt-v9tmv4fp-nUBAQEH1_Kuyu_q4plBssQ#/shared-invite/email) or email (opendilab.contact@gmail.com).
We appreciate all contributions to improve treevalue, both logic and system designs. Please refer to CONTRIBUTING.md for more guides.
311
+
Thanks to the following contributors!
227
312
228
-
And users can join our [slack communication channel](https://join.slack.com/t/opendilab/shared_invite/zt-v9tmv4fp-nUBAQEH1_Kuyu_q4plBssQ), or contact the core developer [HansBug](https://github.com/HansBug) for more detailed discussion.
0 commit comments