CMPSCI/NSB 691C:
Homework #2: Prey Selection in Frog

Andrew H. Fagg

This is a programming exercise. It is due at 5 pm on Thursday, October 25th.

When a hungry frog is presented with a fly, he will snap at (and eat) the fly. When presented with multiple flies or stimuli that look like flys, the frog is faced with the problem of selecting one of the discrete objects before initiating a snap. As it turns out, frogs are also quiet good at taking into account the ``flyness'' of the stimuli in making the target selection (Ingle, 1968).

Didday (1970, 1976) suggested a winner-take-all circuit that selected one target from many. Amari and Arbib (1977) proposed a a biologically-inspired, distributed model of this circuit (figure 1). We assume a one-dimensional retina which delivers a value for each retinal position that corresponds to the ``flyness'' of a stimulus at that position (with a zero corresponding to no fly). This retinal input (I) is fed to a selection layer (L) which has the same dimensionality as the retina. These selection cells drive both a global inhibitor (S) and a motor output (M) that determines the direction of tongue snap.


  
Figure 1: Model of frog prey selection.
\begin{figure}\begin{center}
\epsfig{file=arch.eps, width = 4in}\par\end{center}
\end{figure}

The dynamics of these cells are defined as follows:


$\displaystyle \tau_L \frac{d L^{net}_i} {d t}$ = - Lneti + Ii + Li - S  
Li = $\displaystyle \left\{ \begin{array}{ll}
1 & \mbox{if~} L^{net}_i > thresh_L \\
0 & \mbox{otherwise}
\end{array}\right.$  
$\displaystyle \tau_S \frac{d S^{net}}{d t}$ = $\displaystyle -S^{net} +
\sum_{i=1}^N{L_i}$  
S = $\displaystyle \left\{ \begin{array}{ll}
S^{net} - thresh_S & \mbox{if~} S^{net} > thresh_S \\
0 & \mbox{otherwise}
\end{array}\right.$  
$\displaystyle \tau_M \frac{d M}{d t}$ = -M + T  
T = $\displaystyle \left\{ \begin{array}{ll}
\frac{\sum^N_{i=1}{L_i * X_i}}{\sum^N_{...
... &
\mbox{if~} \sum^N_{i=1}{L_i} > 0 \\
0 & \mbox{otherwise}
\end{array}\right.$  

I is the vector of retinal inputs; Linet and Li are the membrane potential and activation level of the i'th selection cell; Snet and S are the membrane potential and activation level of the inhibitor neuron; M is the motor output (indicating direction of snap); and Xi expresses the direction of snap given a selected stimulus at the i'th retinal location.

Note that once the global inhibitor is activated (by one or more of the selection units), it generates an inhibitory signal that suppresses the activation of all of the selection cells.

An experimental trial is conducted as follows:

Assume the following parameters:


$\displaystyle N \mbox{(number of retinal/selection units)}$ = 21  
timestep = $\displaystyle 10\;ms$  
$\displaystyle \tau_L$ = $\displaystyle 300\;msec$  
$\displaystyle \tau_S$ = $\displaystyle 300\;msec$  
$\displaystyle \tau_M$ = $\displaystyle 300\;msec$  
threshS = 0.1  
threshL = 0.5  
Xi = i-1 - (N-1)/2  

Model Behavior

Assume a stimulus at location 4 and ``flyness'' of 1 (i.e. I4 = 1).



Question 1.1: How long before our ``frog'' snaps? Show the evolution of the relevant state variables in a figure (i.e. L, Lnet, and M).






Question 1.2: Explain the occurrence of the peak in Lnet4 - i.e. why does the level drop after the peak?






Question 1.3: If the flyness is only 0.55, how long before the snap occurs? Explain the difference?




Assume a stimulus of 1 at position 8 and a stimulus of 0.6 at position 17.



Question 1.4: Where does the frog snap and when?




Assume that these stimuli are swapped.



Question 1.5: where does the frog snap and when?

Suppose there is a stimulus of 1 at 17 and one of 0.8 at 8.



Question 1.6: Where and when does the frog snap?




Suppose there is a stimulus of 1 at 17 and one of 0.95 at 8.



Question 1.7: Where and when does the frog snap?




Suppose there is a stimulus of 1 at 17 and one of 0.96 at 8.



Question 1.8: Where and when does the frog snap? Describe the time-course of the relevant selection unit state variables.




Suppose there is a stimulus of 1 at 17 and one of 0.999 at 8.



Question 1.9: Where and when does the frog snap?




Hysteresis

Suppose a fly of flyness level 0.8 appears at retinal position 13, and then a second fly of level 1.0 appears $1\;sec$ later at position 2.



Question 2.1: When and where does the frog snap? Explain.






Question 2.2: What is the longest delay at which the second stimulus can be presented such that it wins the competition? When does the frog snap?




Return to a presentation delay of $1\;sec$.



Question 2.3: How high would the second stimulus have to be before it wins the competition? When does the frog snap in this case?




Avoiding Deadlock

As you have observed, there are stimulus conditions under which the frog circuit cannot make a snap decision before he is forced to snap - even though there are suitable stimuli at which to snap.



Question 3.1: Suggest and implement a simple, distributed mechanism that reduces the probability of our frog choosing the average fly. Be convincing in your demonstration that your fix works well; it does not have to work correctly every time (just often enough for our frog not to starve).




About this document ...

CMPSCI/NSB 691C:
Homework #2: Prey Selection in Frog

This document was generated using the LaTeX2HTML translator Version 98.1p1 release (March 2nd, 1998)

Copyright © 1993, 1994, 1995, 1996, 1997, Nikos Drakos, Computer Based Learning Unit, University of Leeds.

The command line arguments were:
latex2html -no_navigation -split 0 -t CMPSCI/NSB 691C: HW2 -dir html -no_reuse -tmp /tmp hw2.tex.

The translation was initiated by Andrew H. Fagg on 2001-10-11


Andrew H. Fagg
2001-10-11