您好,我正在遵循浏览器Brain.js脚本的示例,这是示例代码:
<script src="brain-controller.js"></script>
<script>
net = new brain.recurrent.LSTM()
net.train([
'doe, a deer, a female deer',
'ray, a drop of golden sun',
'me, a name I call myself',
])
output = net.run('doe') // ', a deer, a female deer'
console.log(output)
</script>
brain-controller.js
是brain.js脚本的更新版本,请不要使用CDNJS脚本!!!这是坏的!因此,这也很糟糕,效果也不佳。我无法在nodejs中运行brainjs脚本,这给了我这个错误:TypeError: Cannot read property 'LSTM' of undefined
at Object.<anonymous> (C:\Users\alumno_ciclo\bot1.js:1:46)
[90m at Module._compile (internal/modules/cjs/loader.js:1121:30)[39m
[90m at Object.Module._extensions..js (internal/modules/cjs/loader.js:1160:10)[39m
[90m at Module.load (internal/modules/cjs/loader.js:976:32)[39m
[90m at Function.Module._load (internal/modules/cjs/loader.js:884:14)[39m
[90m at Function.executeUserEntryPoint [as runMain] (internal/modules/run_main.js:67:12)[39m
[90m at internal/main/run_main_module.js:17:47[39m
当我执行
npm install brain.js
时,会出现以下错误:MSBUILD : error MSB3428: No se pudo cargar el componente "VCBuild.exe" de Visual C++. Para corregir este problema, 1) i
nstale .NET Framework 2.0 SDK, 2) instale Microsoft Visual Studio 2005 o 3) agregue la ubicación del componente a la ru
ta de acceso del sistema si está instalado en otro lugar. [C:\Users\usuario\node_modules\gl\build\binding.sln]
gyp ERR! build error
gyp ERR! stack Error: `C:\Windows\Microsoft.NET\Framework\v4.0.30319\msbuild.exe` failed with exit code: 1
gyp ERR! stack at ChildProcess.onExit (C:\Program Files\nodejs\node_modules\npm\node_modules\node-gyp\lib\build.js:262:23)
gyp ERR! stack at ChildProcess.emit (events.js:198:13)
gyp ERR! stack at Process.ChildProcess._handle.onexit (internal/child_process.js:248:12)
gyp ERR! System Windows_NT 10.0.17763
gyp ERR! command "C:\\Program Files\\nodejs\\node.exe" "C:\\Program Files\\nodejs\\node_modules\\npm\\node_modules\\node-gyp\\bin\\node-gyp.js" "rebuild"
gyp ERR! cwd C:\Users\usuario\node_modules\gl
gyp ERR! node -v v10.16.3
gyp ERR! node-gyp -v v3.8.0
gyp ERR! not ok
npm WARN [email protected] No description
npm WARN [email protected] No repository field.
npm WARN [email protected] No license field.
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! [email protected] install: `prebuild-install || node-gyp rebuild`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the [email protected] install script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\usuario\AppData\Roaming\npm-cache\_logs\2020-02-07T14_09_02_546Z-debug.log
我该做什么???
最佳答案
您必须导入的库不正确。您可以在此处看到使用CDN的代码。指定迭代次数(默认值为20,000(请参见here))和/或错误阈值,以提高性能。
function test() {
net = new brain.recurrent.LSTM()
net.train([
'doe, a deer, a female deer',
'ray, a drop of golden sun',
'me, a name I call myself',
], {
iterations: 1500,
log: details => console.log(details),
errorThresh: 0.011
});
output = net.run('doe') // ', a deer, a female deer'
const myOutput = document.querySelector('#myOutput');
myOutput.innerHTML = output;
console.log(output)
}
test();
<script src="//unpkg.com/brain.js"></script>
<div id=myOutput></div>
关于javascript - 为什么这个brain.js脚本太迟了?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/60062056/