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
- Host: GitHub
- URL: https://github.com/sinhaparth5/robotclassifier
- Owner: sinhaparth5
- Created: 2025-01-24T22:37:11.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-02-19T00:26:03.000Z (over 1 year ago)
- Last Synced: 2025-07-24T13:42:32.238Z (11 months ago)
- Language: Julia
- Homepage:
- Size: 40 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)
```