Skip to content

Instantly share code, notes, and snippets.

View dwhr-pi's full-sized avatar

Daniel Rösgen dwhr-pi

  • none
  • Essen, Germany
  • 14:40 (UTC +01:00)
View GitHub Profile

Voice AI Research

Goal: make computers talk like human.

My notes from audio (voice + speech) AI research started in 2023.

Emerging Research

Audio-to-audio Models

@dwhr-pi
dwhr-pi / CommandLineGit.md
Created February 26, 2024 21:29 — forked from pinklite34/CommandLineGit.md
Using Git from the Command Line

When you use git from the command line, use the following steps:

Accessing the Repository

  • On Windows, launch Git Bash, on MacOS or Linux, launch a terminal.
  • If you have not done so on your machine, create a COMP167 directory in your home directory using mkdir ~/COMP167
  • NOTE: This command only needs to be run once on each machine, to create the directory.
  • Navigate to your directory using cd ~/COMP167.
  • If your repository already exists locally, navigate to it using cd [your-repository-name], if you want to check the contents of your directory, use ls.
  • If your repository does not exist locally, get the clone link from the "Clone or Download" button on the GitHub Repository. Clone or Download Button on GitHub
@dwhr-pi
dwhr-pi / Matrix.md
Created February 1, 2022 17:58 — forked from abelardojarab/Matrix.md
Efficient matrix multiplication

High-Performance Matrix Multiplication

This is a short post that explains how to write a high-performance matrix multiplication program on modern processors. In this tutorial I will use a single core of the Skylake-client CPU with AVX2, but the principles in this post also apply to other processors with different instruction sets (such as AVX512).

Intro

Matrix multiplication is a mathematical operation that defines the product of

@dwhr-pi
dwhr-pi / pi-general-benchmark.sh
Last active November 7, 2021 22:54 — forked from geerlingguy/sbc-general-benchmark.sh
Raspberry Pi Benchmark Suite - Phoronix
#!/bin/bash
#
# Benchmark script for Raspberry Pi OS.
#
# WARNING: This script is meant to be run as the root user.
# This script should never be run on a system/partition you
# care about. You should only run this on a system that you
# intend to use only for benchmarking and can reinstall or
# re-flash easily.
#
@dwhr-pi
dwhr-pi / docker_raspian_buster.md
Created October 18, 2021 23:32
How-To-Docker auf Raspberry Buster light image

How-To-Docker auf Raspberry Buster light image

  1. Docker installieren

sudo apt update sudo apt full-upgrade sudo rpi-update

echo -n "$(head -n1 /boot/cmdline.txt) cgroup_enable=cpuset cgroup_enable=memory" | sudo tee /boot/cmdline.txt