Yaning1001 commited on
Commit
fb9bb41
·
verified ·
1 Parent(s): b576cf5

Add files using upload-large-folder tool

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. .gitattributes +9 -0
  2. adversary_examples/Deeprobust.png +3 -0
  3. adversary_examples/adversarial.png +3 -0
  4. adversary_examples/adversarial_1.png +3 -0
  5. adversary_examples/cifar_advexample_pgd.png +0 -0
  6. adversary_examples/graph_attack_example.png +0 -0
  7. adversary_examples/mnist_advexample_fgsm_adv.png +0 -0
  8. adversary_examples/mnist_advexample_fgsm_ori.png +0 -0
  9. deeprobust/graph/black_box.py +75 -0
  10. deeprobust/graph/defense/data/processed/pre_transform.pt +3 -0
  11. deeprobust/image/adversary_examples/deepfool_orig.png +3 -0
  12. deeprobust/image/adversary_examples/deepfool_pert.png +3 -0
  13. deeprobust/image/adversary_examples/deepfool_result.png +3 -0
  14. deeprobust/image/adversary_examples/test_im1.jpg +3 -0
  15. deeprobust/image/adversary_examples/test_im2.jpg +3 -0
  16. docs/DeepRobust.png +3 -0
  17. examples/graph/cg_scores_citeseer_0.05.npy +3 -0
  18. examples/graph/cg_scores_citeseer_0.10.npy +3 -0
  19. examples/graph/cg_scores_cora.npy +3 -0
  20. examples/graph/cg_scores_polblogs_0.05.npy +3 -0
  21. examples/graph/cg_scores_polblogs_0.10.npy +3 -0
  22. examples/graph/cg_scores_polblogs_0.25.npy +3 -0
  23. examples/graph/cgscore_experiments/attack_method/data/processed/pre_filter.pt +3 -0
  24. examples/graph/cgscore_experiments/attack_method/data/processed/pre_transform.pt +3 -0
  25. examples/graph/cgscore_experiments/attacked_adj/Flickr/dice_Flickr_0.25.pt +3 -0
  26. examples/graph/cgscore_experiments/attacked_adj/Flickr/pgd_Flickr_0.25.pt +3 -0
  27. examples/graph/cgscore_experiments/attacked_adj/Flickr/random_Flickr_0.3.pt +3 -0
  28. examples/graph/cgscore_experiments/attacked_adj/Flickr/random_Flickr_0.5.pt +3 -0
  29. examples/graph/cgscore_experiments/attacked_adj/citeseer/pgd_citeseer_0.25.pt +3 -0
  30. examples/graph/cgscore_experiments/attacked_adj/citeseer/random_citeseer_0.25.pt +3 -0
  31. examples/graph/cgscore_experiments/attacked_adj/cora/clean_cora_0.0.pt +3 -0
  32. examples/graph/cgscore_experiments/attacked_adj/cora/dice_cora_0.25.pt +3 -0
  33. examples/graph/cgscore_experiments/attacked_adj/cora/meta_cora_0.25.pt +3 -0
  34. examples/graph/cgscore_experiments/attacked_adj/cora/minmax_cora_0.25.pt +3 -0
  35. examples/graph/cgscore_experiments/attacked_adj/cora/pgd_cora_0.25.pt +3 -0
  36. examples/graph/cgscore_experiments/attacked_adj/cora/pgd_cora_0.3.pt +3 -0
  37. examples/graph/cgscore_experiments/attacked_adj/cora/random_cora_0.25.pt +3 -0
  38. examples/graph/cgscore_experiments/attacked_adj/pubmed/random_pubmed_0.3.pt +3 -0
  39. examples/graph/cgscore_experiments/defense_method/data/processed/pre_filter.pt +3 -0
  40. examples/graph/cgscore_experiments/defense_method/data/processed/pre_transform.pt +3 -0
  41. examples/graph/cgscore_experiments/grb/grb_dataset/grb-aminer/adj.npz +3 -0
  42. examples/graph/cgscore_experiments/grb/grb_dataset/grb-aminer/index.npz +3 -0
  43. examples/graph/cgscore_experiments/grb/grb_dataset/grb-aminer/labels.npz +3 -0
  44. examples/graph/cgscore_experiments/grb/grb_dataset/grb-citeseer/adj.npz +3 -0
  45. examples/graph/cgscore_experiments/grb/grb_dataset/grb-citeseer/features.npz +3 -0
  46. examples/graph/cgscore_experiments/grb/grb_dataset/grb-citeseer/index.npz +3 -0
  47. examples/graph/cgscore_experiments/grb/grb_dataset/grb-citeseer/labels.npz +3 -0
  48. examples/graph/cgscore_experiments/grb/grb_dataset/grb-cora/adj.npz +3 -0
  49. examples/graph/cgscore_experiments/grb/grb_dataset/grb-cora/features.npz +3 -0
  50. examples/graph/cgscore_experiments/grb/grb_dataset/grb-cora/index.npz +3 -0
.gitattributes CHANGED
@@ -33,3 +33,12 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
 
 
 
 
 
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ adversary_examples/adversarial_1.png filter=lfs diff=lfs merge=lfs -text
37
+ docs/DeepRobust.png filter=lfs diff=lfs merge=lfs -text
38
+ deeprobust/image/adversary_examples/test_im1.jpg filter=lfs diff=lfs merge=lfs -text
39
+ deeprobust/image/adversary_examples/test_im2.jpg filter=lfs diff=lfs merge=lfs -text
40
+ deeprobust/image/adversary_examples/deepfool_pert.png filter=lfs diff=lfs merge=lfs -text
41
+ deeprobust/image/adversary_examples/deepfool_result.png filter=lfs diff=lfs merge=lfs -text
42
+ deeprobust/image/adversary_examples/deepfool_orig.png filter=lfs diff=lfs merge=lfs -text
43
+ adversary_examples/adversarial.png filter=lfs diff=lfs merge=lfs -text
44
+ adversary_examples/Deeprobust.png filter=lfs diff=lfs merge=lfs -text
adversary_examples/Deeprobust.png ADDED

Git LFS Details

  • SHA256: c66ce070490ac90d49493559d39b93ca2eed1fcd538bb2632a6418c0bbde1067
  • Pointer size: 131 Bytes
  • Size of remote file: 127 kB
adversary_examples/adversarial.png ADDED

Git LFS Details

  • SHA256: d9b523b47f65ebcf4c32123cb9755d5a929a44b9c01925c1ae24bb449199c7f1
  • Pointer size: 131 Bytes
  • Size of remote file: 102 kB
adversary_examples/adversarial_1.png ADDED

Git LFS Details

  • SHA256: d9b523b47f65ebcf4c32123cb9755d5a929a44b9c01925c1ae24bb449199c7f1
  • Pointer size: 131 Bytes
  • Size of remote file: 102 kB
adversary_examples/cifar_advexample_pgd.png ADDED
adversary_examples/graph_attack_example.png ADDED
adversary_examples/mnist_advexample_fgsm_adv.png ADDED
adversary_examples/mnist_advexample_fgsm_ori.png ADDED
deeprobust/graph/black_box.py ADDED
@@ -0,0 +1,75 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import torch
2
+ from deeprobust.graph.defense import GCN
3
+ import pickle
4
+ import os.path as osp
5
+ from deeprobust.graph.data import Dataset
6
+ from deeprobust.graph.utils import preprocess
7
+ import os
8
+
9
+ def load_victim_model(data, model_name='gcn', device='cpu', file_path=None):
10
+ """load_victim_model.
11
+
12
+ Parameters
13
+ ----------
14
+ data : deeprobust.graph.Dataset
15
+ graph data
16
+ model_name : str
17
+ victime model name, e.g. ('gcn', 'deepwalk') But currently it only
18
+ supports gcn as victim model.
19
+ device : str
20
+ 'cpu' or 'cuda'
21
+ file_path :
22
+ if given, the victim model will be loaded from this path.
23
+ """
24
+
25
+ assert model_name == 'gcn', 'Currently only support gcn as victim model...'
26
+ if file_path is None:
27
+ # file_path = f'results/saved_models/{data.name}/{model_name}_checkpoint'
28
+ file_path = 'results/saved_models/{0}/{1}_checkpoint'.format(data.name, model_name)
29
+ else:
30
+ file_path = osp.join(file_path, '{}_checkpoint'.format(model_name))
31
+
32
+ # Setup victim model
33
+ if osp.exists(file_path):
34
+ victim_model = GCN(nfeat=data.features.shape[1], nclass=data.labels.max().item()+1,
35
+ nhid=16, dropout=0.5, weight_decay=5e-4, device=device)
36
+
37
+ victim_model.load_state_dict(torch.load(file_path, map_location=device))
38
+ victim_model.to(device)
39
+ victim_model.eval()
40
+ return victim_model
41
+
42
+ victim_model = train_victim_model(data=data, model_name=model_name,
43
+ device=device, file_path=osp.dirname(file_path))
44
+ return victim_model
45
+
46
+ def train_victim_model(data, model_name='gcn', file_path=None, device='cpu'):
47
+ """Train the victim model (target classifer) and save the model
48
+ Note that the attacker can only do black query to this model.
49
+ """
50
+
51
+ if file_path is None:
52
+ file_path = 'results/saved_models/%s/' % data.name
53
+
54
+ adj, features, labels = data.adj, data.features, data.labels
55
+ idx_train, idx_val, idx_test = data.idx_train, data.idx_val, data.idx_test
56
+ nfeat = features.shape[1]
57
+ adj, features, labels = preprocess(adj, features, labels, preprocess_adj=False)
58
+
59
+ # Setup victim model
60
+ victim_model = GCN(nfeat=features.shape[1], nclass=labels.max().item()+1,
61
+ nhid=16, dropout=0.5, weight_decay=5e-4, device=device)
62
+
63
+ adj = adj.to(device)
64
+ features = features.to(device)
65
+ labels = labels.to(device)
66
+ victim_model = victim_model.to(device)
67
+ victim_model.fit(features, adj, labels, idx_train, idx_val)
68
+
69
+ # save the model
70
+ if not osp.exists(file_path):
71
+ os.system('mkdir -p %s' % file_path)
72
+ torch.save(victim_model.state_dict(), osp.join(file_path, model_name + '_checkpoint'))
73
+ victim_model.eval()
74
+ return victim_model
75
+
deeprobust/graph/defense/data/processed/pre_transform.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0b235e5f068a00e5bf391cec33fad69292177c841d5a8fd2ab76f764489fb6e7
3
+ size 431
deeprobust/image/adversary_examples/deepfool_orig.png ADDED

Git LFS Details

  • SHA256: 19899d5be1cce06ee75228449f1053b52ecb9bd4d4200642c288081774d3a545
  • Pointer size: 131 Bytes
  • Size of remote file: 161 kB
deeprobust/image/adversary_examples/deepfool_pert.png ADDED

Git LFS Details

  • SHA256: 5e96d5524cbef386c203d155257b3ce605ee7fcd9d31f8af0c77be56d3ebfc74
  • Pointer size: 131 Bytes
  • Size of remote file: 162 kB
deeprobust/image/adversary_examples/deepfool_result.png ADDED

Git LFS Details

  • SHA256: 4b401dbb4fd26f76bc9360cf09f0e9492e4ad520e0b792141a98bbc4cc77be43
  • Pointer size: 131 Bytes
  • Size of remote file: 152 kB
deeprobust/image/adversary_examples/test_im1.jpg ADDED

Git LFS Details

  • SHA256: 695fc9e0357c3a8ddd7696436b3f578eefde2a7f831769d3d8dae12c1eccae46
  • Pointer size: 131 Bytes
  • Size of remote file: 159 kB
deeprobust/image/adversary_examples/test_im2.jpg ADDED

Git LFS Details

  • SHA256: 883713acbf52b9d84c00e4f685c3d6f7e83118bae16553e8aa34de2c472ec22f
  • Pointer size: 131 Bytes
  • Size of remote file: 241 kB
docs/DeepRobust.png ADDED

Git LFS Details

  • SHA256: c66ce070490ac90d49493559d39b93ca2eed1fcd538bb2632a6418c0bbde1067
  • Pointer size: 131 Bytes
  • Size of remote file: 127 kB
examples/graph/cg_scores_citeseer_0.05.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d3a20b3b43a2ab55c979314ef504416027bfb576dd33c2c0103d9a365c53a068
3
+ size 35616928
examples/graph/cg_scores_citeseer_0.10.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1e955a106ddf72cbd54f2323d96fee1cb71d8e053577a2f3465a6cc3325a8453
3
+ size 35616928
examples/graph/cg_scores_cora.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:368658466378f2fa355d836190c08a9e1659c2dfa35713a7003dfae7d80d9f29
3
+ size 49401928
examples/graph/cg_scores_polblogs_0.05.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d995ff9b54b61b3536f5eebf054d4f263dfd998588365a3eceb8a9e53709baac
3
+ size 11946400
examples/graph/cg_scores_polblogs_0.10.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b4d4318e8671025a86350f68f11765a6dba410aa7af20f2ccf9b219df3904115
3
+ size 11946400
examples/graph/cg_scores_polblogs_0.25.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4de1fc74c46c90c3c2e1f6c60ef77eb0897ba34844a36d43a52b285216cf4492
3
+ size 11946400
examples/graph/cgscore_experiments/attack_method/data/processed/pre_filter.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bed90159f346b7ee0fa80e1d287e0ebe46264111c1e928ef341d926aae6a075c
3
+ size 864
examples/graph/cgscore_experiments/attack_method/data/processed/pre_transform.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bed90159f346b7ee0fa80e1d287e0ebe46264111c1e928ef341d926aae6a075c
3
+ size 864
examples/graph/cgscore_experiments/attacked_adj/Flickr/dice_Flickr_0.25.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0ed52214b75ee8b761c57890200430d63e79f3608910e317a1feaacf46ef5f70
3
+ size 229523721
examples/graph/cgscore_experiments/attacked_adj/Flickr/pgd_Flickr_0.25.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d091848b4385190f937fb32050d7d197891cb045387bf79a2428b7f6969b8321
3
+ size 229523716
examples/graph/cgscore_experiments/attacked_adj/Flickr/random_Flickr_0.3.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:04a1ded9277d92ff1fd9312211b4872e18b6304bcf96f508db7c82dd8cba8e03
3
+ size 12571732
examples/graph/cgscore_experiments/attacked_adj/Flickr/random_Flickr_0.5.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:583e2d322164406fcee3f75e3f4f72698b222fc92976fd97e3cd4f1368745a5a
3
+ size 14456788
examples/graph/cgscore_experiments/attacked_adj/citeseer/pgd_citeseer_0.25.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bd61be5a71607244f0d022381f506bc3ded2fb86c9e085b36867d1df7fe67c2b
3
+ size 17809614
examples/graph/cgscore_experiments/attacked_adj/citeseer/random_citeseer_0.25.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d2ad50ab40e983c1a1dfbc8ee6680389f0bde2e7968f99ae68a9ebd10ba48f4b
3
+ size 227174
examples/graph/cgscore_experiments/attacked_adj/cora/clean_cora_0.0.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4eca20914e7d6d92a0c05d63418eb3b3afbb5a1a2ec4a6c0d240c79a9bef9f7f
3
+ size 24702079
examples/graph/cgscore_experiments/attacked_adj/cora/dice_cora_0.25.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bce96164c4b0966c799a3cadfc44d508d05fa1aad74ebf6bf26d6620c68774af
3
+ size 24702079
examples/graph/cgscore_experiments/attacked_adj/cora/meta_cora_0.25.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a8cb4c01ceb8391ecbec4f29f752e442dc34c4236181e4c5a2344604ffaa622e
3
+ size 24702079
examples/graph/cgscore_experiments/attacked_adj/cora/minmax_cora_0.25.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:671f668695fb010e2089b3a317a239edc17b3741df31604ee5ad4e2452ebdf37
3
+ size 24702089
examples/graph/cgscore_experiments/attacked_adj/cora/pgd_cora_0.25.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:33f40afcd209bd723ab35033958ea3c4de964de4aca5610032e7d74221414435
3
+ size 24702074
examples/graph/cgscore_experiments/attacked_adj/cora/pgd_cora_0.3.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2435150ce2bb804c4e2ed702d3f3f794f4d429a03d281ef09f4d1abdcb2e46b3
3
+ size 24702069
examples/graph/cgscore_experiments/attacked_adj/cora/random_cora_0.25.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5916b397ddc80e9a51821ffedb04221088bbdd3e7f4deca36e2ef66e3ce14cf0
3
+ size 24702089
examples/graph/cgscore_experiments/attacked_adj/pubmed/random_pubmed_0.3.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a7d5387b7aee84cdb66e878a025b8788edf1305a7de6440fb1f394dce3a0c367
3
+ size 2700180
examples/graph/cgscore_experiments/defense_method/data/processed/pre_filter.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bed90159f346b7ee0fa80e1d287e0ebe46264111c1e928ef341d926aae6a075c
3
+ size 864
examples/graph/cgscore_experiments/defense_method/data/processed/pre_transform.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bed90159f346b7ee0fa80e1d287e0ebe46264111c1e928ef341d926aae6a075c
3
+ size 864
examples/graph/cgscore_experiments/grb/grb_dataset/grb-aminer/adj.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e1b5d89dbb7096609ae06a5a8fc3f6cbcfe912e4ff80222c648e6f9bbd579672
3
+ size 18639202
examples/graph/cgscore_experiments/grb/grb_dataset/grb-aminer/index.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:02c94d58249a572ff2d872161e0a95082dddc668aea6501fbdf4ae7f7a9688fc
3
+ size 1321087
examples/graph/cgscore_experiments/grb/grb_dataset/grb-aminer/labels.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:448c8c1b797e402ff85272054a6d5ef2dd4e3ffac135778dee0457d83ecd0be5
3
+ size 540789
examples/graph/cgscore_experiments/grb/grb_dataset/grb-citeseer/adj.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1fcb9cf09e362d9a7a588b75ec66dfbeb013e4b6385c48da0f308bf12a6f8e93
3
+ size 22270
examples/graph/cgscore_experiments/grb/grb_dataset/grb-citeseer/features.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a2426866e2c22fbad467efe4d128892ac7b11027120b150269b69d5306532c34
3
+ size 9080267
examples/graph/cgscore_experiments/grb/grb_dataset/grb-citeseer/index.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:24b9d538db09867b226df75ee08a4bb737ececaa83dc47270ad5808756d5c8e7
3
+ size 8048
examples/graph/cgscore_experiments/grb/grb_dataset/grb-citeseer/labels.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:38345c84a6fba718476ce2aaf98d252afa917341033ef3d542220c6bb7ba034b
3
+ size 2206
examples/graph/cgscore_experiments/grb/grb_dataset/grb-cora/adj.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d29db909d22f90eef0f34e7fc49d0b71020508d6b1f95c10fb455d09797f1e6c
3
+ size 24499
examples/graph/cgscore_experiments/grb/grb_dataset/grb-cora/features.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d7a72105265881d2e6a4a67a5e1770921496cfa221ac07d01d82da0b1ac9bedf
3
+ size 2999162
examples/graph/cgscore_experiments/grb/grb_dataset/grb-cora/index.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:332f130d1edb99bd922ce9c4afa7b9f080c62c55af5a1b0d62f7e8b5a39a87a0
3
+ size 6980