diddone commited on
Commit
f560a91
·
verified ·
1 Parent(s): 1c22b30

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +6 -11
README.md CHANGED
@@ -1,12 +1,3 @@
1
- ---
2
- license: cc
3
- language:
4
- - en
5
- pipeline_tag: image-feature-extraction
6
- tags:
7
- - humans
8
- - densemarks
9
- ---
10
  # DenseMarks
11
 
12
  A PyTorch implementation for dense UVW coordinate prediction from human head images using DINOv3 backbone with DPT head architecture.
@@ -29,7 +20,7 @@ DenseMarks predicts per-pixel positions in canonical space (cube [0, 1]³) from
29
 
30
  1. **Clone the repository:**
31
  ```bash
32
- git clone https://github.com/yourusername/densemarks.git
33
  cd densemarks
34
  ```
35
 
@@ -40,7 +31,11 @@ DenseMarks predicts per-pixel positions in canonical space (cube [0, 1]³) from
40
 
41
  3. **Modify DINOv3 for compatibility:**
42
  ```bash
43
- sed -i '/dinov3\.hub\.segmentors/s/^/#/' third_party_dinov3/hubconf.py
 
 
 
 
44
  ```
45
 
46
  4. **Install dependencies:**
 
 
 
 
 
 
 
 
 
 
1
  # DenseMarks
2
 
3
  A PyTorch implementation for dense UVW coordinate prediction from human head images using DINOv3 backbone with DPT head architecture.
 
20
 
21
  1. **Clone the repository:**
22
  ```bash
23
+ git clone https://github.com/diddone/densemarks.git
24
  cd densemarks
25
  ```
26
 
 
31
 
32
  3. **Modify DINOv3 for compatibility:**
33
  ```bash
34
+ # For Linux (GNU sed):
35
+ sed -i '/dinov3\.hub\.segmentors/s/^/#/; /dinov3\.hub\.classifiers/s/^/#/; /dinov3\.hub\.detectors/s/^/#/; /dinov3\.hub\.dinotxt/s/^/#/; /dinov3\.hub\.depthers/s/^/#/' third_party_dinov3/hubconf.py
36
+
37
+ # For macOS (BSD sed):
38
+ sed -i '' '/dinov3\.hub\.segmentors/s/^/#/; /dinov3\.hub\.classifiers/s/^/#/; /dinov3\.hub\.detectors/s/^/#/; /dinov3\.hub\.dinotxt/s/^/#/; /dinov3\.hub\.depthers/s/^/#/' third_party_dinov3/hubconf.py
39
  ```
40
 
41
  4. **Install dependencies:**