nielsr HF Staff commited on
Commit
69fe7f9
·
verified ·
1 Parent(s): 19a813f

Improve model card

Browse files

This PR ensures the model is linked to (and can be found at) MatAnyone: Stable Video Matting with Consistent Memory Propagation](https://huggingface.co/papers/2501.14677).

Files changed (1) hide show
  1. README.md +9 -1
README.md CHANGED
@@ -5,6 +5,12 @@ tags:
5
  - pytorch_model_hub_mixin
6
  ---
7
 
 
 
 
 
 
 
8
  ## Usage
9
  `pip install huggingface_hub` required.
10
 
@@ -16,4 +22,6 @@ Users will only need to use these 2 lines to load and instantiate the model.
16
  ```python
17
  from matanyone.model.matanyone import MatAnyone
18
  model = MatAnyone.from_pretrained("PeiqingYang/MatAnyone")
19
- ```
 
 
 
5
  - pytorch_model_hub_mixin
6
  ---
7
 
8
+ # MatAnyone
9
+
10
+ This repository contains the model described in [MatAnyone: Stable Video Matting with Consistent Memory Propagation](https://huggingface.co/papers/2501.14677).
11
+
12
+ Code: https://github.com/pq-yang/MatAnyone
13
+
14
  ## Usage
15
  `pip install huggingface_hub` required.
16
 
 
22
  ```python
23
  from matanyone.model.matanyone import MatAnyone
24
  model = MatAnyone.from_pretrained("PeiqingYang/MatAnyone")
25
+ ```
26
+
27
+ For inference, see the [inference script](https://github.com/pq-yang/MatAnyone/blob/main/inference_matanyone.py).