Extracted from the BNC Manual AJ0adjective (general or positive) e.g. good, oldAJCcomparative adjective e.g. better, olderAJSsuperlative adjective, e. ...
分类:
其他好文 时间:
2021-02-18 13:21:16
阅读次数:
0
统计单词频率 import java.util.*; public class test { public static void main(String[] args) { final String speech = "It was the best of times, it was the wo ...
分类:
其他好文 时间:
2021-01-06 12:31:58
阅读次数:
0
语音识别中的End2End模型: CTC, RNN-T与LAS 马上科普 领先的人工智能知识平台 已关注 自动语音识别(Automatic Speech Recognition,简称ASR)是一项将机器学习与实际需要紧密结合的领域,应用场景如语音助手,聊天机器人,客服等等。今天就来比较一下比较流行的 ...
分类:
其他好文 时间:
2020-10-20 16:36:30
阅读次数:
43
1.将百度语音识别demo下载下来 并且用maven封装成一个jar包 核心代码如下 package com.baidu.speech.restapi.asrdemo; import com.alibaba.fastjson.JSONObject; import com.baidu.speech.r ...
分类:
编程语言 时间:
2020-07-14 18:28:01
阅读次数:
93
In 2005, a year after he was first diagnosed with cancer, Apple CEO Steve Jobs made a candid speech to graduating students at Stanford University. I a ...
分类:
其他好文 时间:
2020-07-14 00:30:49
阅读次数:
87
废话不多说,直接上代码 import win32com.client speak = win32com.client.Dispatch('SAPI.SPVOICE') speak.Speak('二傻子!') 或者使用speech 首先安装第三方模块 pip install speech 然后输入代码 ...
分类:
编程语言 时间:
2020-07-02 20:01:10
阅读次数:
122
using System.Speech.Synthesis;//需要引用的命名空间 string str = "呀呀呀 呀呀呀 我是什么什么的小画家"; SpeechSynthesizer synth = new SpeechSynthesizer(); synth.Speak(str); ...
词法分析(lexical analysis):将字符序列转换为单词(Token)序列的过程 分词,命名实体识别,词性标注 并称 汉语词法分析“三姐妹”。 在线演示平台:http://ictclas.nlpir.org/nlpir/ 词性标注(Part-Of-Speech tagging, POS t ...
分类:
其他好文 时间:
2020-06-26 01:03:06
阅读次数:
93
1 from aip import AipSpeech 2 import requests 3 import json 4 import speech_recognition as sr 5 import win32com.client 6 from selenium import webdrive ...
分类:
其他好文 时间:
2020-06-24 18:11:47
阅读次数:
53
环境:window10 + python3.8 + Visual Studio Code 发现好的内容就收集到这里。 词云(WordCloud) Ref:Python 词云可视化 文本朗读(Text to speech) 语音合成(Speech synthesis)语音识别(Speech recog ...
分类:
其他好文 时间:
2020-06-24 14:12:35
阅读次数:
86