自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(13)
  • 资源 (5)
  • 收藏
  • 关注

原创 使用 python 将图片转化为 base64 字符串

使用 python 将图片转化为 base64 字符串import base64f=open('723.png','rb') #二进制方式打开图文件ls_f=base64.b64encode(f.read()) #读取文件内容,转换为base64编码f.close()print(ls_f)base64 字符串转化为图片import base64bs='iVBORw0KGgoAAAANSUhEUg....' # 太长了省略imgdata=base64.b64decode(bs)f.

2021-02-09 11:48:23 1324

原创 SGD可视化比较(Visualizing Optimization Algos)

文章来源:https://imgur.com/a/HqolpAlgos without scaling based on gradient information really struggle to break symmetry here - SGD gets no where and Nesterov Accelerated Gradient / Momentum exhibits oscillations until they build up velocity in the optimizat

2021-01-31 20:49:08 275

原创 python里的*

int(*re.findall())中 “ * ” 的解释来源:力扣(LeetCode)链接:https://leetcode-cn.com/problems/string-to-integer-atoi著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。请你来实现一个 atoi 函数,使其能将字符串转换成整数。首先,该函数会根据需要丢弃无用的开头空格字符,直到寻找到第一个非空格的字符为止。当我们寻找到的第一个非空字符为正或者负号时,则将该符号与之后面尽可能多的连续数字组合起来,

2021-01-15 00:02:43 172

原创 python 生成 requirements.txt 的两种方法

python 生成 requirements.txt 的两种方法python 项目如何在另一个环境上重新构建项目所需要的运行环境依赖包?使用的时候边记载是个很麻烦的事情,总会出现遗漏的包的问题,这个时候手动安装也很麻烦,不能确定代码报错的需要安装的包是什么版本。这些问题,requirements.txt 都可以解决!生成 requirements.txt,有两种方式:第一种 适用于 单虚拟环境的情况:pip freeze > requirements.txt为什么只适用于单虚拟环境?因为这

2021-01-12 10:34:43 152 1

原创 numpy 加载csv日期字符串,loadtxt之converters参数

将日期作为字符串传给datestr2num函数,如“28-01-2011”。这个字符串首先会按照 指定的形式"%d-%m-%Y"转换成一个datetime对象。from datetime import datetimedef datestr2num(s): return datetime.strptime(s.decode('ascii'), "%d-%m-%Y").date().weekday()dates, close=np.loadtxt('data.csv', delimiter=..

2021-01-04 21:17:26 2302

转载 Linux kill 杀死同一个命令启动的进程(杀死多进程命令)

获取到每个进程的进程ID:ps -ef | grep ‘python xxx’ | awk ‘{print $2}’kill htop ‘python’ 可以杀掉所有python进程,但这会把其他python进程也杀死。ps -ef | grep ‘python spider.py’ | awk ‘{print $2}’ | xargs kill -9 直接杀死所有grep出来的进程...

2018-12-11 16:53:28 4191

转载 openSMILE简介

openSMILE简介openSMILE(open Speech and Music Interpretation by Large Space Extraction)是一个用于信号处理和机器学习的特征提取器,它具有高度模块化和灵活性等特点。openSMILE最基础的功能可用于语音信号特征的提取,当然,它还可以分析其他形态的信号,如视觉信号,医学生理信号等等。openSMILE使用C++编写...

2018-11-28 17:23:02 2225

原创 C++中异常处理语句exit(0)、exit(1)和exit(-1)有什么区别?

exit为C++的退出函数,声明于stdlib.h中,对于C++其标准的头文件为cstdlib,声明为void exit(int value);exit的功能为,退出当前运行的程序,并将参数value返回给主调进程。在main中return v;的效果 与exit(v);相同。exit(1)和exit(-1)是分别返回1和-1到主调程序。exit(0)则是返回0。exit(0)表示程...

2018-11-28 17:22:50 46331 3

原创 anaconda程序组中的各个组件都是做什么用的

安装好anacandaAnaconda Cloud 是管理公共或者私有python notebook、conda、环境和packages的地方,可以方便分享和追踪。Anaconda Navigator 是Anaconda可视化的管理界面。Anaconda Prompt 是一个Anaconda的终端,可以便捷的操作conda环境。IPython 是一个 python 的交互式 shell...

2018-11-28 17:22:37 1494 1

原创 linux 小结

linux 是否有命令显示某一类型的文件个数?如果文件夹内包含子目录,就用find:find . -type f -name "*.so" | wc -l如果没有子目录或不需要统计子目录,就直接用ls+通配符:ls *.so | wc -llinux下使用 du查看某个文件或目录占用磁盘空间的大小du -ah --max-depth=1 这个是我想要的结果 a表示显示目录...

2018-11-06 11:32:01 131

转载 深度学习框架比较,Caffe/Tensorflow/ Keras有何不同?

导语:Science is NOT a battle, it is a collaboration. We all build on each other’s ideas. Science is an act of love, not war. Love for the beauty in the world that surrounds us and love to share and buil...

2018-10-29 14:40:36 26539 3

原创 Video-based Emotion Recognition Using Multi-dichotomy RNN-DNN

Video-based Emotion Recognition Using Multi-dichotomy RNN-DNN摘要:本论文介绍了被2017年多模态情绪识别挑战使用的基于视频对情感进行识别的研究工作,受到计算机视觉任务中广泛使用的基于卷积神经网络的特征提取方法的鼓舞,我们利用微调的VGGFace16网络为每个人脸图像生成特征。我们探索了一种以多重二分法(递归神经网络和深度神经网络)为...

2018-10-16 11:36:13 2329 5

转载 linux/vim使用

vi/vim 基本使用方法 vi编辑器是所有Unix及Linux系统下标准的编辑器,它的强大不逊色于任何最新的文本编辑器,这里只是简单地介绍一下它的用法和一小部分指令。由于对Unix及Linux系统的任何版本,vi编辑器是完全相同的,因此您可以在其他任何介绍vi的地方进一步了解它。Vi也是Linux中最基本的文本编辑器,学会它后,您将在Linux的世界里畅行无阻。1、vi的基本...

2018-09-18 11:22:15 124

openSmile_book

We start introducing openSMILE by addressing two important questions for users who are new to openSMILE : What is openSMILE ? and Who needs openSMILE ?. If you want to start using openSMILE right away, then you should start reading section 2, or section 2.3 if you have already managed to install openSMILE.

2018-11-14

Emotion Recognition System for the Multimodal Emotion Challenge

This paper presents the University of Passau s approaches for the Multimodal Emotion Recognition Challenge 2016.

2018-10-31

基于音频的多模态二分类情感识别

Video-based Emotion Recognition Using Multi-dichotomy RNN-DNN

2018-10-26

The Multimodal Emotion Recognition Challenge of CCPR 2016

Emotion recognition is a significant research filed of pattern recognition and artificial intelligence. The Multimodal Emotion Recognition Challenge(MEC) is a part of the 2016 Chinese Conference on Pattern Recognition (CCPR).The goal of this competition is to compare multimedia processing and machine learning methods for multimodal emotion recognition. The challenge also aims to provide a common benchmark data set, to bring together the audio and video emotion recognition communities, and to promote the research in multimodal emotion recognition. The data used in this challenge is the Chinese Natural AudioVisual Emotion Database (CHEAVD), which is selected from Chinese movies and TV programs. The discrete emotion labels are annotated by four experienced assistants. Three sub-challenges are defined: audio, video and multimodal emotion recognition. This paper introduces the baseline audio, visual features,and the recognition results by Random Forests

2018-10-26

tensorflow

TensorFlow™ 是一个开放源代码软件库,用于进行高性能数值计算。借助其灵活的架构,用户可以轻松地将计算工作部署到多种平台(CPU、GPU、TPU)和设备(桌面设备、服务器集群、移动设备、边缘设备等)。TensorFlow™ 最初是由 Google Brain 团队(隶属于 Google 的 AI 部门)中的研究人员和工程师开发的,可为机器学习和深度学习提供强力支持,并且其灵活的数值计算核心广泛应用于许多其他科学领域。

2018-10-17

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除