上一页 1 2 3 4 5 6 ··· 15 下一页
摘要: 什么是单调性? 单调是一个函数或数量的变化。 单调递增函数:如果对所有 x和 y,当 x≤y时,都有f(x)≤ f(y),则该函数被称为单调递增函数(见图1)。这个函数不一定要增加,只是不能减少。 单调递减函数:如果对所有 x和 y,当 x≤y时,都有 f(x)≥f(y),则该函数被称为单调递减函数 阅读全文
posted @ 2021-12-16 12:14 威威后花园 阅读(682) 评论(0) 推荐(0) 编辑
摘要: https://zhuanlan.zhihu.com/p/35709485 图像分类任务 我们希望根据图片动物的轮廓、颜色等特征,来预测动物的类别,有三种可预测类别:猫、狗、猪。假设我们当前有两个模型(参数不同),这两个模型都是通过sigmoid/softmax的方式得到对于每个预测结果的概率值: 阅读全文
posted @ 2021-12-16 11:21 威威后花园 阅读(163) 评论(0) 推荐(0) 编辑
摘要: https://tensorflow.google.cn/versions/r2.5/api_docs/python/tf/distribute/experimental/ParameterServerStrategy 阅读全文
posted @ 2021-08-23 11:45 威威后花园 阅读(25) 评论(0) 推荐(0) 编辑
摘要: 背景 将jupyter运行的环境指定为自己的环境 step 1 miniconda安装自己的python环境 https://www.yuque.com/hiahia121/kwx05s/fc4nww step2 将jupyter运行的环境指定自己新建的python环境 参考 https://sta 阅读全文
posted @ 2021-08-14 16:20 威威后花园 阅读(379) 评论(0) 推荐(0) 编辑
摘要: import matplotlib.pyplot as plt x = pdf.loc[:, 'sway_intention'] plt.hist(x, bins=10, range=(0, 1), density=True, stacked=True, weights=None, cumulati 阅读全文
posted @ 2021-07-22 12:08 威威后花园 阅读(622) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/bitcarmanlee/article/details/52143909 阅读全文
posted @ 2021-07-22 10:24 威威后花园 阅读(22) 评论(0) 推荐(0) 编辑
摘要: 背景 新开发的代码,合入到远端master之后,没有生效。定位到spark服务,在切换分支的时候,遇到branch 分叉;导致依然使用旧代码。 切换分支到master时依然遇到xxx have diverged问题 服务器本地master分支 ... → ee5e335 → e0bb521→ 674 阅读全文
posted @ 2021-07-14 20:02 威威后花园 阅读(835) 评论(0) 推荐(0) 编辑
摘要: l1 = [174149,174183,174177,174171,174131,174087,174135,174181,174127,174145,174137,174111,174097,174185,174189,174145,174179,174163,174167,174095,1740 阅读全文
posted @ 2021-06-12 14:19 威威后花园 阅读(94) 评论(0) 推荐(0) 编辑
摘要: 背景如题 本地debug go的代码的时候,遇到一个如下的报错 {"errMsg": "Read resultDrivers file error!err:HttpPostParam failed, Error:Post \"http://xxxxx:8000/api\": proxyconnect 阅读全文
posted @ 2021-06-09 15:33 威威后花园 阅读(228) 评论(0) 推荐(0) 编辑
摘要: 背景 通过代码监听的端口号,找到部署服务的文件地址 step1 lsof -i:8080 找到对应的端口号监听进程pid step2 根据进程pid查看/proc/$pid文件 ll /proc/401928 阅读全文
posted @ 2021-06-09 06:03 威威后花园 阅读(104) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 15 下一页