nodecommons-esm-ai-tensorflow 0.0.12 → 0.0.13
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/dist/index.d.mts +7 -7
- package/dist/index.mjs +6 -6
- package/dist/index.mjs.map +1 -1
- package/package.json +5 -5
package/dist/index.d.mts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { TLeNetData } from './types/tlet-net-data.mjs';
|
|
2
|
-
import { ECommonsAiTensorflowSimpleEarlyStoppingLogic, TCommonsAiTensorflowSimpleEarlyStoppingOptions, CommonsAiTensorflowSimpleEarlyStopping } from './classes/tensorflow-simple-early-stopping.mjs';
|
|
3
1
|
import { TAlexNetData, CommonsAiTensorflowAlexNetTraining } from './classes/tensorflow-alex-net-training.mjs';
|
|
2
|
+
import { CommonsAiTensorflowLeNetTraining } from './classes/tensorflow-le-net-training.mjs';
|
|
3
|
+
import { CommonsAiTensorflowSequential, CommonsAiTensorflowSequentialTraining } from './classes/tensorflow-sequential.mjs';
|
|
4
|
+
import { CommonsAiTensorflowSequentialOnehotEnums, CommonsAiTensorflowSequentialOnehotEnumsTraining } from './classes/tensorflow-sequential-onehot-enums.mjs';
|
|
4
5
|
import { CommonsAiTensorflowPythonBridge } from './classes/python-bridge.mjs';
|
|
5
|
-
import { CommonsAiTensorflowEarlyStopping } from './classes/tensorflow-early-stopping.mjs';
|
|
6
6
|
import { ILearningFactorControllable, CommonsAiTensorflowRMSPropLearningFactorController } from './classes/tensorflow-rms-prop-learning-factor-controller.mjs';
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
7
|
+
import { ECommonsAiTensorflowSimpleEarlyStoppingLogic, TCommonsAiTensorflowSimpleEarlyStoppingOptions, CommonsAiTensorflowSimpleEarlyStopping } from './classes/tensorflow-simple-early-stopping.mjs';
|
|
8
|
+
import { CommonsAiTensorflowEarlyStopping } from './classes/tensorflow-early-stopping.mjs';
|
|
9
|
+
import { TLeNetData } from './types/tlet-net-data.mjs';
|
|
10
10
|
import { ICommonsAiTensorflowExportable } from './interfaces/icommons-ai-tensorflow-exportable.mjs';
|
|
11
|
-
export {
|
|
11
|
+
export { TAlexNetData, CommonsAiTensorflowAlexNetTraining, CommonsAiTensorflowLeNetTraining, CommonsAiTensorflowSequential, CommonsAiTensorflowSequentialTraining, CommonsAiTensorflowSequentialOnehotEnums, CommonsAiTensorflowSequentialOnehotEnumsTraining, CommonsAiTensorflowPythonBridge, ILearningFactorControllable, CommonsAiTensorflowRMSPropLearningFactorController, ECommonsAiTensorflowSimpleEarlyStoppingLogic, TCommonsAiTensorflowSimpleEarlyStoppingOptions, CommonsAiTensorflowSimpleEarlyStopping, CommonsAiTensorflowEarlyStopping, TLeNetData, ICommonsAiTensorflowExportable };
|
package/dist/index.mjs
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { ECommonsAiTensorflowSimpleEarlyStoppingLogic, CommonsAiTensorflowSimpleEarlyStopping } from './classes/tensorflow-simple-early-stopping.mjs';
|
|
2
1
|
import { CommonsAiTensorflowAlexNetTraining } from './classes/tensorflow-alex-net-training.mjs';
|
|
2
|
+
import { CommonsAiTensorflowLeNetTraining } from './classes/tensorflow-le-net-training.mjs';
|
|
3
|
+
import { CommonsAiTensorflowSequential, CommonsAiTensorflowSequentialTraining } from './classes/tensorflow-sequential.mjs';
|
|
4
|
+
import { CommonsAiTensorflowSequentialOnehotEnums, CommonsAiTensorflowSequentialOnehotEnumsTraining } from './classes/tensorflow-sequential-onehot-enums.mjs';
|
|
3
5
|
import { CommonsAiTensorflowPythonBridge } from './classes/python-bridge.mjs';
|
|
4
|
-
import { CommonsAiTensorflowEarlyStopping } from './classes/tensorflow-early-stopping.mjs';
|
|
5
6
|
import { CommonsAiTensorflowRMSPropLearningFactorController } from './classes/tensorflow-rms-prop-learning-factor-controller.mjs';
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
|
|
9
|
-
export { ECommonsAiTensorflowSimpleEarlyStoppingLogic, CommonsAiTensorflowSimpleEarlyStopping, CommonsAiTensorflowAlexNetTraining, CommonsAiTensorflowPythonBridge, CommonsAiTensorflowEarlyStopping, CommonsAiTensorflowRMSPropLearningFactorController, CommonsAiTensorflowSequentialOnehotEnums, CommonsAiTensorflowSequentialOnehotEnumsTraining, CommonsAiTensorflowSequential, CommonsAiTensorflowSequentialTraining, CommonsAiTensorflowLeNetTraining };
|
|
7
|
+
import { ECommonsAiTensorflowSimpleEarlyStoppingLogic, CommonsAiTensorflowSimpleEarlyStopping } from './classes/tensorflow-simple-early-stopping.mjs';
|
|
8
|
+
import { CommonsAiTensorflowEarlyStopping } from './classes/tensorflow-early-stopping.mjs';
|
|
9
|
+
export { CommonsAiTensorflowAlexNetTraining, CommonsAiTensorflowLeNetTraining, CommonsAiTensorflowSequential, CommonsAiTensorflowSequentialTraining, CommonsAiTensorflowSequentialOnehotEnums, CommonsAiTensorflowSequentialOnehotEnumsTraining, CommonsAiTensorflowPythonBridge, CommonsAiTensorflowRMSPropLearningFactorController, ECommonsAiTensorflowSimpleEarlyStoppingLogic, CommonsAiTensorflowSimpleEarlyStopping, CommonsAiTensorflowEarlyStopping };
|
|
10
10
|
//# sourceMappingURL=index.mjs.map
|
package/dist/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.mjs","sourceRoot":"","sources":["../src/index.mts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.mjs","sourceRoot":"","sources":["../src/index.mts"],"names":[],"mappings":"AAAA,OAAO,EAAgB,kCAAkC,EAAE,MAAM,4CAA4C,CAAC;AAC9G,OAAO,EAAE,gCAAgC,EAAE,MAAM,0CAA0C,CAAC;AAC5F,OAAO,EAAE,6BAA6B,EAAE,qCAAqC,EAAE,MAAM,qCAAqC,CAAC;AAC3H,OAAO,EAAE,wCAAwC,EAAE,gDAAgD,EAAE,MAAM,kDAAkD,CAAC;AAC9J,OAAO,EAAE,+BAA+B,EAAE,MAAM,6BAA6B,CAAC;AAC9E,OAAO,EAA+B,kDAAkD,EAAE,MAAM,8DAA8D,CAAC;AAC/J,OAAO,EAAE,4CAA4C,EAAkD,sCAAsC,EAAE,MAAM,gDAAgD,CAAC;AACtM,OAAO,EAAE,gCAAgC,EAAE,MAAM,yCAAyC,CAAC;AAG3F,OAAO,EAEN,kCAAkC,EAClC,gCAAgC,EAChC,6BAA6B,EAC7B,qCAAqC,EACrC,wCAAwC,EACxC,gDAAgD,EAChD,+BAA+B,EAE/B,kDAAkD,EAClD,4CAA4C,EAE5C,sCAAsC,EACtC,gCAAgC,EAGhC,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nodecommons-esm-ai-tensorflow",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.13",
|
|
4
4
|
"description": "",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"tsc": "./node_modules/typescript/bin/tsc",
|
|
@@ -28,9 +28,9 @@
|
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@tensorflow/tfjs-core": "4.22.0",
|
|
30
30
|
"@tensorflow/tfjs-layers": "4.22.0",
|
|
31
|
-
"nodecommons-esm-ai": "^0.0.
|
|
32
|
-
"nodecommons-esm-process": "^1.1.
|
|
33
|
-
"tscommons-esm-ai": "^0.0.
|
|
34
|
-
"tscommons-esm-core": "^0.
|
|
31
|
+
"nodecommons-esm-ai": "^0.0.8",
|
|
32
|
+
"nodecommons-esm-process": "^1.1.5",
|
|
33
|
+
"tscommons-esm-ai": "^0.0.13",
|
|
34
|
+
"tscommons-esm-core": "^0.3.0"
|
|
35
35
|
}
|
|
36
36
|
}
|