Pyodide里的Tensorflow目录

可以跑通基本的训练、使用模型过程
This commit is contained in:
RXXXBNUer
2025-10-04 11:24:10 +08:00
parent 57b59e7d33
commit fe343c67ff
30 changed files with 1459 additions and 419 deletions

View File

@@ -1,7 +1,11 @@
import * as PythonPyodideSKLearnBlocks from './blocks/sklearn';
import * as PythonPyodideSKLearnGenerators from './generators/sklearn';
import * as PythonTensorflowBlocks from './blocks/tensorflow';
import * as PythonTensorflowGenerators from './generators/tensorflow';
export {
PythonPyodideSKLearnBlocks,
PythonPyodideSKLearnGenerators
PythonPyodideSKLearnGenerators,
PythonTensorflowBlocks,
PythonTensorflowGenerators
};