Skip to content

Commit

Permalink
doc
Browse files Browse the repository at this point in the history
  • Loading branch information
Frank Guibert committed Jul 4, 2024
1 parent 7e62cb0 commit 89a6cd2
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,12 @@ Each model we provide is a subclass of [torch.nn.Module](https://pytorch.org/doc
- **settings_kls**: a class that defines the settings of the model (number of filters, kernel size, ...). It is used to instanciate the model with a specific configuration.
- **onnx_supported**: a boolean that indicates if the model can be exported to onnx. Our CI validates that the model can be exported to onnx and reloaded for inference.

```python
class HalfUNet(nn.Module):
settings_kls = HalfUNetSettings
onnx_supported = True
```

Currently we support the following neural network architectures:

| Model | Research Paper | Input Shape | ONNX exportable ? | Notes | Use-Cases at MF | Maintainer(s) |
Expand Down

0 comments on commit 89a6cd2

Please sign in to comment.