- README.md +19 -0
- yolov8-to/setup.py +1 -1
README.md
CHANGED
@@ -1,2 +1,21 @@
|
|
1 |
# YOLOv8-TO
|
2 |
Code for the article "From Density to Geometry: YOLOv8 Instance Segmentation for Reverse Engineering of Optimized Structures"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
# YOLOv8-TO
|
2 |
Code for the article "From Density to Geometry: YOLOv8 Instance Segmentation for Reverse Engineering of Optimized Structures"
|
3 |
+
## Overview
|
4 |
+
Brief description of what the project does and the problem it solves. Include a link or reference to the original article that inspired or is associated with this implementation.
|
5 |
+
|
6 |
+
## Reference
|
7 |
+
This code aims to reproduce the results presented in the research article:
|
8 |
+
|
9 |
+
> Author(s). (Year). Title. *Journal*, Volume(Issue), Pages. DOI
|
10 |
+
|
11 |
+
## Installation
|
12 |
+
|
13 |
+
### Prerequisites
|
14 |
+
This package comes with a fork of the ultralytics package in the yolov8-to directory. The fork is necessary to add the functionality of the design variables regression.
|
15 |
+
|
16 |
+
### Installing
|
17 |
+
|
18 |
+
```bash
|
19 |
+
git clone https://github.com/COSIM-Lab/YOLOv8-TO.git
|
20 |
+
cd YOLOv8-TO
|
21 |
+
pip install -e .
|
yolov8-to/setup.py
CHANGED
@@ -19,7 +19,7 @@ def get_version():
|
|
19 |
|
20 |
|
21 |
setup(
|
22 |
-
name='
|
23 |
version=get_version(), # version of pypi package
|
24 |
python_requires='>=3.8',
|
25 |
license='AGPL-3.0',
|
|
|
19 |
|
20 |
|
21 |
setup(
|
22 |
+
name='ultralyticscustom', # name of pypi package
|
23 |
version=get_version(), # version of pypi package
|
24 |
python_requires='>=3.8',
|
25 |
license='AGPL-3.0',
|