Skip to content

Instantly share code, notes, and snippets.

View stefan-baumann's full-sized avatar
🎯
Focusing

Stefan Baumann stefan-baumann

🎯
Focusing
View GitHub Profile
@stefan-baumann
stefan-baumann / efficient-dl-demo.ipynb
Last active April 24, 2024 19:43
Demo notebook demonstrating some simple ways for getting substantial performance gains in PyTorch
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@stefan-baumann
stefan-baumann / RandomPrimeGenerator.cs
Created September 3, 2016 15:35
RandomPrimeGenerator with Pre-Checks
using System;
using System.Collections.Generic;
using System.Linq;
using System.Numerics;
using System.Text;
using System.Threading.Tasks;
namespace RandomPrimes
{
public class RandomPrimeGenerator
@stefan-baumann
stefan-baumann / RandomPrimeGenerator.cs
Last active September 2, 2016 23:20
Random Prime Generator
using System;
using System.Collections.Generic;
using System.Linq;
using System.Numerics;
using System.Text;
using System.Threading.Tasks;
namespace RandomPrimes
{
public class RandomPrimeGenerator