This file is indexed.

/usr/share/octave/packages/nnet-0.1.13/__init.m is in octave-nnet 0.1.13-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
## Copyright (C) 2005 Michel D. Schmid  <michaelschmid@users.sourceforge.net>
##
##
## This program is free software; you can redistribute it and/or modify it
## under the terms of the GNU General Public License as published by
## the Free Software Foundation; either version 2, or (at your option)
## any later version.
##
## This program is distributed in the hope that it will be useful, but
## WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
## General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with this program; see the file COPYING.  If not, see
## <http://www.gnu.org/licenses/>.

## -*- texinfo -*-
## @deftypefn {Function File} {} @var{net} = __init (@var{net})
## @code{__init} initializes a neural network. This will be done
## with the function @code{rand} from octave.
##
## @example
## net = __init(net);
## @end example
##
## This function takes the octave function "rand" to init the 
## neural network weights.
##
## @noindent
## @end deftypefn


## Author: Michel D. Schmid

function net=__init(net)

  ## check number of inputs
  error(nargchk(1,1,nargin));

  ## check input
  if ( !__checknetstruct(net) )
    error("__init: wrong argument type, must be a structure!");
  endif


  if (strcmp(net.networkType,"newff"))

    ## init with random numbers between +-1
    ## input weight layer
    mRand = rand(net.layers{1}.size,net.inputs{1}.size);
    net.IW{1} = mRand*2-1;

    ## hidden layers
    nLayers = net.numLayers;
    for i=2:nLayers
      mRand = rand(net.layers{i}.size,net.layers{i-1}.size);
      net.LW{i,i-1} = mRand*2-1;
    endfor
    for i=1:nLayers
      mRand = rand(net.biases{i}.size,1);
      net.b{i} = mRand*2-1;
    endfor
  elseif (strcmp(net.networkType,"newp"))

    ## init with zeros
    inputRows = size(net.inputs{1,1}.range,1);
    net.IW{1} = zeros(inputRows,1);
    net.b{1} = zeros(1,1);
  endif

  ## warn user of constant inputs
  for i=1:net.numInputs
    prange = net.inputs{i}.range;
    if (any(prange(:,1) == prange(:,2)))
      fprintf("\n")
      fprintf("** Warning in INIT\n")
      fprintf("** Network net.inputs{%g}.range has a row with equal min and max values.\n",i)
      fprintf("** Constant inputs do not provide useful information.\n")
      fprintf("\n")
    end
  end

endfunction