Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,18 +20,18 @@ We develop this toolkit according to the settings of DeepWalk. The implemented o

- Clone this repo.
- enter the directory where you clone it, and run the following code
```bash
pip install -r requirements.txt
cd src
python setup.py install
```
```bash
pip install -r requirements.txt
python setup.py install
```

#### General Options

You can check out the other options available to use with *OpenNE* using:

python -m openne --help

```bash
python -m openne --help
```

- --input, the input file of a network;
- --graph-format, the format of input graph, adjlist or edgelist;
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions src/setup.py → setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
author="THUNLP",
description="Open Source Network Embedding toolkit",
packages=find_packages(),
long_description=open("../README.md").read(),
long_description=open("README.md").read(),
zip_safe=False,
setup_requires=[]
)
)