python
头发凌乱的鳌拜
Leetcode刷题记录,DL&ML基础知识总结,读论文总结。
展开
-
python 整数浮点数最大值与最小值
整数:#python 2import sysmaxint=sys.maxintminint=-sys.maxint-1#python3import sysmaxint=sys.maxsizeminint=-sys.maxsize-1浮点数:maxfloat=float('inf')minfloat=float('-inf')原创 2022-01-10 09:20:34 · 1653 阅读 · 0 评论 -
python tips:warning消除
两种方法:1.在代码中import warningswarnings.filterwarnings("ignore")2.运行时python -W ignore script.pyELSE:以上两种方法对于库源码中的报错没有作用,比如对于torchtext中的warning.warn,目前是直接注释了源码中的warning./home/***/anaconda3/envs/py36/lib/python3.6/site-packages/torchtext/data/f原创 2021-04-27 00:11:24 · 856 阅读 · 1 评论