小编ubo*_*omb的帖子

PyBrain神经元操纵

有没有一种很好的方法可以在完全连接的PyBrain网络中添加/删除神经元及其相关连接?说我开始:

from pybrain.tools.shortcuts import buildNetwork
net = buildNetwork(2,3,1)
Run Code Online (Sandbox Code Playgroud)

我怎样才能使它成为(2,4,1)或(2,2,1)网络,同时保持所有旧权重(并在初始化网络时初始化任何新权重是随机的)?我想这样做的原因是因为我试图使用进化学习策略来确定最佳架构,而"突变"步骤则涉及以某种可能性添加/删除节点.(输入和输出模块应始终保持不变.)

编辑:我发现NeuronDecomposableNetwork应该让这更容易,但似乎我必须分别跟踪神经元和连接.

python neural-network pybrain

6
推荐指数
1
解决办法
1148
查看次数

如何让Internet Explorer正确处理自定义协议处理程序?

我想一个网站,我开发开放PuTTYssh://0.0.0.0输入网址.我在Chrome和Firefox中使用此功能,但在Internet Explorer中出现以下错误:

Windows cannot access the specified device, path, or file. You may not have the appropriate permissions to access this item.
Run Code Online (Sandbox Code Playgroud)

其次是:

Unable to open this helper application for ssh://0.0.0.0/.

The protocol specified in this address is not valid. Make sure the address is correct, and try again.
Run Code Online (Sandbox Code Playgroud)

这是我的注册表项:

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\ssh]
@="URL:SSH Protocol"
"URL Protocol"=""

[HKEY_CLASSES_ROOT\ssh\shell]

[HKEY_CLASSES_ROOT\ssh\shell\open]

[HKEY_CLASSES_ROOT\ssh\shell\open\command]
@="cmd /k set in=\"%l\" & call set in=%%in:ssh:=%% & call set in=%%in:/=%% & …
Run Code Online (Sandbox Code Playgroud)

windows registry internet-explorer

4
推荐指数
1
解决办法
4562
查看次数