From 329cbc68eeb21948feede8caa8ef4ed07d54f7bc Mon Sep 17 00:00:00 2001 From: Joel Date: Thu, 26 Nov 2015 03:21:21 -0700 Subject: [PATCH] Changed links to zip files The zip files and dlls are now in new locations because they are separated into Debug and Release folders. Also my previous zip utility was producing empty zip files, so I switched to 7zip. --- README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 2204eebc..ac7a15b6 100644 --- a/README.md +++ b/README.md @@ -18,20 +18,20 @@ All of the FANN neural_net and training_data C++ wrapper functionality is availa You have 4 options: 1. For a network that supports float neural networks: - - For x64 download [FANNCSharp.Float.dll](bin/x64/FANNCSharp.Float.dll?raw=true) and [fannfloat.dll](bin/x64/fannfloat.dll?raw=true) - - For x86 download [FANNCSharp.Float.dll](bin/x86/FANNCSharp.Float.dll?raw=true) and [fannfloat.dll](bin/x86/fannfloat.dll?raw=true) + - For x64 download [FANNCSharp.Float.dll and fannfloat.dll](bin/Release/x64/FANNCSharp.FloatReleasex64.zip?raw=true) + - For x86 download [FANNCSharp.Float.dll and fannfloat.dll](bin/Release/x86/FANNCSharp.FloatReleasex86.zip?raw=true) - In your project add a reference to FANNCSharp.Float.dll and make sure fannfloat.dll is in the same directory or is findable through your $PATH 2. For a network that supports double neural networks: - - For x64 download [FANNCSharp.Double.dll](bin/x64/FANNCSharp.Double.dll?raw=true) and [fannfloat.dll](bin/x64/fanndouble.dll?raw=true) - - For x86 download [FANNCSharp.Double.dll](bin/x86/FANNCSharp.Double.dll?raw=true) and [fanndouble.dll](bin/x86/fanndouble.dll?raw=true) + - For x64 download [FANNCSharp.Double.dll and fanndouble.dll](bin/Release/x64/FANNCSharp.DoubleReleasex64.zip?raw=true) + - For x86 download [FANNCSharp.Double.dll and fanndouble.dll](bin/Release/x86/FANNCSharp.DoubleReleasex86.zip?raw=true) - In your project add a reference to FANNCSharp.Double.dll and make sure fanndouble.dll is in the same directory or is findable through your $PATH 3. For a network that supports fixed neural networks: - - For x64 download [FANNCSharp.Fixed.dll](bin/x64/FANNCSharp.Fixed.dll?raw=true) and [fannfixed.dll](bin/x64/fannfixed.dll?raw=true) - - For x86 download [FANNCSharp.Fixed.dll](bin/x86/FANNCSharp.Fixed.dll?raw=true) and [fannfixed.dll](bin/x86/fannfixed.dll?raw=true) + - For x64 download [FANNCSharp.Fixed.dll and fannfixed.dll](bin/Release/x64/FANNCSharp.FixedReleasex64.zip?raw=true) + - For x86 download [FANNCSharp.Fixed.dll and fannfixed.dll](bin/Release/x86/FANNCSharp.FixedReleasex86.zip?raw=true) - In your project add a reference to FANNCSharp.Fixed.dll and make sure fannfixed.dll is in the same directory or is findable through your $PATH 4. For a dll that supports all 3 types of neural networks for easy switching: - - For x64 download [FANNCSharpx64.zip](bin/x64/FANNCSharpx64.zip?raw=true) - - For x86 download [FANNCSharpx86.zip](bin/x86/FANNCSharpx86.zip?raw=true) + - For x64 download [FANNCSharpx64.zip](/bin/Release/x64/FANNCSharpReleasex64.zip?raw=true) + - For x86 download [FANNCSharpx86.zip](/bin/Release/x86/FANNCSharpReleasex86.zip?raw=truee) - Extract the zip files in your project or wherever you want them to be - In your project add a reference to FANNCSharp.dll and make sure fannfloat.dll, fanndouble.dll and fannfixed.dll are in the same directory or are findable through your $PATH - To easily switch between the different types of networks do what the example projects do and add the following code to the top of your file: