Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

#20059 Fix YOLOv8-ONNXRuntime example links

Merged
Ghost merged 1 commits into Ultralytics:main from ultralytics:fix-example-links
@@ -7,7 +7,7 @@ Welcome to the [Ultralytics YOLOv8](https://docs.ultralytics.com/models/yolov8/)
 - ๐Ÿš€ **Model Format Support**: MNN
 - ๐Ÿš€ **Model Format Support**: MNN
 - โšก **Precision Options**: Run models in **FP32**, **FP16** ([half-precision](https://www.ultralytics.com/glossary/half-precision)), and **INT8** ([quantization](https://www.ultralytics.com/glossary/model-quantization)) precisions for optimized performance.
 - โšก **Precision Options**: Run models in **FP32**, **FP16** ([half-precision](https://www.ultralytics.com/glossary/half-precision)), and **INT8** ([quantization](https://www.ultralytics.com/glossary/model-quantization)) precisions for optimized performance.
 - ๐Ÿ”„ **Dynamic Shape Loading**: Easily handle models with dynamic input shapes, common in many [computer vision](https://www.ultralytics.com/glossary/computer-vision-cv) tasks.
 - ๐Ÿ”„ **Dynamic Shape Loading**: Easily handle models with dynamic input shapes, common in many [computer vision](https://www.ultralytics.com/glossary/computer-vision-cv) tasks.
-- ๐Ÿ“ฆ Use ONLY MNN's [Express API](https://mnn-docs.readthedocs.io/en/latest/express.html) for a more user-friendly interface, or the [Interpreter API](https://mnn-docs.readthedocs.io/en/latest/interpreter.html) for lower-level control.
+- ๐Ÿ“ฆ Use ONLY MNN's [Express API](https://github.com/alibaba/MNN) for a more user-friendly interface, or the [Interpreter API](https://mnn-docs.readthedocs.io/en/latest/cpp/Interpreter.html) for lower-level control.
 
 
 ## ๐Ÿ“‹ Dependencies
 ## ๐Ÿ“‹ Dependencies
 
 
Discard
@@ -171,4 +171,4 @@ Run the executable from the `build` directory:
 
 
 ## ๐Ÿค Contributing
 ## ๐Ÿค Contributing
 
 
-Contributions are welcome! If you find any issues or have suggestions for improvements, please feel free to open an issue or submit a pull request on the main [Ultralytics examples repository](https://github.com/ultralytics/examples).
+Contributions are welcome! If you find any issues or have suggestions for improvements, please feel free to open an issue or submit a pull request on the main [Ultralytics repository](https://github.com/ultralytics/ultralytics).
Discard
@@ -11,8 +11,8 @@ To get started, you'll need [Python](https://www.python.org/) installed. Then, i
 Clone the repository and install the packages listed in the `requirements.txt` file using [pip](https://pip.pypa.io/en/stable/):
 Clone the repository and install the packages listed in the `requirements.txt` file using [pip](https://pip.pypa.io/en/stable/):
 
 
 ```bash
 ```bash
-git clone https://github.com/ultralytics/examples.git
-cd examples/YOLOv8-ONNXRuntime
+git clone https://github.com/ultralytics/ultralytics.git
+cd ultralytics/examples/YOLOv8-ONNXRuntime
 pip install -r requirements.txt
 pip install -r requirements.txt
 ```
 ```
 
 
Discard