[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: simple hopfield net
"Fiona M Richardson" <F.1.Richardson@herts.ac.uk> writes:
> I have built myself a series of hopfield nets to get me accustomed to the
> cs++ part of PDP and successfully managed to build a control panel. However,
> I now want to adapt my control panel to change the testing environment and
> to view different environments. Is there a simple way of doing this?
to set an environment for a set of processes (e.g., your testing
process), just do:
.processes.YourProcess.environment = .environments.YourEnv;
// replace YourProcess and YourEnv with paths to the right things
To view an environment:
.environments.YourEnv.ViewWindow();
> Also,
> my net when I present noisy patterns in testing doesn't seem to settle into
> the stable trained pattern...I can not find what is set up wrong...
pattern completion in cs++ is not always robust as one might
think.. try very small amounts of noise.
- Randy