An open API service indexing awesome lists of open source software.

https://github.com/sinhaparth5/robotclassifier

Distinguish between robot image and simple image
https://github.com/sinhaparth5/robotclassifier

Last synced: 5 months ago
JSON representation

Distinguish between robot image and simple image

Awesome Lists containing this project

README

          

# Robot Classifier

## Run the code
```bash
using Pkg
Pkg.activate(".")

include("src/RobotClassifier.jl")

# Generate dataset
RobotClassifier.generate_dataset(RobotClassifier.CONFIG)

# Train model
model, history = RobotClassifier.train_model(RobotClassifier.CONFIG)

# Visualize results
RobotClassifier.visualize_results(model, history)
```