mirror of
https://github.com/Laurent2916/model-explorer-refiners.git
synced 2024-11-09 23:12:02 +00:00
23 lines
426 B
Markdown
23 lines
426 B
Markdown
# Refiners Model Explorer
|
|
|
|
A Model Explorer extension to visualize and explore refiners models.
|
|
|
|
![](docs/assets/example.webp)
|
|
|
|
## Installation
|
|
|
|
```bash
|
|
pip install git+https://github.com/Laurent2916/model-explorer-refiners
|
|
```
|
|
|
|
## Usage
|
|
|
|
```python
|
|
from refiners.foundationals.dinov2 import DINOv2_small_reg
|
|
from model_explorer_refiners import RefinersAdapter
|
|
|
|
model = DINOv2_small_reg()
|
|
RefinersAdapter.visualize(model)
|
|
|
|
```
|