- Clusters:
clusters=(prop, nclusters, mperclus)
orNone
for arbitrary meaningsprop
: the proportion of meaning dimensions fixed for each clusternclusters
: number of clustersnperclus
: number of meanings per cluster
- Number of dimensions:
mlength
- Number of values:
mvalues
- Number of dimensions:
flength
- Number of values (same as for meanings):
mvalues
- Whether iconicity is built into initial lexicon:
iconic
- Proportion of dimensions that are not copied from meaning in initial lexicon:
deiconize
(actual number copied also depends onmvalues
- Whether the non-copied dimensions are the same for all entries:
constant_flip
- Proportion of dimensions that are not copied from meaning in initial lexicon:
- Whether features in all forms are rounded to the nearest of
mvalues
values (0<=v<=1):Form.roundQ
.
- Network hidden layer size:
nhid
- Number of training "cycles" (in
meta_experiment
):nruns
- What happens during the initialization cycle.
- The "master teacher" creates an initial
Lexicon
, based on parameters controllingMeaning
s andForm
s. - The master teacher trains its comprehension, production, and joint networks, using
teach
with teacher and student the same, updating itsLexicon
on the basis of the form layer of the joint network. - Until each other
Person
has been trained on aLexicon
, aPerson
already trained is selected randomly to train an untrainedPerson
. The student's comprehension, production, and joint networks are trained in the targetLexicon
, usingteach
, and its initialLexicon
is created from the form layer of its joint network.
- The "master teacher" creates an initial
- What happens on a training cycle. For randomly selected pair of
Person
s,p1
andp2
,- If
match
isTrue
, runmatch_meanings
on the pair, updatingp1
's lexicon if there are misses, that is, if the meaning input top1'
s production network does not match the output ofp2
's comprehension network, given the output ofp1
's network as input. After updates, retrainp1
's comprehension, production, and joint networks. - If
match_meanings
found any misses andteach
isTrue
or ifmatch
isFalse
, runteach
on the pair, withp1
as the teacher. Trainp2
's comprehension, production, and joint networks on entries inp1
's current lexicon, updatingp2
's lexicon based on the forms in its joint network.
- If
- Parameters controlling
teach
- How many trials to train comprehension and production networks (
trials_per_lex
) and joint network (joint_trials_per_lex
) [Note: this may vary for the first and subsequent calls toteach
and for training of the "master teacher" on its initialLexicon
vs. training of non-teachers by teachers during initialization.] - What learning rates to use for training comprehension and production networks (
lr
) and joint network (joint_lr
) [Note: this may vary for the first and subsequent calls toteach
.] - Whether noise is added to input and target forms:
noise
. Ifnoise
is not 0.0, its value is used for thesd
parameter innoisify
.
- How many trials to train comprehension and production networks (
- Parameters controlling
match_meanings
- How many trials to train comprehension and production networks (
trials_per_lex
) and joint network (joint_trials_per_lex
) of "learner" - How many times to retrain "learner" if there are still missed meanings (but fewer than on the last repetition):
nreps
- How many trials to train comprehension and production networks (
- How lexicons are updated
test_all
run on aPerson
's joint network or the combined production and comprehension networks of twoPerson
s duringmatch_meanings
saves the forms from the appropiate layer of the network; these are then used to update the lexicon of the "learner".test_all
also records "misses", meanings which are not correctly reproduced on the output of the comprehension network. During updating, the forms for these entries are modified.
- Parameters controlling how missed forms are changed
- Whether noise is added vs. separating current form from form associated with incorrect output meaning:
noisify_errors
- For
separate
, how far to move a form from the form it's confused with:sep_amount
.
- Whether noise is added vs. separating current form from form associated with incorrect output meaning:
- Distance: distance between corresponding entries in lexicons of two
Person
s. - Mutuality: network output error and miss error for pair of
Person
s tested usingtest_all
. - Iconicity: entire lexicon, within clusters, between clusters
- For each form dimension, highest absolute correlation with a meaning dimension (
iconicity
) - For each form dimension, correlation with each meaning dimension (
dim_iconicity
) - Correlation of distances between pairs of meanings and their corresponding forms (
distcorr
)
- For each form dimension, highest absolute correlation with a meaning dimension (
- All
Person
s quickly converge on the sameLexicon
s. Population size, at least between 5 and 10, doesn't seem to matter much. - There is great variation from one run (new
Population
) to another, given the same set of parameters settings, apparently due both to spurious structure in the initialLexicon
as well as the initial weights of the "master teacher". - Different ways of fixing errors (forms that result in missed output meanings of joint and paired networks) have little effect on overall and dimension-specific iconicity, however measured.
- Structured meaning spaces (with clusters) are overall more difficult to learn than random spaces, but the expected lower iconicity does not appear consistently under any conditions.
- In difficult situations, for whatever reason, the networks may not converge on a better solution after many training cycles, even when this is apparently possible given the current resources.
- There's some indication that some form dimensions may specialize in particular meaning dimensions, in particular one of the within-cluster constant dimensions. But even when there's redundancy among these dimensions, more than one may end up attended to.