Skip to content

Instantly share code, notes, and snippets.

@mkonicek
Last active January 23, 2018 18:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mkonicek/43aa95394afed84bec61b610cb2cc77a to your computer and use it in GitHub Desktop.
Save mkonicek/43aa95394afed84bec61b610cb2cc77a to your computer and use it in GitHub Desktop.
from typing import List
Vector = List[float]
class Word:
def __init__(self, text: str, vector: Vector) -> None:
self.text = text
self.vector = vector
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment