Skip to content

Commit da7f79f

Browse files
author
Ashutosh Tiwari
committed
complete different samplers
1 parent ec52738 commit da7f79f

File tree

3 files changed

+73
-2
lines changed

3 files changed

+73
-2
lines changed

Makefile

+10
Original file line numberDiff line numberDiff line change
@@ -41,3 +41,13 @@ run_tests:
4141
@echo "running tests..."
4242
@poetry install --only main --only test -vvv
4343
@poetry run pytest -q tests
44+
45+
.PHONY: run_notebook
46+
run_notebook:
47+
@echo "running notebook..."
48+
@poetry config virtualenvs.in-project true
49+
@poetry install --only main --only debug -vvv
50+
@poetry run poetry run jupyter contrib nbextension install --user
51+
@poetry run jupyter nbextension enable --py codeium --user
52+
@poetry run jupyter serverextension enable --py codeium --user
53+
@poetry run jupyter notebook --ip=0.0.0.0 --port=8888 --no-browser

examples/sbm_sampler.ipynb

+46-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"name": "stderr",
3535
"output_type": "stream",
3636
"text": [
37-
"Using existing file polbooks.zip\n",
37+
"Downloading https://websites.umich.edu/~mejn/netdata/polbooks.zip\n",
3838
"Extracting /tmp/polbooks.zip\n",
3939
"Using existing file polbooks.zip\n",
4040
"Extracting /tmp/polbooks.zip\n"
@@ -148,9 +148,53 @@
148148
},
149149
{
150150
"cell_type": "code",
151-
"execution_count": null,
151+
"execution_count": 9,
152152
"id": "9c32f3b6",
153153
"metadata": {},
154+
"outputs": [
155+
{
156+
"data": {
157+
"text/plain": [
158+
"(3, 105)"
159+
]
160+
},
161+
"execution_count": 9,
162+
"metadata": {},
163+
"output_type": "execute_result"
164+
}
165+
],
166+
"source": [
167+
"block2node.toarray().shape"
168+
]
169+
},
170+
{
171+
"cell_type": "code",
172+
"execution_count": 10,
173+
"id": "846a016e",
174+
"metadata": {},
175+
"outputs": [
176+
{
177+
"data": {
178+
"text/plain": [
179+
"array([[0.10477346, 0.60810079, 1. ],\n",
180+
" [0.08979549, 0.8052493 , 1. ],\n",
181+
" [0.07837984, 0.29670563, 1. ]])"
182+
]
183+
},
184+
"execution_count": 10,
185+
"metadata": {},
186+
"output_type": "execute_result"
187+
}
188+
],
189+
"source": [
190+
"block2block.toarray()"
191+
]
192+
},
193+
{
194+
"cell_type": "code",
195+
"execution_count": null,
196+
"id": "881a4efc",
197+
"metadata": {},
154198
"outputs": [],
155199
"source": []
156200
}

graph_ml/transformations/samplers.py

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Author: Ashutosh Tiwari
2+
# Date: 3/19/24
3+
# Project: GraphML
4+
import numpy as np
5+
from scipy import sparse
6+
from ..utils import utils
7+
8+
class Sampler(object):
9+
"""
10+
Base class for all samplers
11+
Every time there is a new adjacency matrix, sampler is required to be refitted.
12+
May be should be changed in future, fit to be allowed to called multiple times.
13+
"""
14+
def __init__(self):
15+
pass
16+
17+
def fit(self, ):

0 commit comments

Comments
 (0)