Add link to paper, usage code snippet and pipeline tag

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +16 -1
README.md CHANGED
@@ -1,10 +1,25 @@
1
  ---
2
  license: apache-2.0
 
 
3
  ---
4
 
5
  # DynaFLIP-base
6
 
7
- More details coming soon.
 
 
 
 
 
 
 
 
 
 
 
 
 
8
 
9
  ## Citation
10
 
 
1
  ---
2
  license: apache-2.0
3
+ library_name: transformers
4
+ pipeline_tag: zero-shot-image-classification
5
  ---
6
 
7
  # DynaFLIP-base
8
 
9
+ This model was proposed in [DynaFLIP: Rethinking Robotics Perception via Tri-Modal-Dynamics Guided Representation](https://huggingface.co/papers/2605.30350).
10
+
11
+ ## Usage
12
+
13
+ The model is compatible with Transformers:
14
+
15
+ ```python
16
+ from transformers import AutoModel, AutoProcessor
17
+
18
+ repo_id = "jlee-larr/dynaflip-base"
19
+
20
+ model = AutoModel.from_pretrained("jlee-larr/dynaflip-base")
21
+ processor = AutoProcessor.from_pretrained("jlee-larr/dynaflip-base")
22
+ ```
23
 
24
  ## Citation
25