Esempio n. 1
0
        // Create a problem set, based on the student, level, and problem type
        // TODO Need to add missed problems to this set
        public ProblemSet(int studentID, int Level, ProblemTypeEnum probType)
        {
            this.sid      = studentID;
            this.level    = Level;
            this.probType = probType;

            // Populate the problem list for this student,
            // with random problems based on level and problem type
            PopulateProblemList();
        }
Esempio n. 2
0
 public void Construct(
     List<int> layers,
     FunctionTypeEnum function,
     bool bias,
     int iterations,
     double learning,
     double inertia,
     ProblemTypeEnum problem,
     double error = 0.001)
 {
     Layers = layers;
     FunctionType = function;
     Bias = bias;
     IterationsCount = iterations;
     LearingCoefficient = learning;
     InertiaCoefficient = inertia;
     ProblemType = problem;
     AcceptedError = error;
 }
Esempio n. 3
0
 public void Construct(
     List <int> layers,
     FunctionTypeEnum function,
     bool bias,
     int iterations,
     double learning,
     double inertia,
     ProblemTypeEnum problem,
     double error = 0.001)
 {
     Layers             = layers;
     FunctionType       = function;
     Bias               = bias;
     IterationsCount    = iterations;
     LearingCoefficient = learning;
     InertiaCoefficient = inertia;
     ProblemType        = problem;
     AcceptedError      = error;
 }