Skip to content

Instantly share code, notes, and snippets.

@koyo922
koyo922 / glove.py
Created January 5, 2020 09:32
demo for GloVe
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# vim: tabstop=4 shiftwidth=4 expandtab number
"""
glove的简易实现,包括
- 准备训练数据
- 训练词向量
- 实验词向量观察语义空间的降维效果
#!/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
"""