[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Cascade correlation, convolution networks, other questions



Alec <alec314159@yahoo.com> writes:
> I just began playing with PDP++. The web site mentions the flexibility of 
> PDP++. I'm wondering if one can implement the cascade correlation algorithm 
> or the convolution networks using PDP++. What about network pruning?

it hasn't been done so far as I know but it certainly is possible.
there are functions for removing connections so pruning is easy --
there is a "PruneCons" routine for removing connections as a function
of weight values already.

> Also, does PDP++ engine work as some sort of interpreter? How does its 
> performance compare to the same NN algorithms written from scratch in C++?

all the algorithm code is compiled c++ and should run as fast as
possible, tho using vectors instead of objects & pointers for
connections is faster, but significantly less flexible.., it also
includes a script language that compiles into an object-oriented
"machine" that is actually run.

				- Randy