[Man Fakes an Entire Month of His Life Using AI Generated Photos]
Category: Artificial Intelligence
Satya Nadella: Microsoft’s Products Will Soon Access Open AI Tools Like ChatGPT | WSJ
Getty to sue Stability AI, $MSFT to incorporate OpenAI into Azure + new climate startups | E1659
What’s a Tensor?
Realtime video style transfer
PyTorch for Deep Learning in 2023: Zero to Mastery
Nvidia Broadcast can now deepfake your eyes to make you look at the camera
ChatGPT: The Ultimate Tool for Your Smart Home Projects // ft. Wio Terminal
OpenAI ChatGPT: The Future Is Here!
Linus Has to Do Everything Chat GPT Says
OpenAI Whisper is every Python developers dream
This video is no longer available, but it did show how easy it is to integrate with the Whisper AI Model.
[Show HN: Port of OpenAI’s Whisper model in C/C++]
[ChromeOS_Whisper] – Whisper runs on ChromeBook 4 and can transcribe an English sentence from a MP3 to text in 30 seconds.
InvokeAI: A Stable Diffusion Toolkit
How I generated a full CG Short Film with AI
How to make: AI Animations
Worlds hardest jigsaw vs. puzzle machine (all white)
Consistent AI Characters in any pose: Tutorial
How To Build A Human: Preview
Using AI to compress audio files for quick and easy sharing
Deep Learning based Super Resolution with OpenCV
Made with TensorFlow.js
Super resolution with UpscalerJS – Made with TensorFlow.js
FREE 1.5 Stable Diffusion is Here! AMAZING Inpainting RunwayML Model Comparison!
Building a Machine Learning API in 15 Minutes | Coding Challenge
Upgrade PyTorch
Looks like I need to upgrade PyTorch! The error message:
NVIDIA GeForce RTX 3070 with CUDA capability sm_86 is not compatible with the current PyTorch installation. The current PyTorch install supports CUDA capabilities sm_37 sm_50 sm_60 sm_70. If you want to use the NVIDIA GeForce RTX 3070 GPU with PyTorch, please check the instructions at
https://pytorch.org/get-started/locally/
Install the latest CUDA version on Windows (3.0GB) – https://developer.nvidia.com/cuda-downloads?target_os=Windows&target_arch=x86_64&target_version=11&target_type=exe_local
Upgrade PyTorch:
conda install pytorch torchvision torchaudio cudatoolkit=11.3 -c pytorch
Get arch list in Python.
import torch
torch.cuda.get_arch_list()
[‘sm_37’, ‘sm_50’, ‘sm_60’, ‘sm_61’, ‘sm_70’, ‘sm_75’, ‘sm_80’, ‘sm_86’, ‘compute_37’]
And works!