Add large model files with LFS
Browse files- .gitattributes +2 -0
- README.md +33 -1
- trained_models/medium.pt +3 -0
- trained_models/nano.pt +3 -0
- trained_models/xlarge.pt +3 -0
- yolov8-to/setup.py +1 -1
.gitattributes
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
*.pt filter=lfs diff=lfs merge=lfs -text
|
2 |
+
trained_models/*.pt filter=lfs diff=lfs merge=lfs -text
|
README.md
CHANGED
@@ -1,2 +1,34 @@
|
|
1 |
-
# YOLOv8-TO
|
2 |
Code for the article "From Density to Geometry: YOLOv8 Instance Segmentation for Reverse Engineering of Optimized Structures"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# YOLOv8-TO (WORK IN PROGRESS)
|
2 |
Code for the article "From Density to Geometry: YOLOv8 Instance Segmentation for Reverse Engineering of Optimized Structures"
|
3 |
+
|
4 |
+
## Table of Contents
|
5 |
+
- [Overview](#overview)
|
6 |
+
- [Reference](#reference)
|
7 |
+
- [Installation](#installation)
|
8 |
+
- [Prerequisites](#prerequisites)
|
9 |
+
- [Installing](#installing)
|
10 |
+
- [Datasets](#datasets)
|
11 |
+
|
12 |
+
## Overview
|
13 |
+
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.
|
14 |
+
|
15 |
+
## Reference
|
16 |
+
This code aims to reproduce the results presented in the research article:
|
17 |
+
|
18 |
+
> Author(s). (Year). Title. *Journal*, Volume(Issue), Pages. DOI
|
19 |
+
|
20 |
+
## Installation
|
21 |
+
|
22 |
+
### Prerequisites
|
23 |
+
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.
|
24 |
+
|
25 |
+
### Installing
|
26 |
+
|
27 |
+
```bash
|
28 |
+
git clone https://github.com/COSIM-Lab/YOLOv8-TO.git
|
29 |
+
cd YOLOv8-TO
|
30 |
+
pip install -e .
|
31 |
+
```
|
32 |
+
## Datasets
|
33 |
+
Links to the dataset on HuggingFace:
|
34 |
+
- [YOLOv8-TO_Data](https://huggingface.co/datasets/tomrb/yolov8to_data)
|
trained_models/medium.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1cbe58b192f41504410b7fc30eacf7c2d39e71a36e6c03c338c1383546380841
|
3 |
+
size 58603624
|
trained_models/nano.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4b0860de0cb2c30aac0644adced485a5c0579d6acae413612ee16dd450de88ef
|
3 |
+
size 9634048
|
trained_models/xlarge.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:85e076a33dca0e2e1c42a41eaa881497dd87762548e05fd00429c1fff72a4c50
|
3 |
+
size 147022864
|
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',
|