Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/napsternxg/pytorch-practice

Some example scripts on pytorch
https://github.com/napsternxg/pytorch-practice

deep-learning machine-learning pytorch pytorch-tutorial

Last synced: about 2 months ago
JSON representation

Some example scripts on pytorch

Awesome Lists containing this project

README

        

# pytorch-practice
Some example scripts on pytorch

## CONLL 2000 Chunking task

Uses BiLSTM CRF loss with char CNN embeddings. To run use:

```
cd data/conll2000
bash get_data.sh
cd ..
python chunking_bilstm_crf_char_concat.py # Takes around # 8 hours on Tesla K80 GPU
```

92.82% mean F1 on test data.