Skip to content

Commit ec4f57d

Browse files
committed
fix ordering
1 parent a7d76e0 commit ec4f57d

File tree

1 file changed

+8
-10
lines changed

1 file changed

+8
-10
lines changed

README.md

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -31,19 +31,19 @@ The image above shows the distributed architecture of JenTab. Here you are a bri
3131
The first step of JenTab setup is to structure the [assets](/assets) folder.
3232
For demonstration, here, we will setup the first round,
3333

34-
0. Input configuration (dataset)
34+
1. Input configuration (dataset)
3535
* [2020 Dataset per Round](https://zenodo.org/record/4282879#.YIrI57UzZZg)
3636
* Download tables and targets for Round 1
3737
* Your downloaded ```tables``` should go under
3838
* `/assets/data/input/2020/Round 1/`
3939
* Your downloaded ``CEA_Round1_Targets.csv``, `CTA_Round1_Targets.csv` and `CPA_Round1_Targets.csv` should go under
4040
* `/assets/data/input/2020/Round 1/targets/`
41-
* Pre-computed `Generic_Lookup` `db3` files
41+
2. Pre-computed `Generic_Lookup` `db3` files
4242
* [Generic_Lookup per Round](https://github.com/fusion-jena/JenTab_precomputed_lookup)
4343
* Download the `db3` file for `R1`
4444
* Your downloaded `lookup.db3` should go under
4545
* `/assets/cache/Generic_Lookup/`
46-
* `Baseline_Approach` requires the stopwords
46+
3. `Baseline_Approach` requires the stopwords
4747
* download [stopwords.txt](https://gist.github.com/sebleier/554280)
4848
* rename the downloaded file to `stopwords.txt`
4949
* locate it under:
@@ -75,8 +75,8 @@ For demonstration, here, we will setup the first round,
7575

7676
After the assets are ready, the fastest way to get JenTab up and running is via docker setup, with the following order.
7777

78-
0. ```cd /Services```
79-
1. Manager
78+
1. ```cd /Services```
79+
2. Manager
8080
* Change the default credentials in [services/Manager/config.py](/services/Manager/config.py) to yours
8181
* username: ```YourManagerUsername```
8282
* password: ```YourManagerPassword```
@@ -86,16 +86,14 @@ After the assets are ready, the fastest way to get JenTab up and running is via
8686
* Use the following command to lanuch the Manager node
8787
* ```docker-compose -f docker-compose.manager.yml up ```
8888
* Manager is suppose to run at [http://localhost:5100](http://localhost:5100)
89-
2. All other services ```docker-compose -f docker-compose.yml up```
90-
3. Runner
89+
3. All other services ```docker-compose -f docker-compose.yml up```
90+
4. Runner
9191
* ```cd /Runner```
9292
* Change manager credentials in [services/Runner/config.py](/services/Runner/config.py) to your selected ones
9393
* Make sure that `manager_url = 'http://127.0.0.1:5100' #local` in the [services/Runner/config.py](/services/Runner/config.py)
9494
* Build an image for the Runner ```docker build runner .```
9595
* Run ```docker run --network="host" runner```
96-
97-
98-
96+
9997
* Note1: for basic understanding of docker commands, please visit the official documentation of [docker](https://docs.docker.com/get-started/).
10098
* Note2: We also support native execution, but, in this case, you will setup each service on its own. So, we refer to:
10199
* each folder of each service under [services](/services).

0 commit comments

Comments
 (0)