Skip to content

Commit

Permalink
Test version notice
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewk1 authored Jan 10, 2022
1 parent 63402b8 commit 942715a
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
### simple correct&smooth (cands)

Simple implementation of [correct and smooth](https://arxiv.org/abs/2010.13993)(C&S) in pytorch.
This is intended to be very quick for practictioners to pick up and run as a postprocessing step on your current classifiers.
Simple implementation of [correct and smooth](https://arxiv.org/abs/2010.13993) (C&S) in pytorch.
`cands` is intended to be very quick for practictioners to pick up and run as a postprocessing step on your current classifiers.
While lots of data contains some form of graph structure, it is rarely used in practice due to the challenges of setting up
GNNs or extracting manual graph features.

Expand All @@ -11,7 +11,7 @@ both traing and validation. After you have generated predictions, C&S will "smoo
training node features and labels. We've seen up to [20% increase in validation performance](https://colab.research.google.com/drive/1RgRm-xKnKObYsHGbXB9TRYUKriAj3yV5?usp=sharing) when running C&S over neural network-based predictions on the features alone.

#### Installation
Install directly
Install directly:
```
pip install https://github.com/andrewk1/correctandsmooth/archive/master.zip
```
Expand All @@ -22,6 +22,8 @@ git clone https://github.com/andrewk1/correctandsmooth.git && cd correctandsmoot
pip install .
```

`cands` has been tested on `torch>=1.9`.

#### Usage
C&S is a single postprocessing step applied to your predictions, we expose it via a function
```
Expand Down

0 comments on commit 942715a

Please sign in to comment.