Mirali33 commited on
Commit
b82ad54
·
verified ·
1 Parent(s): f542c09

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +48 -0
README.md ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ tags:
4
+ - mars
5
+ - mars-bench
6
+ - planetary-science
7
+ - computer-vision
8
+ - object-detection
9
+ ---
10
+
11
+ # boulder-detection
12
+
13
+ ## Model Description
14
+
15
+ Faster R-CNN model for boulder detection on Mars surface
16
+
17
+ **Task:** Object Detection
18
+
19
+ **Original Checkpoint:** `BoulderDetection_FasterRCNN.ckpt`
20
+
21
+ ## Mars-Bench
22
+
23
+ This model is part of the Mars-Bench benchmark, a comprehensive suite of models for Mars surface analysis tasks.
24
+
25
+ ## Usage
26
+
27
+ ```python
28
+ # Load the model checkpoint
29
+ import torch
30
+
31
+ model = torch.load('model.ckpt')
32
+ ```
33
+
34
+ ## Citation
35
+
36
+ If you use this model, please cite the Mars-Bench paper:
37
+
38
+ ```bibtex
39
+ @article{marsbench2024,
40
+ title={Mars-Bench: A Benchmark for Mars Surface Analysis},
41
+ author={Your Citation Here},
42
+ year={2024}
43
+ }
44
+ ```
45
+
46
+ ## License
47
+
48
+ This model is released under the Apache 2.0 license.