Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
inoue0426 authored Nov 7, 2024
1 parent 4d49d7f commit 0ed6301
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,22 @@ data = [

Output is as follows:

```python
predict, res = drGAT.eval(model, test)
res
```


| Accuracy | Precision | Recall | F1 Score | True Positive | True Negative | False Positive | False Negative |
|-----------|-----------|---------|-----------|----------------|---------------|----------------|-----------------|
| 0.771375 | 0.740881 | 0.783245 | 0.761474 | 1178 | 1312 | 412 | 326 |

\* You can change the output to the probability or binary prediction easily.
```python
predict

```

tensor([1., 0., 0., ..., 1., 0., 0.])

## Training

Expand Down

0 comments on commit 0ed6301

Please sign in to comment.