Skip to content

Commit a9c484e

Browse files
Fix read me
1 parent 00b1595 commit a9c484e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,15 +46,15 @@ First make sure the `semb` library is installed.
4646

4747
- Create a Python 3.7+ [package](https://packaging.python.org/tutorials/packaging-projects/) with a name in form of `semb-dataset[$YOUR_CHOSEN_DATASET_ID]`
4848
- Within the package root directory, make sure `__init__.py` is present
49-
- Create a `dataset.py` and make a `Method` class that inherits from `from semb.data import BaseDataset` and implement the required methods. See `src/datasets/airports/dataset.py` for more details.
49+
- Create a `dataset.py` and make a `Method` class that inherits from `from semb.data import BaseDataset` and implement the required methods. See `semb/datasets/airports/dataset.py` for more details.
5050
- Install the package via `setup.py` or pip.
5151
- Now the dataset is loadable by the main client program that uses `semb`!
5252

5353
### Developing 3rd party Method extension
5454

5555
- Create a Python 3.7+ [package](https://packaging.python.org/tutorials/packaging-projects/) with a name in form of `semb-method[$YOUR_CHOSEN_METHOD_ID]`
5656
- Within the package root directory, make sure `__init__.py` is present
57-
- Create a `dataset.py` and make a `Dataset` class that inherits from `from semb.data import BaseDataset` and implement the required methods. See `src/methods/node2vec/method.py` for more details.
57+
- Create a `dataset.py` and make a `Dataset` class that inherits from `from semb.data import BaseDataset` and implement the required methods. See `semb/methods/node2vec/method.py` for more details.
5858
- Install the package via `setup.py` or pip.
5959
- Now the method is load-able by the main client program that uses `semb`!
6060

0 commit comments

Comments
 (0)