Skip to content

Commit e6244d7

Browse files
sajaddarabinv-kkudrynski
authored andcommitted
[Syngen] 22.12 Release
1 parent 75052a4 commit e6244d7

File tree

111 files changed

+23151
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

111 files changed

+23151
-0
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
**/.idea
2+
**/save
3+
**/.ipynb_checkpoints
4+
**/__pycache__
5+
**/.gitkeep
6+
**/dask-worker-space
7+
**/preprocessed
8+
docker_scripts
9+
generated*
10+
.git
11+
.gitignore
12+
Dockerfile
13+
.dockerignore
14+
README.md
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
/save/
2+
/data/
3+
__pycache__
4+
.ipynb_checkpoints/
5+
*.csv
6+
*.txt
7+
dask-worker-space
8+
exp
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# - image
2+
ARG FROM_IMAGE_NAME=nvcr.io/nvidia/pytorch:22.12-py3
3+
FROM ${FROM_IMAGE_NAME}
4+
5+
# - SNAP dependencies
6+
ENV DEBIAN_FRONTEND=noninteractive
7+
8+
RUN apt-get update \
9+
&& apt-get install -y gnuplot graphviz \
10+
&& rm -rf /var/lib/apt/lists/*
11+
12+
ENV DEBIAN_FRONTEND=interactive
13+
14+
# - requirements
15+
ADD requirements.txt .
16+
RUN pip install --no-cache-dir -r requirements.txt
17+
RUN pip install --no-cache-dir dgl-cu113 dglgo -f https://data.dgl.ai/wheels/repo.html
18+
RUN pip install -U --no-deps dython
19+
20+
# - dir
21+
WORKDIR /workspace/
22+
COPY . .
23+
24+
# - envs
25+
RUN echo 'alias syngen="python syngen"' >> ~/.bashrc
26+
ENV PYTHONPATH "${PYTHONPATH}:/workspace/"
27+
RUN jupyter nbextension enable --py --sys-prefix widgetsnbextension

Tools/DGLPyTorch/SyntheticGraphGeneration/README.md

Lines changed: 511 additions & 0 deletions
Large diffs are not rendered by default.

Tools/DGLPyTorch/SyntheticGraphGeneration/demos/advanced_examples/e2e_cora_demo.ipynb

Lines changed: 772 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)