Python 实用库推荐 ~

除了 NumPy、SciPy、Pandas 等常用的库,有哪些用过都说好的库推荐呢~

python
179 views
Comments
登录后评论
Sign In
·
  • 深度学习训练:pytorch,tensorflow,让你轻松入门深度学习
  • 深度学习前向优化:torch2trt,方便快捷的将pytorch等模型转到trt,提高gpu的利用效率
  • yacs:深度学习训练配置文件管理
  • gradio: 快速搭建深度学习demo
·

数据可视化的话可以试试这些:

  • Matplotlib:已经有十多年历史了,和 matlab 相似
  • Seaborn:在 Matplotlib 基础上面增强,样式看起来更好看点
  • pyecharts:11.3k star,API 简洁,支持链式调用
  • superset:39.6k star,apache 出品,必属精品

Matplotlib 一般够用了,平时可以看 cheat sheet 速查一些方法:cheatsheet

如果对编码一致性和显示一致性的自定义能力要求较高的话,还是 matlab 好

·

I recommand opencv-python for computer vision. You can install it by

pip install opencv-python

OpenCV (Open Source Computer Vision Library: http://opencv.org) is an open-source library that includes several hundreds of computer vision algorithms.

OpenCV has a modular structure, including Core functionality, Image Processing, Video Analysis and etc.

It a excellent python library for research and enginnering.