Goal: make computers talk like human.
My notes from audio (voice + speech) AI research started in 2023.
When you use git from the command line, use the following steps:
mkdir ~/COMP167cd ~/COMP167.cd [your-repository-name], if you want to check the contents of your directory, use ls.
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).
Matrix multiplication is a mathematical operation that defines the product of
| #!/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. | |
| # |
How-To-Docker auf Raspberry Buster light image
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