lauriasuo nielsr HF Staff commited on
Commit
9a5abe1
·
1 Parent(s): 58d60ef

Add robotics pipeline tag and improve model card (#1)

Browse files

- Add robotics pipeline tag and improve model card (1b4d23d729846da9758d045e982711c90e846859)


Co-authored-by: Niels Rogge <nielsr@users.noreply.huggingface.co>

Files changed (1) hide show
  1. README.md +11 -6
README.md CHANGED
@@ -1,12 +1,17 @@
1
  ---
2
  license: cc-by-4.0
 
 
 
 
 
3
  ---
4
 
5
  # FAINT
6
 
7
  Fast, Appearance-Invariant Navigation Transformer (FAINT) is a learned policy for vision-based topological navigation.
8
 
9
- Please see the [Project Page](https://lasuomela.github.io/faint/) for more information.
10
 
11
  ## Model Details
12
 
@@ -18,13 +23,13 @@ This repo contains two versions of the trained model weights.
18
 
19
  ## Usage
20
 
21
- See the main Github [repo](https://github.com/lasuomela/FAINT) for details, input preprocessing etc.
22
 
23
  ### Torchscript
24
 
25
  Only dependency is Pytorch.
26
 
27
- ```bash
28
  import torch
29
  ckpt_path = 'FAINT-Real/model_torchscript.pt'
30
  model = torch.jit.load(ckpt_path)
@@ -32,9 +37,9 @@ model = torch.jit.load(ckpt_path)
32
 
33
  ### Pytorch
34
 
35
- Need to have the Faint library installed.
36
 
37
- ```bash
38
  import torch
39
  from faint.common.models.faint import FAINT
40
 
@@ -51,7 +56,7 @@ If you use FAINT in your research, please use the following BibTeX entry:
51
  ```bibtex
52
  @article{suomela2025synthetic,
53
  title={Synthetic vs. Real Training Data for Visual Navigation},
54
- author={Suomela, Lauri and Kuruppu Arachchige, Sasanka and Torres, German F. and Edelman, Harry and Kämäräinen, Joni-Kristian}
55
  journal={arXiv:2509.11791},
56
  year={2025}
57
  }
 
1
  ---
2
  license: cc-by-4.0
3
+ pipeline_tag: robotics
4
+ tags:
5
+ - visual-navigation
6
+ - sim-to-real
7
+ - topological-navigation
8
  ---
9
 
10
  # FAINT
11
 
12
  Fast, Appearance-Invariant Navigation Transformer (FAINT) is a learned policy for vision-based topological navigation.
13
 
14
+ [**Paper**](https://huggingface.co/papers/2509.11791) | [**Project Page**](https://lasuomela.github.io/faint/) | [**GitHub**](https://github.com/lasuomela/FAINT)
15
 
16
  ## Model Details
17
 
 
23
 
24
  ## Usage
25
 
26
+ See the main GitHub [repo](https://github.com/lasuomela/FAINT) for details regarding input preprocessing, deployment with ROS2, and training.
27
 
28
  ### Torchscript
29
 
30
  Only dependency is Pytorch.
31
 
32
+ ```python
33
  import torch
34
  ckpt_path = 'FAINT-Real/model_torchscript.pt'
35
  model = torch.jit.load(ckpt_path)
 
37
 
38
  ### Pytorch
39
 
40
+ Need to have the FAINT library installed.
41
 
42
+ ```python
43
  import torch
44
  from faint.common.models.faint import FAINT
45
 
 
56
  ```bibtex
57
  @article{suomela2025synthetic,
58
  title={Synthetic vs. Real Training Data for Visual Navigation},
59
+ author={Suomela, Lauri and Kuruppu Arachchige, Sasanka and Torres, German F. and Edelman, Harry and Kämäräinen, Joni-Kristian},
60
  journal={arXiv:2509.11791},
61
  year={2025}
62
  }