@datagrok/eda 1.1.28 → 1.1.29
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.
- package/CHANGELOG.md +5 -0
- package/README.md +1 -0
- package/dist/{05e5e0770f54f07e9474.wasm → 12a82b8001995d426ed2.wasm} +0 -0
- package/dist/23.js +1 -1
- package/dist/23.js.map +1 -1
- package/dist/501.js +2 -0
- package/dist/501.js.map +1 -0
- package/dist/727.js +2 -0
- package/dist/727.js.map +1 -0
- package/dist/package.js +1 -1
- package/dist/package.js.map +1 -1
- package/package.json +5 -5
- package/scripts/command.txt +1 -1
- package/scripts/func.json +664 -1
- package/scripts/module.json +1 -1
- package/src/data-generators.ts +1 -44
- package/src/missing-values-imputation/ui.ts +16 -6
- package/src/package.ts +60 -78
- package/src/regression.ts +1 -1
- package/src/softmax-classifier.ts +412 -0
- package/src/svm.ts +11 -33
- package/src/workers/softmax-worker.ts +146 -0
- package/wasm/EDA.js +55 -1
- package/wasm/EDA.wasm +0 -0
- package/wasm/EDAAPI.js +15 -0
- package/wasm/EDAForWebWorker.js +1 -1
- package/wasm/regression.h +2 -5
- package/wasm/softmax-api.cpp +49 -0
- package/wasm/softmax.h +156 -0
- package/wasm/workers/fitSoftmaxWorker.js +13 -0
- package/webpack.config.js +3 -2
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@datagrok/eda",
|
|
3
3
|
"friendlyName": "EDA",
|
|
4
|
-
"version": "1.1.
|
|
4
|
+
"version": "1.1.29",
|
|
5
5
|
"description": "Exploratory Data Analysis Tools",
|
|
6
6
|
"dependencies": {
|
|
7
7
|
"@datagrok-libraries/math": "^1.1.10",
|
|
@@ -25,14 +25,14 @@
|
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"@typescript-eslint/eslint-plugin": "^5.32.0",
|
|
27
27
|
"@typescript-eslint/parser": "^5.32.0",
|
|
28
|
+
"css-loader": "latest",
|
|
28
29
|
"eslint": "^8.21.0",
|
|
29
30
|
"eslint-config-google": "^0.14.0",
|
|
31
|
+
"style-loader": "latest",
|
|
30
32
|
"ts-loader": "latest",
|
|
31
33
|
"typescript": "latest",
|
|
32
34
|
"webpack": "latest",
|
|
33
|
-
"webpack-cli": "latest"
|
|
34
|
-
"css-loader": "latest",
|
|
35
|
-
"style-loader": "latest"
|
|
35
|
+
"webpack-cli": "latest"
|
|
36
36
|
},
|
|
37
37
|
"scripts": {
|
|
38
38
|
"link-all": "npm link datagrok-api @datagrok-libraries/utils @datagrok-libraries/tutorials",
|
|
@@ -91,4 +91,4 @@
|
|
|
91
91
|
}
|
|
92
92
|
}
|
|
93
93
|
}
|
|
94
|
-
}
|
|
94
|
+
}
|
package/scripts/command.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
em++ -O3 ../wasm/pcaExport.cpp ../wasm/PCA/PCA.cpp ../wasm/plsExport.cpp ../wasm/PLS/PLS.cpp ../wasm/svmApi.cpp ../wasm/regression-api.cpp -o ../wasm/EDA.js -s TOTAL_MEMORY=268435456 -s WASM=1 -s ALLOW_MEMORY_GROWTH=1 -s MODULARIZE=1 -s EXPORT_NAME="exportEDA" -s EXPORTED_FUNCTIONS=["_principalComponentAnalysis","_error","_partialLeastSquareRegression","_generateDataset","_normalizeDataset","_trainLSSVM","_predictByLSSVM","_trainAndAnalyzeLSSVM","_fitLinearRegressionParamsWithDataNormalizing","_fitLinearRegressionParams","_malloc","_free"] -s EXPORTED_RUNTIME_METHODS=["cwrap","ccall"] -sENVIRONMENT=web,worker
|
|
1
|
+
em++ -O3 ../wasm/pcaExport.cpp ../wasm/PCA/PCA.cpp ../wasm/plsExport.cpp ../wasm/PLS/PLS.cpp ../wasm/svmApi.cpp ../wasm/regression-api.cpp ../wasm/softmax-api.cpp -o ../wasm/EDA.js -s TOTAL_MEMORY=268435456 -s WASM=1 -s ALLOW_MEMORY_GROWTH=1 -s MODULARIZE=1 -s EXPORT_NAME="exportEDA" -s EXPORTED_FUNCTIONS=["_principalComponentAnalysis","_error","_partialLeastSquareRegression","_generateDataset","_normalizeDataset","_trainLSSVM","_predictByLSSVM","_trainAndAnalyzeLSSVM","_fitLinearRegressionParamsWithDataNormalizing","_fitLinearRegressionParams","_fitSoftmax","_malloc","_free"] -s EXPORTED_RUNTIME_METHODS=["cwrap","ccall"] -sENVIRONMENT=web,worker
|