- 12 Sep, 2023 9 commits
-
-
Klaus Wölfel authored
Base_wendelinTextToNumpy just takes a string and pass it to numpy.load, but numpy.load will load pickles (problem from https://github.com/numpy/numpy/issues/12759 ). Therefore we disallow loading pickles here until this becomes the default in newer numpy versions. Co-authored-by: Jérome Perrin <jerome@nexedi.com>
-
Rafael Monnerat authored
All modules should use this base category.
-
Levin Zimmermann authored
With nexedi/erp5@a254bf50 numpy was allowed in erp5 upstream Restricted.py. There is no need for any duplication in wendelin. Tested at: https://erp5js.nexedi.net/#/test_result_module/20230223-AE5B8F75
-
Ivan Tyagov authored
-
Ivan Tyagov authored
-
Xiaowu Zhang authored
-
Xiaowu Zhang authored
erp5_wendelin_data_lake_ingestion_default_security_model: those module's Business Application are big data
-
Xiaowu Zhang authored
-
Nikola Balog authored
-
- 08 Sep, 2023 1 commit
-
-
Nikola Balog authored
-
- 05 Sep, 2023 1 commit
-
-
Nikola Balog authored
-
- 04 Sep, 2023 1 commit
-
-
Nikola Balog authored
-
- 11 Jan, 2023 6 commits
-
-
Roque authored
-
Roque authored
-
Ivan Tyagov authored
-
Ivan Tyagov authored
-
Ivan Tyagov authored
-
Ivan Tyagov authored
-
- 10 Jan, 2023 4 commits
-
-
Ivan Tyagov authored
-
Ivan Tyagov authored
-
Ivan Tyagov authored
-
Ivan Tyagov authored
See merge request nexedi/wendelin!106
-
- 09 Jan, 2023 3 commits
-
-
Roque authored
-
Ivan Tyagov authored
-
Ivan Tyagov authored
-
- 06 Jan, 2023 1 commit
-
-
Ivan Tyagov authored
-
- 02 Jan, 2023 1 commit
-
-
Ivan Tyagov authored
-
- 30 Dec, 2022 1 commit
-
-
Ivan Tyagov authored
-
- 21 Dec, 2022 1 commit
-
-
Ivan Tyagov authored
-
- 20 Dec, 2022 2 commits
-
-
Ivan Tyagov authored
Relicense to GPLv3+ with wide exception for all Free Software / Open Source projects + Business options. See merge request nexedi/wendelin!105
-
Kirill Smelkov authored
Relicense to GPLv3+ with wide exception for all Free Software / Open Source projects + Business options. Nexedi stack is licensed under Free Software licenses with various exceptions that cover three business cases: - Free Software - Proprietary Software - Rebranding As long as one intends to develop Free Software based on Nexedi stack, no license cost is involved. Developing proprietary software based on Nexedi stack may require a proprietary exception license. Rebranding Nexedi stack is prohibited unless rebranding license is acquired. Through this licensing approach, Nexedi expects to encourage Free Software development without restrictions and at the same time create a framework for proprietary software to contribute to the long term sustainability of the Nexedi stack. Please see https://www.nexedi.com/licensing for details, rationale and options.
-
- 19 Dec, 2022 1 commit
-
-
Ivan Tyagov authored
53b0c240 split categories to a separate bt5 which we need to install.
-
- 15 Dec, 2022 3 commits
-
-
Xiaowu Zhang authored
See merge request nexedi/wendelin!104
-
Xiaowu Zhang authored
same as others
-
Xiaowu Zhang authored
data mapping is used to map complex data into a single value the idea is if an object has complet data to process, like (object, value1, value2, value3,value4....), we can mapping (object, value1, value2, value3,value4....) into a single value X, then we process only X to make it faster here is an use case: we have two 2D data arrays with 5 columns, the first column is the name of object, the other fours are the differents value of this object Data ArrayA: | object | value1 | value2 | value3 | value4 | | ------ | ------ | ------ | ------ | ------ | | X | 1 | 2 | 3 | 4 | | Y | 5 | 6 | 7 | 8 | | Z | 9 | 10 | 11 | 12 | Data ArrayB: | object | value1 | value2 | value3 | value4 | | ------ | ------ | ------ | ------ | ------ | | X | 1 | 2 | 3 | 4 | | Y | 5 | 8 | 7 | 8 | | Z | 9 | 10 | 192 | 12 | now we need to compare data array A to data array B to find which object inside A has different value. without data mapping, we need to compare each object's 4 values, the complexity is O(2^n) with data mapping: we map those values: (X, 1, 2, 3, 4) ==> 1 (Y, 5, 6, 7, 8) ==> 2 (Z, 9, 10, 11,12) ==>3 (Y, 5, 8, 7, 8) ==> 4 (Z, 9, 10, 192, 12) ==> 5 Data ArrayA: | object | | ------ | | 1 | | 2 | | 3 | Data ArrayB: | object | | ------ | | 1 | | 4 | | 5 | then compare 1D array is fast, the complexity is O(n)
-
- 14 Dec, 2022 5 commits
-
-
Xiaowu Zhang authored
no idea why it's like this, let's just sort it to make furture commit easily
-
Xiaowu Zhang authored
See merge request !103
-
Xiaowu Zhang authored
-
Xiaowu Zhang authored
-
Xiaowu Zhang authored
by moving categories except big_data to a delicated bt5, we can easily install erp5_wendelin without category conflict big_data is used code to create and execute data analysis, maybe more. erp5_wendelin bt5 can't work without this category
-