relation extraction of NLP
算法
Boostrap Learning
Snowball
- Boostrap 的一种改良算法
- 2000 年发表
参考教程
pypy ---- a Python Interpreter Implementation
通过 conda 安装
参考:https://conda-forge.org/blog/posts/2020-03-10-pypy/
1 2 3conda config --set channel_priority strict conda create -n pypy pypy conda activate pypy
cffi ---- Python C API Tool
使用模式
综述
- ABI 不使用 compiler
- API 使用 compiler
- in-line, 只使用 cffi 代码
- out-of-line 还使用 .c 文件
不严谨地说
- in-line –> ABI +
- out-of-line –> API +
ABI Vs. API
ABI
- 直接和 二进制文件交互(lib)
eg:
LGPL Notes
参考
如何闭源项目 并调用 lgpl 开源项目
参考:
回答引文
Situation: Your own C / C++ source code using an unmodified LGPL library to produce a commercial product (with closed source code) that you can distribute to customers (for a fee).
Python Game Frameworks
框架
- Panda3D
专业级工具
- 推荐入门框架工具:Alice
Pyglet