Done
分词、词频统计
好几天没出门了,出去逛了一上午...罪恶
AI算法做程序分析
今天晚上听了科恩的AI算法做程序分析的直播,感觉自己要找不到工作了。。。以后想从事程序分析方向的工作感觉还是得先把编译原理的东西弄透彻,至少主流编译器的那些编译的参数选项都要知道是什么意思吧,抽个时间具体学习总结一下。
而且感觉还是要有一个具体的方向来走,学东西还是要有项目支持才能学的透彻,虽然我现在逆向都没逆明白...头大。
一点点直播笔记...也不知道自己听明白了个啥
1. Fearure Engineering
2. Embedding
3. Mapping
Program data:
Source Code
IR
Assembly language
Byte Code
API/sys call
comments
AI data:
1. matrix
2. sequence
3. topology:social relationshop graph
今天讲的论文在这里:
https://keenlab.tencent.com/zh/2019/12/10/Tencent-Keen-Security-Lab-Order-Matters/
https://keenlab.tencent.com/en/whitepapers/Ordermatters.pdf
python json库
- 读方法:load/loads
- 写方法:dump/dumps
其中带s的与字符串相关,不带s的与文件相关
带s的
# 读json
with open(filename, 'r') as f:
content = f.read()
json_str = json.loads(content) # 字符串转json
# 写json
with open(filename, 'w') as f:
stus={'xiaojun':'123456','xiaohei':'7890','lrx':'111111'}
res2 = json.dumps(stus,indent=8,ensuer_ascii=False) #json转字符串
f.write(res2) #写字符串
不带s的
# 读json
with open(filename, 'r') as f:
json_str = json.load(f) # 文件转json
# 写json
with open(filename, 'w') as f:
stus={'xiaojun':'123456','xiaohei':'7890','lrx':'111111'}
json.dump(stus, f, indent, ensure_ascii=False) # 直接将json写入文件
网友评论