test = [1,2,3,4,5,6]
result = map(lambda x:x+0.5 if x!=3 else 99,test)
print(list(result))
names = ["A", "B", "C"]
values = [11, 23, 46]
# 使用 zip 同時迭代兩個 List
for x, y in zip(names, values):
print(x, y)
'''
A 11
B 23
C 46
'''
for index,content in enumerate(names):
print(index)
'''
0
A
1
B
2
C
'''
print("aaaa %s and %s"%("123","hhh")) # aaaa 123 and hhh
print("aaa{} {}".format("hello", "world") ) # aaahello world
ricky10116r2d2 發表在
痞客邦
留言(0)
人氣()

使用tensorflow object detection API 训练自己的目标检测模型
ricky10116r2d2 發表在
痞客邦
留言(1)
人氣()
ricky10116r2d2 發表在
痞客邦
留言(0)
人氣()
ricky10116r2d2 發表在
痞客邦
留言(0)
人氣()
TensorFlow object_detection API的安装
ricky10116r2d2 發表在
痞客邦
留言(0)
人氣()
import os
SaveDirectory = os.getcwd() #印出目前工作目錄
ricky10116r2d2 發表在
痞客邦
留言(0)
人氣()
ricky10116r2d2 發表在
痞客邦
留言(0)
人氣()

Tensorboard 使用心得
Code下載 :
morvanzhou.github.io/tutorials/machine-learning/tensorflow/4-1-tensorboard1
安裝方式 :
jianshu.com/p/3d549c2f9880
無法顯示解決方法:
bbs.csdn.net/topics/392288469
ricky10116r2d2 發表在
痞客邦
留言(0)
人氣()
在Powershell中切换Python版本(包括32位与64位切换)
https://blog.csdn.net/TIME_LEAF/article/details/80017471
ricky10116r2d2 發表在
痞客邦
留言(0)
人氣()
mmap是一种虚拟内存映射文件的方法,即将一个文件或者其它对象映射到进程的地址空间,实现文件磁盘地址和进程虚拟地址空间中一段虚拟地址的一一对映关系。
ricky10116r2d2 發表在
痞客邦
留言(0)
人氣()

How to read a station global variable from testsstand simple user interface code. ?
ricky10116r2d2 發表在
痞客邦
留言(0)
人氣()
https://www.cnblogs.com/EltonLiang/p/4981374.html
ricky10116r2d2 發表在
痞客邦
留言(1)
人氣()