https://github.com/kiankd/events
Raw File
Tip revision: ea9910b2e92fca42fa15ad0073167863225a308b authored by Kian Kenyon-Dean on 01 October 2018, 20:41:06 UTC
small typo fix
Tip revision: ea9910b
startup.sh
#!/bin/bash

git clone https://github.com/conll/reference-coreference-scorers.git 
curl -O kyoto.let.vu.nl/repo/ECB+_LREC2014.zip
unzip ECB+_LREC2014.zip
rm ECB+_LREC2014.zip
mv ECB+_LREC2014 ECB+
mkdir ECB+/ECB+/
unzip ECB+/ECB+.zip -d ECB+/
rm ECB+/ECB+.zip
unzip Parsed.zip -d ECB+/
rm Parsed.zip
tar -xzf vocab_files.tar.gz
rm vocab_files.tar.gz
gunzip all_parsed_ecb+.npy.gz
gunzip events_parsed_ecb+.npy.gz

back to top