Skip to content

Commit

Permalink
remove network stats print
Browse files Browse the repository at this point in the history
  • Loading branch information
essharom committed Aug 21, 2024
1 parent eb96cd3 commit 9deb656
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 6 deletions.
12 changes: 10 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,16 @@ docker pull ghcr.io/stracquadaniolab/gnn-suite:latest
models = ["gcn", "gat", ..., "new_model"]
```
## FAQ
In case:
```groovy
Command error:
.command.sh: line 2: ../gnn-suite/bin/plot.py: Permission denied
```
Give permission to run:
```groovy
chmod +x /home/<path>/code/gnn-suite/bin/plot.py
```
## Paper

- Forthcoming
Expand Down
2 changes: 1 addition & 1 deletion bin/gnn.py
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ def run(
)

# Print network statistics
print_network_statistics(data)
# print_network_statistics(data)

# Determine the device to use for computation
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
Expand Down
Empty file modified bin/plot.py
100644 → 100755
Empty file.
Empty file modified bin/split_data.py
100644 → 100755
Empty file.
6 changes: 3 additions & 3 deletions conf/string.config
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ params {
resultsDir = "${baseDir}/results/"
networkFile = "${baseDir}/data/entrez_stringhc.tsv"
geneFile = "${baseDir}/data/entrez_fpancanall_nstringhc_lbailey.csv"
epochs = [300]
models = ["gcn2", "gcn", "gat", "gat3h", "hgcn", "phgcn", "sage", "gin", "gtn"]
replicates = 10
epochs = [100]
models = ["gcn",]
replicates = 3
verbose_interval = 1
dropout = 0.2
alpha = 0.1
Expand Down

0 comments on commit 9deb656

Please sign in to comment.