上一页 1 2 3 4 5 6 7 ··· 15 下一页

2021年12月1日

音频读写

摘要: ### 0. ```python import librosa import numpy as np from scipy.io.wavfile import write wav, sr = librosa.load("iii.wav", sr=16000) write("ooo.wav", 160 阅读全文

posted @ 2021-12-01 17:14 HolaWorld 阅读(360) 评论(0) 推荐(0) 编辑

2021年11月11日

用 scp 在 linux 之间传输文件

摘要: scp LocalSourceFile user@remotehost:directory/TargetFile scp user@remotehost:directory/SourceFile LocalTargetFile scp -r user@remotehost:directory/Sou 阅读全文

posted @ 2021-11-11 14:29 HolaWorld 阅读(56) 评论(0) 推荐(0) 编辑

2021年8月2日

Visual Studio Code, Windows, C++

摘要: https://code.visualstudio.com/docs/cpp/config-mingw 一、配置 1.装 VSCode 2.装 C++ 扩展 3.下 MSYS2 4.装 mingw64 pacman -Syu pacman -Su pacman -S --needed base-de 阅读全文

posted @ 2021-08-02 21:46 HolaWorld 阅读(37) 评论(0) 推荐(0) 编辑

2021年8月1日

tensorboard

摘要: import torch from torch.utils.tensorboard import SummaryWriter import matplotlib.pyplot as plt import numpy as np def main(): log_path = './log' logge 阅读全文

posted @ 2021-08-01 21:06 HolaWorld 阅读(135) 评论(0) 推荐(0) 编辑

2021年7月31日

NVIDIA GeForce GT 730 配置 CUDA

摘要: 1.下 cuda toolkit 8.0 https://developer.nvidia.com/cuda-80-download-archive 2.下 cuDNN 6.0 https://developer.nvidia.com/rdp/cudnn-archive 3. 把 cuDNN 里的 阅读全文

posted @ 2021-07-31 11:51 HolaWorld 阅读(3174) 评论(0) 推荐(0) 编辑

2021年6月2日

本地浏览器远程访问服务器tensorboard(MobaXterm)

摘要: 在左侧栏有Tools,点击后,下拉到最后,在Network中,点击MobaSSHTunnel,点击New SSH tunnel. https://blog.csdn.net/z13653662052/article/details/98761242 阅读全文

posted @ 2021-06-02 12:56 HolaWorld 阅读(360) 评论(0) 推荐(0) 编辑

2021年5月15日

dogecoin

摘要: 一、dogecoin core 配置 1. 下载 https://dogecoin.com/#wallets https://github.com/dogecoin/dogecoin/releases/download/v1.14.3/dogecoin-1.14.3-x86_64-linux-gnu 阅读全文

posted @ 2021-05-15 00:49 HolaWorld 阅读(593) 评论(1) 推荐(0) 编辑

2021年5月11日

python多进程

摘要: from multiprocess import Pool, cpu_count with Pool() as pool: # input_list: [input1, input2, input3...] for output in pool.imap_unordered(func, input_ 阅读全文

posted @ 2021-05-11 11:57 HolaWorld 阅读(58) 评论(1) 推荐(1) 编辑

2021年4月23日

gpu

摘要: nvidia-smi os.environ["CUDA_VISIBLE_DEVICES"] = "0,1,2,3,4,5,6,7" 阅读全文

posted @ 2021-04-23 14:25 HolaWorld 阅读(51) 评论(0) 推荐(0) 编辑

2021年4月21日

python调用父类(超类)

摘要: super().__init__(这里面填的是父类的__init__函数需要的参数) 阅读全文

posted @ 2021-04-21 23:55 HolaWorld 阅读(421) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 ··· 15 下一页

导航