c1tr0n75 commited on
Commit
9417e11
·
verified ·
1 Parent(s): 4a4cfce

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -22,6 +22,7 @@ This repository hosts the weights and code for a neural network that plans paths
22
  - **Actions**: 0..5 → [FORWARD, BACK, LEFT, RIGHT, UP, DOWN]
23
  - **Framework**: PyTorch
24
  - **License**: MIT
 
25
 
26
  ### Model architecture (high level)
27
  - Voxel encoder: 3D CNN with 3 conv blocks → 512-d environment feature
@@ -47,7 +48,6 @@ from huggingface_hub import hf_hub_download
47
  import importlib.util, sys
48
 
49
  REPO_ID = "c1tr0n75/VoxelPathFinder"
50
- Github = https://github.com/c1tr0n75/VoxelPathFinder
51
  # Download files from the Hub
52
  pth_path = hf_hub_download(repo_id=REPO_ID, filename="final_model.pth")
53
  py_path = hf_hub_download(repo_id=REPO_ID, filename="pathfinding_nn.py")
 
22
  - **Actions**: 0..5 → [FORWARD, BACK, LEFT, RIGHT, UP, DOWN]
23
  - **Framework**: PyTorch
24
  - **License**: MIT
25
+ Github = https://github.com/c1tr0n75/VoxelPathFinder
26
 
27
  ### Model architecture (high level)
28
  - Voxel encoder: 3D CNN with 3 conv blocks → 512-d environment feature
 
48
  import importlib.util, sys
49
 
50
  REPO_ID = "c1tr0n75/VoxelPathFinder"
 
51
  # Download files from the Hub
52
  pth_path = hf_hub_download(repo_id=REPO_ID, filename="final_model.pth")
53
  py_path = hf_hub_download(repo_id=REPO_ID, filename="pathfinding_nn.py")