Skip to content

Commit

Permalink
Added startup script for Qanary pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
dschiese committed Oct 19, 2023
1 parent 3bf37f5 commit 591e51d
Showing 1 changed file with 77 additions and 0 deletions.
77 changes: 77 additions & 0 deletions startComponents.sh
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

0 comments on commit 591e51d

Please sign in to comment.