RVC-Project/Retrieval-based-Voice-Conversion-WebUI を RTX50 シリーズで動かす
- OS: Windows
- 他 OS でもおそらく動く
RVC-Project/Retrieval-based-Voice-Conversion-WebUI を RTX50 シリーズで動かす
■■□□□□□□□□■■ | |
■■□ □■■ | |
□□□ □□□ | |
□ □ | |
□ □ | |
□ □ | |
□□□ □□ | |
■■□□□□□□□ □■ |
// ==UserScript== | |
// @name Redirect for akizuki catalog | |
// @namespace http://tampermonkey.net/ | |
// @version 2024-01-26 | |
// @description Redirects from the old akizuki product page to the new one. | |
// @author td2sk | |
// @match https://akizukidenshi.com/catalog/g/*/ | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=akizukidenshi.com | |
// @grant none | |
// ==/UserScript== |
# yaml-language-server: $schema=https://aka.ms/configuration-dsc-schema/0.2 | |
properties: | |
configurationVersion: "0.2.0" | |
resources: | |
# Show FileExt (reboot required) | |
- resource: Registry | |
directives: | |
description: Show extensions | |
allowPrerelease: true | |
settings: |
import pcbnew | |
# index (1-origin) to Reference Text | |
def diode(index: int) -> str: | |
return f"D{index}" | |
def switch(index: int) -> str: | |
return f"SW{index}" |
# 公式サイトにある Docker を使った手順では Addon 導入ができないなど機能制限が多い | |
# 推奨は Home Assistant Operating System の導入だが、 Raspberry Pi OS に入れたい場合は以下手順を取る | |
# この手順では AppArmor や cgroups などセキュリティ周りの設定が不完全になることに注意 | |
# 導入後に設定画面の指示に従って適宜修正が必要 | |
# docker を入れる | |
curl https://get.docker.com | sh | |
# 一旦再起動 |