Skip to content
View vermorel's full-sized avatar

Organizations

@Lokad
Block or Report

Block or report vermorel

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. Lokad/ILPack Lokad/ILPack Public

    Serialize .NET Core assemblies

    C# 303 39

  2. Lokad/FasterMath Lokad/FasterMath Public

    Intrinsics accelerated math functions for .NET Core - trading accuracy for performance

    C# 15 2

  3. Fast 1D convolution with AVX Fast 1D convolution with AVX
    1
    // Fast 1D convolution with AXV
    2
    // By Joannes Vermorel, Lokad, January 2018
    3
    // Released under MIT license
    4
    
                  
    5
    #include <string.h>
  4. C# Half-precision data type C# Half-precision data type
    1
    /// ================ Half.cs ====================
    2
    /// The code is free to use for any reason without any restrictions.
    3
    /// Ladislav Lang (2009), Joannes Vermorel (2017)
    4
    
                  
    5
    using System;
  5. Regression. A monolithic random fore... Regression. A monolithic random forest C# implementation, categorical variables treated as ordinals
    1
    using System;
    2
    using System.Collections.Generic;
    3
    using System.Diagnostics;
    4
    using System.Linq;
    5
    using NUnit.Framework;
  6. C# Z-Transform, the discrete version... C# Z-Transform, the discrete version of the Laplace transform
    1
    using System;
    2
    using System.Collections.Generic;
    3
    using System.Diagnostics;
    4
    
                  
    5
    namespace Lokad