当前位置:网站首页>【深度学习】infomap 人脸聚类 facecluster
【深度学习】infomap 人脸聚类 facecluster
2022-07-02 01:57:00 【XD742971636】
python安装infomap
安装infomap: pip install infomap
遇到问题:gcc: error: unrecognized command line option ‘-std=c++14’ 问题解决
解决:https://blog.csdn.net/qq_42189083/article/details/109612289
执行下面shell:
cd /usr/local/src
# 下载gcc5.2.0源码
wget http://ftp.gnu.org/gnu/gcc/gcc-5.2.0/gcc-5.2.0.tar.bz2
tar -jxvf gcc-5.2.0.tar.bz2
# 进入gcc目录安装
cd gcc-5.2.0
# 下载某些依赖包
./contrib/download_prerequisites
# 创建bulid文件夹
mkdir build
cd build
../configure --prefix=/usr/local/gcc --enable-languages=c,c++ --disable-multilib
# 编译安装,此过程耗时较长
make && make install
# 修改软连接
mv /usr/bin/gcc /usr/bin/gcc_bak
ln -s /usr/local/gcc/bin/gcc /usr/bin/gcc
mv /usr/bin/g++ /usr/bin/g++_bak
ln -s /usr/local/gcc/bin/g++ /usr/bin/g++
# 查看升级后版本
gcc --verson
g++ --version
代码
https://github.com/xiaoxiong74/face-cluster-by-infomap/tree/cccf4d204d0ba5c77f41f0b3c5cf7a4af521f377
边栏推荐
- Software No.1
- The smart Park "ZhongGuanCun No.1" subverts your understanding of the park
- 如何用一款产品推动「品牌的惊险一跃」?
- Data analysis on the disaster of Titanic
- VARIATIONAL IMAGE COMPRESSION WITH A SCALE HYPERPRIOR文献实验复现
- matlab 使用 resample 完成重采样
- MySQL主从延迟问题怎么解决
- Ks006 student achievement management system based on SSM
- leetcode2312. 卖木头块(困难,周赛)
- What style of Bluetooth headset is easy to use? High quality Bluetooth headset ranking
猜你喜欢
Word search applet design report based on cloud development +ppt+ project source code + demonstration video
leetcode2312. 卖木头块(困难,周赛)
Five skills of adding audio codec to embedded system
How to use a product to promote "brand thrill"?
matlab 使用 audiorecorder、recordblocking录制声音,play 播放声音,audiowrite 保存声音
SQLite 3 of embedded database
Golang lock
SAP ui5 beginner tutorial 20 - explanation of expression binding usage of SAP ui5
321. Chessboard segmentation (2D interval DP)
[Video] Markov chain Monte Carlo method MCMC principle and R language implementation | data sharing
随机推荐
Which is a good Bluetooth headset of about 300? 2022 high cost performance Bluetooth headset inventory
k线图形态这样记(口诀篇)
321. Chessboard segmentation (2D interval DP)
Bat Android Engineer interview process analysis + restore the most authentic and complete first-line company interview questions
【C#】使用正则校验内容
2022 Q2 - 提升技能的技巧总结
Construction and maintenance of business websites [12]
2022 Q2 - résumé des compétences pour améliorer les compétences
正则表达式学习笔记
Number of palindromes in C language (leetcode)
Regular expression learning notes
Exception handling of class C in yyds dry goods inventory
SAP ui5 beginner tutorial 20 - explanation of expression binding usage of SAP ui5
Four basic strategies for migrating cloud computing workloads
剑指 Offer 47. 礼物的最大价值
【LeetCode 43】236. The nearest common ancestor of binary tree
The concepts and differences between MySQL stored procedures and stored functions, as well as how to create them, the role of delimiter, the viewing, modification, deletion of stored procedures and fu
leetcode373. Find and minimum k-pair numbers (medium)
There are spaces in the for loop variable in the shell -- IFS variable
np.where 和 torch.where 用法