会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Jacen's Blog
博客园
首页
新随笔
联系
管理
订阅
[置顶]
语音合成技术(深度学习方法简介)
摘要: 语音合成技术(深度学习方法简介)一、定义语音合成(Text-To-Speech,简称 TTS),又称文语转换技术,是将文字信息转变为可以听得懂的、流利的语音输出的一种技术。其与我们比较熟悉的语音识别技术(Automatic Speech Recognition,简称 ASR)目标相反。ASR 是将声
阅读全文
posted @ 2021-01-10 23:41 叶建成
阅读(2507)
评论(0)
推荐(0)
2021年2月26日
查看linux硬件信息
摘要: 查看 CPU 信息: cat /proc/cpuinfo 查看 CPU 的型号: cat /proc/cpuinfo | grep "model name" | sort | uniq 查看 CPU 颗数: cat /proc/cpuinfo | grep "physical id" | sort
阅读全文
posted @ 2021-02-26 11:55 叶建成
阅读(155)
评论(0)
推荐(0)
2020年12月7日
在 Linux 上如何清除内存的 Cache、Buffer 和交换空间
摘要: 参考: https://www.tecmint.com/clear-ram-memory-cache-buffer-and-swap-space-on-linux/ https://linux.cn/article-5627-1.html sync && sudo sh -c 'echo 3 > /
阅读全文
posted @ 2020-12-07 11:46 叶建成
阅读(492)
评论(0)
推荐(0)
2020年7月22日
Bash Bang (!) commands(bash的“!”命令,重新运行前一个命令的全部或部分。)
摘要: Re-run all or part of a previous command. Syntax !! Run the last command again !foo Run the most recent command that starts with 'foo' (e.g. !ls) !foo
阅读全文
posted @ 2020-07-22 11:33 叶建成
阅读(372)
评论(0)
推荐(0)
2020年3月14日
Ubuntu apt pip conda 代理设置
摘要: 终端临时代理(关闭终端失效,当前用户永久生效修改~/.bashrc,所有用户永久生效修改/etc/profile,修改之后运行source ~/.bashrc或者source /etc/profile) export http_proxy="127.0.0.1:1081" export https_
阅读全文
posted @ 2020-03-14 15:10 叶建成
阅读(1484)
评论(0)
推荐(0)
2020年2月22日
rsync 远程数据同步
摘要: 参考: https://man.linuxde.net/rsync https://zhiqiang.org/coding/rsync-will-not-compare-file-content.html https://www.cnblogs.com/f-ck-need-u/p/7220009.h
阅读全文
posted @ 2020-02-22 21:43 叶建成
阅读(385)
评论(1)
推荐(0)
2020年2月7日
设置 jupyter notebook 可远程访问
摘要: 设置 jupyter notebook 可远程访问 配置如下: jupyter notebook --generate-config jupyter notebook password vim /home/jacen/.jupyter/jupyter_notebook_config.py 最后一步是
阅读全文
posted @ 2020-02-07 12:00 叶建成
阅读(415)
评论(0)
推荐(0)
2020年2月6日
ubuntu 挂载硬盘(GPT分区,大于2T的硬盘)
摘要: 1、查看需要挂载的磁盘 sudo fdisk -l 2、分区 sudo parted /dev/sdb (parted) mklabel gpt (parted) mkpart primary 0 -1 (parted) quit 3、格式化磁盘,设置文件系统,并挂载 sudo mkfs.ext4
阅读全文
posted @ 2020-02-06 17:47 叶建成
阅读(3233)
评论(0)
推荐(0)
2020年1月10日
用树结构构造一篇文章(待完成)
摘要: 1、章 2、分段 3、分句 4、分标点短句 5、分韵律短语 6、分语言 7、分词 8、分字
阅读全文
posted @ 2020-01-10 15:39 叶建成
阅读(213)
评论(0)
推荐(0)
2019年12月24日
数组切分(句子拼接)
摘要: 题目:有n个句子,每个句子的长度都小于等于m,现在需要将相邻较短的句子拼接再一起,使得句子的数量最少,并且长度仍然不大于m,而且拼接完之后句子的长度的方差最小。求拼接方式。 解题(自己给自己出题,sent_comb3切分符合要求):
阅读全文
posted @ 2019-12-24 01:29 叶建成
阅读(491)
评论(0)
推荐(0)
下一页
公告