forked from psmeros/SciClops
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added titles on the set of possible claims.
- Loading branch information
Panayiotis Smeros
committed
Feb 7, 2020
1 parent
3373662
commit 0ce0331
Showing
4 changed files
with
27 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
|
||
#!/bin/sh | ||
|
||
sudo apt install -y openjdk-8-jre screen htop git vim | ||
|
||
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh | ||
chmod +x Miniconda3-latest-Linux-x86_64.sh | ||
./Miniconda3-latest-Linux-x86_64.sh | ||
source ~/.bashrc | ||
rm -rf Miniconda3-latest-Linux-x86_64.sh | ||
|
||
conda install -y pandas numpy networkx nltk spacy pyspark beautifulsoup4 scikit-learn | ||
conda install pytorch cudatoolkit=9.0 -c pytorch | ||
pip install -U newspaper3k textstat pandarallel simpletransformers | ||
python -m nltk.downloader punkt vader_lexicon #-d /path/to/nltk_data | ||
python -m spacy download en_core_web_lg | ||
|
||
git clone https://github.com/rwalk/gsdmm; cd gsdmm; python setup.py install; cd ..; rm -rf gsdmm | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters