Pinned Loading
-
Universal Number Base Converter
Universal Number Base Converter 1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Numerics;
5using System.Text;
-
Xaml Slider with Value
Xaml Slider with Value 1<ResourceDictionary
2xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4xmlns:local="clr-namespace:RenderLoopDemo">
5 -
Extensions
Extensions 1using System.Collections.Generic;
2using System.Linq;
34public static class Extensions
5{
-
Activation Functions
Activation Functions 1public static class ActivationFx
2{
3//https://en.wikipedia.org/wiki/Activation_function
4//https://en.wikipedia.org/wiki/Sigmoid_function
5//https://www.desmos.com/calculator/pyhbgow7ba
-
Random Helper Class
Random Helper Class 1using System;
2using System.Collections.Generic;
3using System.Linq;
45public static class RandomEx
-
Iterative Tree Traversal
Iterative Tree Traversal 1//https://www.techiedelight.com/inorder-tree-traversal-iterative-recursive/
23// Iterative function to perform in-order traversal of the tree
4public IEnumerable<object> inorderIterative()
5{
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.