自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(17)
  • 收藏
  • 关注

原创 使用Stand-alone docker安装FATE之后进行目录挂载

文章目录FATE_Boardfate 容器下挂载目录参考目录FATE_Boardip = http://127.0.0.1:8080/fate 容器下挂载目录停止dockersudo service docker stop修改文件进入/var/lib/docker/containers/, 找到对应容器的文件夹修改hostconfig.json中的"Binds": ["/data:/import"]项目 格式是 “主机目录:容器目录”修改 config.v2.json中的"Mou

2021-06-20 20:51:42 331

原创 pyenv virtualenv 常用命令记录

文章目录pyenvInstall Python using pyenvCreate virtual environmentActivate the environment locallyvirtualenvCreate virtual envReferencepyenvInstall Python using pyenvTo list the available versions: python install -lpyenv install 3.7.6Create virtual enviro

2021-06-17 17:45:24 374

原创 解决docker: Got permission denied while trying to connect to the Docker daemon socket

文章目录问题描述解决方法参考资源问题描述新安装的Docker,经常碰到权限问题Got permission denied while trying to connect to the Docker daemon socket at unix:///var/run/docker.sock: Get http://%2Fvar%2Frun%2Fdocker.sock/v1.40/containers/json: dial unix /var/run/docker.sock: connect: permis

2021-06-13 03:27:00 1446

原创 解决undefined reference to symbol ‘LZ4_decompress_safe‘问题

文章目录问题描述解决方法参考资源问题描述make时碰到如下问题/usr/bin/ld: CMakeFiles/nearest_neighbors.dir/nearest_neighbors.cpp.o: undefined reference to symbol 'LZ4_decompress_safe'解决方法(不推荐)降低flann版本到1.7及以下(推荐)使用whereis liblz4.so找到对应的地址, 一般是/usr/lib/x86_64-linux-gnu/liblz4.s

2021-06-09 19:28:40 3345 1

原创 Ubuntu18.04/20.04 Mendeleydesktop 安装及问题解决

文章目录安装IssueReference安装下载最新版本Download Mendeley Desktop for Ubuntu/Debian (32 Bit)Download Mendeley Desktop for Ubuntu/Debian (64 Bit)sudo dpkg -i <path-to-downloaded-package>运行 Mendeley Desktopmendeleydesktop一般会自动更新,如希望手动更新,可用如下方法sudo

2021-06-08 16:54:21 1297 2

原创 远程服务器创建指定python版本的虚拟环境(virtual environment)

文章目录记录一下连接远程服务器用过的一些指令使用ssh连接到服务器使用scp下载或上传文件创建virtual env: 如果想用的版本和系统一致,直接使用virtualenv .venv即可;如若不一致,可以先安装对应的python版本,然后virtualenv .venv -p [path to pthon executable]; 也可以使用pyenv来管理python版本使用pycharm管理远程服务器...

2021-06-08 15:15:57 794 2

原创 pyenv在ubuntu20.04无法切换到system

文章目录问题描述解决方案参考资源问题描述在ubuntu20.04安装了pyenv之后,使用pyenv versions发现没有system 这个选项,原因是在usr/bin下只有python2和python3,而pyenv查找的是python - 参见line 105 of pyenv-versions解决方案有两个方法可以在/usr/bin下创建可执行的python:sudo apt install python-is-python3ln -s /usr/bin/python3 /usr/b

2021-06-08 14:56:56 499

转载 Laplacian Pyramid 拉普拉斯金字塔

文章目录Gaussian Pyramid vs Laplacian PyramidReferenceGaussian Pyramid vs Laplacian PyramidA Laplacian Pyramid is a linear invertible image representation consisting of a set of band-pass images, spaced an octave apart, plus a low-frequency residual. Forma

2021-06-02 23:08:26 971

转载 双线性插值 Bilinear Interpolation

文章目录DefinitionAlgorithmAlternative algorithmUnit squareNonlinearApplication in image processingExampleReferenceDefinitionIn mathematics, bilinear interpolation is an extension of linear interpolation for interpolating functions of two variables (e.g. x

2021-06-02 21:56:02 1466

原创 Regular Expression Quick Guide

文章目录TableModuleExamplesMatching and extracting dataPractical applicationsReferenceTableRegular ExpressionUsage^Matches the beginning of a line$Matches the end of the line.Matches any character\sMatches whitespace\SMatches any n

2021-06-02 00:02:51 242

原创 Python查漏补缺

没有系统学过python,所以跟着quick tutorial捋一遍。 只记录自己不太熟悉的内容。文章目录Recursion 递归Exception HandlingObject-Oriented ProgrammingProperties, Getters and SettersFilesList and Dictionary ComprehensionReferenceRecursion 递归Recursive factorial functiondef factorial(n:int):

2021-05-30 17:49:10 339

转载 Emoj cheat sheet

转自 emoji-cheat-sheetemoji-cheat-sheetThis cheat sheet is automatically generated from GitHub Emoji API and Unicode Full Emoji List.Table of ContentsSmileys & EmotionPeople & BodyAnimals & NatureFood & DrinkTravel & PlacesActiv

2021-05-30 06:59:52 2397

原创 联邦学习笔记 Federated Learning

文章目录背景介绍相关研究系统构架优势联邦学习的分类学习纵向联邦学习横向联邦学习联邦迁移学习联邦学习开源平台研究方向参考资料背景介绍联邦学习最早在 2016 年由谷歌提出,原本用于解决安卓手机终端用户在本地更新模型的问题;本质上是一种分布式机器学习技术,或机器学习框架。联邦学习是多个参与方在保护数据隐私、满足合法合规要求的前提下继续进行机器学习,解决数据孤岛的问题。各方数据都保留在本地,不泄露隐私也不违反法规;多个参与者联合数据建立虚拟的共同模型,并且共同获益的体系;在联邦学习的体系下,各个参与

2021-05-30 01:04:24 3015 1

原创 学习资料汇总

文章目录DockerAzureDocker【狂神说Java】Docker最新超详细版教程通俗易懂【狂神说Java】Docker进阶篇超详细版教程通俗易懂Learn Docker by Building a Node / Express AppAzureAzure Administrator Certification (AZ-104) – Pass the Exam With This Free 11-Hour CourseAzure Fundamentals Certification (A

2021-05-29 22:24:27 512 1

转载 Windows 快捷键 Windows Keyboard Shortcuts

转自 Windows Keyboard Shortcuts – How to Improve Productivity at the Computer文章目录Windows OSFunctional KeyAltCtrlShiftWindows keyMicrosoft Word keyboard shortcutsMicrosoft Excel keyboard shortcutsWindows OSFunctional KeyKEYFunctionF1Display Hel

2021-05-29 20:09:58 940

原创 联邦学习 Federated learning Google I/O‘19 笔记

Federated Learning: Machine Learning on Decentralized datahttps://www.youtube.com/watch?v=89BGjQYA0uE1. Decentralized dataEdge devicescan data live at the edge?On-device inference offersimproved latencyworks offlinebetter battery lifeprivacy adva

2021-05-28 23:15:42 815

原创 Xavier initialization - 论文阅读笔记

论文: Understanding the difficulty of training deep feed forward neural networks单层网络Assume yi=w1ix1i+...+wnixni+biy_i = w_{1i}x_{1i}+...+w_{n_i}x_{n_i}+b_iyi​=w1i​x1i​+...+wni​​xni​​+bi​, inputs and weights are zero-mean, independent and identically distri

2021-05-28 22:10:59 253

空空如也

空空如也

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

TA关注的人

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