• 人工智能在无线网络领域应用的两种模式

    (1)无线网络分析和预测:

    利用人工智能技术分析数据并为下一步情况做出预测,通过处理从网络设备收集的大量数据,分析预测用户和无线网络的环境状态,从而实现数据智能驱动的全网运营决策。

    在数据处理分析方面,基于神经网络的人工智能(深度学习)可采集处理无线网络中多个传感器的非直接特征,从而更准确地估计无线网络故障和其他破坏性事件并有效分配可用资源。

    在预测分析方面,利用来自传感器、无人机、监视图像以及无线信道测量的数据,依托人工智能解析大数据的能力,优化无线网络的各种功能。

    (2)无线网络智能控制和优化:

    在线智能资源管理机制。传统分布式优化技术只能以离线或半离线的方式迭代完成,而基于人工智能的资源管理机制能通过实时学习网络环境和用户状态,实现完全…[阅读更多]

  • Ubuntu直接安装Ardour

     

    1. sudo apt update

    2. sudo apt install ardour

    3. config jackd2, 选择yes

    4. done

  • Mac os 编译Ardour

    1. 官网下载源码

    cd $AD
    tar xf /where/you/put/the/source/tarball
    cd ardour-<VERSION>

     

    2. 下载依赖

    brew install gcc g++

     

    3. 编译

    ./waf configure
    ./waf

     

    4. 安装与卸载

    ./waf install

    ./waf uninstall

     

  • 1. Clone the repo

    git clone https://github.com/ardour/ardour

    and cd into the directory

    cd ardour

    This will fetch the LATEST version of Ardour, which might be unstable.

    You can list all versions (sorted) with: git tag | sort -V and select a specific version with: git checkout 6.9

     

    2. 安装依赖

    sudo apt install libboost-all-d…[阅读更多]

  • Azure custom voice 的服务模型如下:

    forums.wirelesslink.net | azure custom voice

    azure custom voice 提供的模块如下,一共有三个:

    Data:用于数据集的上传,支持单音频用于测试,或者音频+人工标注的文本用于训练
    Model:可直接用 Azure 自带的模型,或者 customized 的模型进行测试
    Endpoint:将训练好的模型进行部署,以便调用

     

    1> Data
    支持的数据类型:

    Custom Voice 支持三种类型的数据,详情可查看(Link):

    i.  短音频…[阅读更多]

  • 1. 创建免费的tts 文本转语音服务,需要先创建Azure 免费账户: 点击这里

     

    2. 获取秘钥

    2.1  搜索speech, 选择speech services

     

    2.2 创建一个text-to-voice的免费服务

    1> 选择 “认知服务”,添加一个新的 Speech 订阅 ,名称随便起
    2> 位置选择 美东或者东南亚
    3>  定价层选择 F0, 详见的定价规则: 参考

    2.3 管理密钥

     

    2.4 复制密钥 和 endpoint

     

    2.5 配置python源代码,参考上面的python代码。

    • 配置密钥
    • 配置endpoint
    • 配置播音员的语音名字

    选择播音员语音类型名字,参考如下:

    因为xiaoxiao的语音属于神经网络语音[阅读更多]

  • python 脚本

    平台环境: mac os 或linux

    python 版本: python 3

     

    #! /usr/bin/python3

    # -*- coding: utf-8 -*-
    # 微软人工智能azure 文本转真人语音
    ###
    # Copyright (c) icrosoft Corporation
    # All rights reserved.
    # MIT License
    # Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “”Softw…[阅读更多]

  • 1. TTS 定价规则

    美国区域定价: https://azure.microsoft.com/zh-cn/pricing/details/cognitive-services/speech-services/

     

    关于中文汉字定价规则

    特别说明: 每个中文、日语和韩语字符算作两个计费字符。

    一、始终免费的价格说明如下

    每个月50万字符。折合成中文汉字就是 25万字

    forums.w…</strong/></strong><span class=[阅读更多]

  • Azure提供了很多免费的服务,具体的服务内容如下

     

    https://azure.microsoft.com/zh-cn/pricing/free-services/

     

  • Final cut pro 文件太大,如何清理

    1. 进入工程文件,可以看到一个未命名的文件,文件很大。以这里一个20分钟左右的视频素材为例,该渲染后的文件夹大概有180G左右。

    2. 打开访达finder,找到这个事件,右击-显示包内容。找到Render Files-High Quality Media并打开。

    3. 这里面是系统产生的渲染文件,选中并删除所有文件即可。

    注意: 该文件是视频已经完成不再需要,如果未完成请勿删除!!!!

  • home brew管理python的方法

     

    1. 安装pyenv

    # brew install pyenv

     

    2. 下载编译python 版本

    # pyenv install 3.10.0

    # pyenv global 3.10.0

    # pyenv version

    完成后终端会输出类似的代码

    $ pyenv version 3.10.0 (set by /Users/russ.mckendrick/.pyenv/version)

     

    3. 查看python版本代码

    # python –version which python

     

    4. update 更新php

    # pip install –upgrade pip

    # pip insta…[阅读更多]

  • mac os 12默认没有安装HomeBrew

    1. 安装代码: /bin/bash -c “$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)”

    2. 用homebrew install 软件的格式: brew install <package name>

    3. 导出环境变量

    Open the Terminal and type the below command and press Enter.

    export PATH=”/opt/homebrew/bin:$PATH”

    then type the…[阅读更多]

  • Mac系统默认安装的Python版本是2.7,目前好多项目都要基于Python3.x以上,两个版本有好大区别。
    以下是升级的操作步聚:

    1.先到官网下载安装包
    下载地址:https://www.python.org/downloads/release/python-382/ 选择macOS 64-bit installer

    2. 下载完成后安装即可

    安装后默认路径是/Library/Frameworks/Python.framework/Versions/3.10
    可以使用命令open /Library/Frameworks/Python.fr…[阅读更多]

  • 1.终端直接运行 pycharm.sh
    2.进入pycharm后点击”tools”
    3.点击”Create Desktop Entry…” 再关闭pycharm
    4.返回桌面,点击显示应用程序(桌面左下角),在全部程序中即可找到pycharm的启动方式,之后可以右键收藏到快捷启动栏

  • 运行环境:Ubuntu+Python

    1. 到微软官方创建一个Azure 免费账户,需要信用卡认证

     

    2、Ubuntu端配置:

    #  sudo apt-get update
    #  sudo apt-get install python libssl1.0.0 libasound2
    #  pip install azure-cognitiveservices-speech

     

    3. 语音合成python源码

    ## 输入文件text.txt
    ## 输出文件file.wav

    from azure.cognitiveservices.speech import AudioDataStream, Speech…[阅读更多]

  • 一、安装CH340驱动
    1.查看ubuntu系统自带的驱动

    $ ls /lib/modules/$(uname -r)/kernel/drivers/usb/serial
    aircable.ko cypress_m8.ko garmin_gps.ko iuu_phoenix.ko metro-usb.ko opticon.ko quatech2.ko ti_usb_3410_5052.ko visor.ko
    ark3116.ko digi_acceleport.ko io_edgeport.ko keyspan.ko mos7720.ko option.ko safe_serial.ko upd78f0730.ko whiteheat.ko
    belkin_sa.ko emp…[阅读更多]

  • 11. 编译过程中出现http 400 proxy 错误

    使用root 权限 sudo -j8 V=s 可以解决

  • 1. For Ubuntu

    ## If migrating from prior bintray install instructions please first…
    # sudo rm /etc/apt/sources.list.d/speedtest.list
    # sudo apt-get update
    # sudo apt-get remove speedtest
    ## Other non-official binaries will conflict with Speedtest CLI
    # Example how to remove using apt-get
    # sudo apt-get remove speedtest-cli

    sudo apt-get install…[阅读更多]

  • 10. 编译完后进入后台出错

     

    /usr/lib/lua/luci/template.lua:97: Failed to execute template ‘sysauth’.
    A runtime error occurred: /usr/lib/lua/luci/template.lua:97: Failed to execute template ‘header’.
    A runtime error occurred: /usr/lib/lua/luci/template.lua:97: Failed to execute template ‘themes/argonne/header’.
    A runtime error occurred: [string “/usr/lib/l…[阅读更多]

  • 9. 编译输出提示磁盘空间不够

     

    error: ext4_allocate_best_fit_partial: failed to allocate 3819 blocks, out of space?

  • 读取更多
WirelessLink
Logo