Skip to content
This repository was archived by the owner on Nov 19, 2020. It is now read-only.
This repository was archived by the owner on Nov 19, 2020. It is now read-only.

ActivationNetwork function problem - System.IO.FileNotFoundException #1105

@Akihito759

Description

@Akihito759

What would you like to submit? (put an 'x' inside the bracket that applies)

  • question
  • bug report
  • feature request

Issue description
Hey, guys, I'm trying to make my first project with accord-net. UnfortynetlyI can't use ActivationNetwork function. I get the error:

"System.IO.FileNotFoundException: 'Couldn't find file or reference to 'Accord.Statistics, Version=3.8.0.0, Culture=neutral, PublicKeyToken=fa1a88e29555ccf7''"

I have downloaded from NuGet:
-Accord
-Accord.Genetic
-Accord.Math
-Accord.Neuro
I was trying to use 3.8.2 -alpha version and 3.8.0.

Here is my code:

namespace DeepLearningNumberRecognition
{
    public class NeutralNetwork
    {
        public NeutralNetwork(double[][] input,double[][] output)
        {
            IActivationFunction activationFunction = new BipolarSigmoidFunction();

            var network = new ActivationNetwork(activationFunction, 784, new[] { 100, 10 });

            var teacher = new LevenbergMarquardtLearning(network)
            {
                UseRegularization = true
            };

            var error = teacher.RunEpoch(input, output);
            Console.WriteLine(error);

        }
    }
}

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions