VI-Nomad 2.2.0

dotnet add package VI-Nomad --version 2.2.0
NuGet\Install-Package VI-Nomad -Version 2.2.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="VI-Nomad" Version="2.2.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add VI-Nomad --version 2.2.0
#r "nuget: VI-Nomad, 2.2.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install VI-Nomad as a Cake Addin
#addin nuget:?package=VI-Nomad&version=2.2.0

// Install VI-Nomad as a Cake Tool
#tool nuget:?package=VI-Nomad&version=2.2.0

NOMAD Void-Intelligence

Welcome To Nomad, A lightweight Matrix manipulation library currently under development.

Nomad's Matrix class supports a variety of different functions such as Norm Calculation, Dot Product, Dropout, Stressan's Algorithm, Inverse Calculation, Transpose Operation, Function Mapping, Random Initialization, Reshape Operation, Vector Broadcasting, Uniform and Gaussian Random Distribution, etc...

You can find the full list of all the capabilities in the matrix class documentation page.

Feedback

All feedback is highly appreciated, please do send them to my email: Nirex.0@Gmail.com

Documentation (OUT OF DATE)

The full API Documentation explaination on all aspects of the library, you can check it out here.

Quickstart

The quickstart guide will get you up and running with the nomad library in no time.

using System;
using Nomad.Core;
using Nomad.Utility;

namespace Sample
{
    public class Program
    {
        public static void Main()
        {
            // Create a matrix of size 5 (rows) and 10 (columns)
            Matrix mat = new Matrix(5, 10);

            // Randomly Initialize the values of your matrix with Gaussian Distribution 
            // Gaussian Dispersion will be ((high - low) / 2)
            mat.InRandomize(0.0, 1.0, EDistribution.Gaussian);

            // Transpose the Matrix mat and put it in matT
            Matrix matT = mat.T();

            // Calculate the dot product between the two matrices mat and matT and store the result in product
            Matrix product = mat * matT;

            // Flatten the product matrix inplace
            product.InFlatten();

            // Make sure the matrix has been transformed into a vector as expected
            Console.WriteLine(product.Type().ToString());

            // Transpose the vector inplace so it will print in 1 line
            product.InTranspose();

            // Convert the product vector into a string
            string str = product.ToString();

            // Print the product Vector
            Console.WriteLine(str);

            // End the program
            return;
        }
    }
}

Contact

Main Dev: Nirex.0@Gmail.com

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp3.0 is compatible.  netcoreapp3.1 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETCoreApp 3.0

    • No dependencies.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on VI-Nomad:

Package Downloads
NomadNetworkLibrary

A neural network library made as an example use-case of the package: VI-Nomad

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.2.0 535 6/22/2020

2.2.0 Add Strassen's Algorithm
2.1.0 All Possible Operations are now done in Parallel