This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
# vim: tabstop=4 shiftwidth=4 expandtab number | |
""" | |
glove的简易实现,包括 | |
- 准备训练数据 | |
- 训练词向量 | |
- 实验词向量观察语义空间的降维效果 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
# vim: tabstop=4 shiftwidth=4 expandtab number | |
""" | |
演示Python Descriptor(描述符)的 基础语法和用例 | |
Authors: qianweishuo<[email protected]> | |
Date: 2020/2/1 10:45 PM | |
""" | |
OlderNewer