-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathsetup.sh
121 lines (103 loc) · 4.13 KB
/
setup.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
#!/bin/bash
######################################################################
######################################################################
## SETUP SCRIPT FOR TACKLE CONTAINER ADVISOR ENVIRONMENT
######################################################################
######################################################################
echo "+---------------------------------------------------------+"
echo "|---------Setting up Tackle Containerzation Adviser-------|"
echo "+---------------------------------------------------------+"
version="1.0.5"
sql_file="$version.sql"
db_file="$version.db"
python="python3"
pip="pip3"
echo "------------------Checking Dependencies--------------------"
# Check to make sure sqlite3 is installed
if ! command -v sqlite3 &> /dev/null
then
echo "**** ERROR: sqlite3 command could not be found. Cannot continue."
exit 1
fi
# Check to make sure python is installed
if ! command -v $python &> /dev/null
then
echo "**** ERROR: python command could not be found. Cannot continue."
exit 1
else
$python -m pip install --upgrade pip wheel build setuptools
fi
# Check to make sure pip3 is installed
if ! command -v $pip &> /dev/null
then
echo "**** ERROR: ${pip} command could not be found. Cannot continue."
exit 1
else
$pip install setuptools==59.6.0
fi
echo "-----------------Dependency Checks PASSED------------------"
######################################################################
## Install dependencies for
######################################################################
echo "------------------Installing requirements--------------------"
$pip install -r entity_standardizer/requirements.txt
if [ $? -ne 0 ]; then
echo "**** ERROR: Failed to install entity_standardizer dependencies. Cannot continue."
fi
cd entity_standardizer
$python -m build
if [ $? -ne 0 ]; then
echo "**** ERROR: Failed to build entity_standardizer package. Cannot continue."
exit 1
fi
$pip install dist/entity_standardizer_tca-1.0-py3-none-any.whl
if [ $? -ne 0 ]; then
echo "**** ERROR: Failed to install entity_standardizer package. Cannot continue."
exit 1
else
cd ..
fi
pip3 install -r requirements.txt
if [ $? -ne 0 ]; then
echo "**** ERROR: Failed to install main dependencies. Cannot continue."
exit 1
fi
echo "-----------------Requirements Installation PASSED------------------"
######################################################################
## Generate the DB file
######################################################################
echo "--------------------Generating DB file---------------------"
cd db
if [[ -f $sql_file ]]; then
## if a file exist it will remove before generating a new file
if [[ -f $db_file ]]; then
rm $db_file
fi
cat $sql_file | sqlite3 $db_file
else
echo "**** ERROR: db/$sql_file file does not exist. Cannot continue."
exit 1
fi
cd ..
echo "--------------------Generated DB file----------------------"
######################################################################
## Generating KG Utility Files
######################################################################
echo "--------------Generating KG Utility Files------------------"
$python kg_utils/generator.py
$python kg_utils/kg_utils.py
echo "----------------Generated KG Utility Files--------------------"
######################################################################
## Generating Entity Standardizer Models
######################################################################
echo "--------------Generating Entity Standardizer Models------------------"
$python benchmarks/generate_data.py
mkdir -p models/deploy
wget https://www.dropbox.com/s/bobcey7ufklw7mr/siamese_model.zip -O "./models/deploy/siamese_model.zip"
unzip models/deploy/siamese_model.zip -d models/deploy/
rm models/deploy/siamese_model.zip
$python benchmarks/run_models.py -model_type siamese -batch_size 5
echo "---------Generated Entity Standardizer Models--------------"
echo "+---------------------------------------------------------+"
echo "|-Set up for Tackle Containerization Adviser Completed !!!-|"
echo "+---------------------------------------------------------+"