Advertisement · 728 × 90

Posts by

A simple example:

```rust
use sinistra::graph::*;

let mut g = BasicGraph::new(HashMapStorage::<&str, ()>::new(), HashMapTopology::new());

let a = g.add_vertex("A");
let b = g.add_vertex("B");

g.add_edge((), a, b);
```

1 month ago 0 0 0 0
Preview
crates.io: Rust Package Registry

I made a simple graph data structure crate in Rust based on traits, taking inspiration from BGL (Boost Graph Library). It is not perfect, but still good enough for a first timer. What do you think?
crates.io/crates/sinis... #rustlang #opensource #graph #algorithm

1 month ago 1 0 1 0

Note to self: Going solo in programming is a fool's errand after a point, and I'm way past it

7 months ago 0 0 0 0
Preview
Skimming the fat in ML models: Randomizing SVD for Kronecker Decomposition approach Because standard SVD takes too long, why not speed it up?

medium.com/@wintermarst...

8 months ago 1 0 0 0
Post image

FizzBuzz without any conditional statements. #coding #fizzbuzz #programming

9 months ago 1 0 0 0

It is time to add LaTeX math support @medium.com

9 months ago 1 0 0 0
Preview
Kronecker Decomposition of Weight Matrices using Least Squares Approach Today’s machine learning models contain huge number of parameters, pushing their compute and storage requirements beyond what most of consumer devices can practically afford. Knowledge distillation…

medium.com/@wintermarst...

9 months ago 2 0 0 0
Advertisement