vanishingradient commited on
Commit
501c51e
·
verified ·
1 Parent(s): 57c3361

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -0
README.md CHANGED
@@ -44,6 +44,8 @@ inputs = tokenizer(text, return_tensors="pt").to(model.device)
44
 
45
  outputs = model.generate(**inputs, max_new_tokens=300, temperature=0.1, do_sample=False)
46
  print(tokenizer.decode(outputs[0][inputs.input_ids.shape[1]:], skip_special_tokens=True))
 
 
47
  <SPATIAL_REASONING>
48
  Bounds: X[25 to 175], Y[25 to 105]
49
  Key Waypoints: [[25, 25], [175, 25], [175, 105], [25, 105], [25, 25]]
@@ -56,6 +58,7 @@ G0 X25 Y25 ; Move to start
56
  ...
57
  M30 ; End program
58
  ```
 
59
 
60
  ## ⚠️ Limitations & Safety
61
  - **Experimental Only:** This model generates physical toolpaths. If executed on a real CNC machine without simulation routing, it **may crash your spindle** or cause hardware damage.
 
44
 
45
  outputs = model.generate(**inputs, max_new_tokens=300, temperature=0.1, do_sample=False)
46
  print(tokenizer.decode(outputs[0][inputs.input_ids.shape[1]:], skip_special_tokens=True))
47
+ ```
48
+ ```
49
  <SPATIAL_REASONING>
50
  Bounds: X[25 to 175], Y[25 to 105]
51
  Key Waypoints: [[25, 25], [175, 25], [175, 105], [25, 105], [25, 25]]
 
58
  ...
59
  M30 ; End program
60
  ```
61
+ ```
62
 
63
  ## ⚠️ Limitations & Safety
64
  - **Experimental Only:** This model generates physical toolpaths. If executed on a real CNC machine without simulation routing, it **may crash your spindle** or cause hardware damage.