Update README.md
Browse files
README.md
CHANGED
|
@@ -6,17 +6,40 @@ metrics:
|
|
| 6 |
- mae
|
| 7 |
---
|
| 8 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
# OptoGPT++
|
| 10 |
|
| 11 |
Meet OptoGPT++ — an enhanced implementation of the OptoGPT, a decoder-only transformer that aims to solve inverse design of multi-layer thin film structures.
|
| 12 |
|
| 13 |
**Key Enhancements**
|
| 14 |
|
| 15 |
-
- Inclusion
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 16 |
|
| 17 |
## Usage
|
| 18 |
|
| 19 |
-
##
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 20 |
|
| 21 |
## Acknowledgements
|
| 22 |
|
|
@@ -24,6 +47,8 @@ This work is supported by the Helmholtz Association Initiative and Networking Fu
|
|
| 24 |
|
| 25 |
## Citations
|
| 26 |
|
|
|
|
|
|
|
| 27 |
```
|
| 28 |
@article{ma2024optogpt,
|
| 29 |
title={OptoGPT: a foundation model for inverse design in optical multilayer thin film structures},
|
|
@@ -35,4 +60,6 @@ This work is supported by the Helmholtz Association Initiative and Networking Fu
|
|
| 35 |
publisher={Opto-Electronic Advance},
|
| 36 |
doi={10.29026/oea.2024.240062}
|
| 37 |
}
|
| 38 |
-
```
|
|
|
|
|
|
|
|
|
| 6 |
- mae
|
| 7 |
---
|
| 8 |
|
| 9 |
+
<div align="center">
|
| 10 |
+
[](./LICENSE)
|
| 11 |
+
[](mailto:SE-AOPT-office@helmholtz-berlin.de)
|
| 12 |
+
</div>
|
| 13 |
+
|
| 14 |
# OptoGPT++
|
| 15 |
|
| 16 |
Meet OptoGPT++ — an enhanced implementation of the OptoGPT, a decoder-only transformer that aims to solve inverse design of multi-layer thin film structures.
|
| 17 |
|
| 18 |
**Key Enhancements**
|
| 19 |
|
| 20 |
+
- Inclusion of an **absorption** feature in the model ➕📈
|
| 21 |
+
- Increased the maximum **wave length** to 2,000nm 💡
|
| 22 |
+
- Longer training time for **better predictive performance** 🤯
|
| 23 |
+
|
| 24 |
+
Feel free to check out this supporting material
|
| 25 |
+
|
| 26 |
+
**OptoGPT++**: [https://github.com/jnitzz/OptoLlama]
|
| 27 |
+
**OptoGPT**: [https://github.com/taigaoma1997/optogpt]
|
| 28 |
+
**ArXiV**: 📝 [https://arxiv.org/abs/2304.10294]
|
| 29 |
|
| 30 |
## Usage
|
| 31 |
|
| 32 |
+
### Install Dependencies
|
| 33 |
+
|
| 34 |
+
```bash
|
| 35 |
+
python -m pip install torch
|
| 36 |
+
python -m pip install safetensors
|
| 37 |
+
```
|
| 38 |
+
|
| 39 |
+
### Load Model Checkpoint
|
| 40 |
+
|
| 41 |
+
```python
|
| 42 |
+
```
|
| 43 |
|
| 44 |
## Acknowledgements
|
| 45 |
|
|
|
|
| 47 |
|
| 48 |
## Citations
|
| 49 |
|
| 50 |
+
If you find our work helpful, please feel free to cite as following:
|
| 51 |
+
|
| 52 |
```
|
| 53 |
@article{ma2024optogpt,
|
| 54 |
title={OptoGPT: a foundation model for inverse design in optical multilayer thin film structures},
|
|
|
|
| 60 |
publisher={Opto-Electronic Advance},
|
| 61 |
doi={10.29026/oea.2024.240062}
|
| 62 |
}
|
| 63 |
+
```
|
| 64 |
+
|
| 65 |
+
----
|