Metadata-Version: 2.1
Name: pytorch-swem
Version: 0.2.1
Summary: Pytorch implementation of the simple word embedding model.
Home-page: https://github.com/schoennenbeck/swem
Author: Sebastian Schönnenbeck
Author-email: schoennenbeck@gmail.com
License: MIT
Platform: UNKNOWN
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Provides-Extra: dev
Provides-Extra: docs
License-File: LICENSE

# Simple word embedding models

![PyPI](https://img.shields.io/pypi/v/pytorch-swem)
![PyPI - License](https://img.shields.io/pypi/l/pytorch-swem)
[![Coverage Status](https://coveralls.io/repos/github/schoennenbeck/swem/badge.svg)](https://coveralls.io/github/schoennenbeck/swem)

A pytorch implementation of the Simple Word Embedding Model from the paper [Baselines need more love](https://arxiv.org/abs/1808.09843) and some additional models and utilities.

## Installation 

### From pypi
To install this package from pypi simply run
```
pip install pytorch-swem
```

### From source
To install from source clone this repository and install via pip:
```
git clone https://github.com/schoennenbeck/swem.git
cd swem
pip install .
```

