Downloads · 30 days
13
68% of all-time downloads
hvent90/point_navigation
point_navigation is a machine learning model from hvent90. Use it for the machine learning task on the model card, and read the license before you ship it in a product. It is set up for diffusers. The card lists the license as mit.
This generates a path between two points in a 2D grid. Basically AGI.
Downloads · 30 days
13
68% of all-time downloads
All-time downloads
19
Public
Repo size
466 KB
Likes
1
Public
Click a slice to open those files.
.safetensors466 KB · 99%
From the Hugging Face model README
This generates a path between two points in a 2D grid. Basically AGI.
from diffusers import DiffusionPipeline
pipeline = DiffusionPipeline.from_pretrained("hvent90/point_navigation", trust_remote_code=True)
trajectory = pipeline(start=[0, 0], target=[0.8, 0.8]).trajectories[0]
print(trajectory) # 32 waypoints from start to target