EvalNE

(โ˜… 107)

Source code for EvalNE, a Python library for evaluating Network Embedding methods.

  • .gitignore
  • CODE_OF_CONDUCT.md
  • CONTRIBUTING.md
  • LICENSE
  • README.md
  • requirements.txt
  • setup.py

# Installation Guide

1. Get the code
git clone https://github.com/Dru-Mara/EvalNE

Downloads the entire project code from GitHub to your computer.

cd EvalNE

Moves into the project folder you just downloaded.

2. Official Install Script

Easy Recommended
Prerequisites
  • APT (Debian/Ubuntu ๊ณ„์—ด) Built into Debian/Ubuntu-based Linux distributions.
  • Python 3 Python is required to use pip.
sudo apt-get install python3-pip

Installs directly from the APT package repository (Debian/Ubuntu-based).

sudo apt-get install python3-tk

Installs directly from the APT package repository (Debian/Ubuntu-based).

pip install evalne

Installs the package published on PyPI directly โ€” no need to clone the source.

โœ… After installing, open a new terminal and run the program's version command (e.g. --version) to confirm it worked.

Pulled directly from this repo's README.

3. Python

Easy
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Python 3 On Windows, be sure to check 'Add Python to PATH' during installation.
sudo apt-get install python3-pip

Installs directly from the APT package repository (Debian/Ubuntu-based).

pip install evalne

Installs the package published on PyPI directly โ€” no need to clone the source.

python -m evalne ./examples/conf.ini

Runs the Python script (or module).

python -m evalne ./examples/node2vec/conf_node2vec.ini

Runs the Python script (or module).

'python -m openne --method node2vec --graph-format edgelist --p 1 --q 1',

Runs the Python script (or module).

โœ… If it runs without errors and prints output in the terminal, it worked.

Pulled directly from this repo's README.

// repository documentation