PeiqingYang commited on
Commit
19ab080
·
verified ·
1 Parent(s): f52bf17

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +12 -3
README.md CHANGED
@@ -5,6 +5,15 @@ tags:
5
  - pytorch_model_hub_mixin
6
  ---
7
 
8
- This model has been pushed to the Hub using the [PytorchModelHubMixin](https://huggingface.co/docs/huggingface_hub/package_reference/mixins#huggingface_hub.PyTorchModelHubMixin) integration:
9
- - Library: https://github.com/pq-yang/MatAnyone
10
- - Docs: [More Information Needed]
 
 
 
 
 
 
 
 
 
 
5
  - pytorch_model_hub_mixin
6
  ---
7
 
8
+ ## Usage
9
+
10
+ ```shell
11
+ # pip install huggingface_hub
12
+ pip install -q git+https://github.com/pq-yang/MatAnyone
13
+ ```
14
+
15
+ 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
+ ```