ImageTagger/readme.md

48 lines
1.1 KiB
Markdown
Raw Normal View History

2024-03-19 19:52:54 +00:00
Image Tagger
Image Tagger is a simple software application for predicting an image's keywords using a deep learning model based on resnet.
It allows photographers to automate the image tagging process. 📸
---
## Instructions
2024-03-23 15:36:58 +00:00
1. Download and install Java 17.
2. Download a release from the release page.
3. Run the release.
![./docs/application.png](./docs/application.png)
2024-03-19 19:52:54 +00:00
Photo credit: [https://unsplash.com/@ndcphoto](https://unsplash.com/@ndcphoto)
## Development
If you want to build the application yourself, you will need Java 21 JDK.
The release archive is in the [releases page](https://github.com/dnutiu/ImageTagger/releases).
### Building and Running from source
2024-03-22 21:23:38 +00:00
To build from source you will need Java 17 JDK and Gradle.
2024-03-19 19:52:54 +00:00
Due to some GitHub limitations that do not allow me to upload large files, you'll need to download the AIModels
zip file which contains the deep learning models and place them into the `ImageTagger/src/main/resources/AIModels` path.
To build the project run:
```bash
gradle build
```
To run:
```bash
gradle run
```
# Blog
You can visit my tech blog at [https://blog.nuculabs.dev](https://blog.nuculabs.dev).