-
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 startup script for Qanary pipeline
- Loading branch information
Showing
1 changed file
with
77 additions
and
0 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,77 @@ | ||
# Kill all java processes | ||
|
||
|
||
# Start Qanary pipeline | ||
cd Qanary/qanary_pipeline-template | ||
nohup java -jar target/*.jar & | ||
|
||
# Start components | ||
cd ../../Qanary-question-answering-components | ||
cd qanary-component-NED-DBpediaSpotlight | ||
nohup java -jar target/*.jar & | ||
|
||
cd .. | ||
cd qanary-component-NED-Dandelion | ||
nohup java -jar target/*.jar & | ||
|
||
cd .. | ||
cd qanary-component-NED-Tagme | ||
nohup java -jar target/*.jar & | ||
|
||
cd .. | ||
cd qanary-component-NED-Ontotext | ||
nohup java -jar target/*.jar & | ||
|
||
# Start NER components | ||
cd .. | ||
cd qanary-component-NER-Dandelion | ||
nohup java -jar target/*.jar & | ||
|
||
cd .. | ||
cd qanary-component-NER-DBpediaSpotlight | ||
nohup java -jar target/*.jar & | ||
|
||
cd .. | ||
cd qanary-component-NER-TextRazor | ||
nohup java -jar target/*.jar & | ||
|
||
cd .. | ||
cd qanary-component-NER-Tagme | ||
nohup java -jar target/*.jar & | ||
|
||
# Start QB components | ||
|
||
cd .. | ||
cd qanary-component-QB-Sina | ||
nohup java -jar target/*.jar & | ||
|
||
cd .. | ||
cd qanary-component-QB-PlatypusWrapper | ||
nohup java -jar target/*.jar & | ||
|
||
cd .. | ||
cd qanary-component-QBE-QAnswer | ||
nohup java -jar target/*.jar & | ||
|
||
# Start LD-Shuyo component | ||
|
||
cd .. | ||
cd qanary-component-LD-Shuyo | ||
nohup java -jar target/*.jar & | ||
|
||
# Start REL component(s) | ||
|
||
cd .. | ||
cd qanary-component-REL-Python-Falcon | ||
docker-compose up --detach | ||
|
||
# Start QE component(s) | ||
|
||
# Already existing | ||
#cd .. | ||
#cd qanary-component-QBE-QAnswer | ||
#nohup java -jar target/*.jar & | ||
|
||
cd .. | ||
cd qanary-component-QE-SparqlExecuter | ||
nohup java -jar target/*.jar |