-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
42 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,44 @@ | ||
# Image-Based-Equation-Solver | ||
A PyQt5 desktop application that solves the equation contained in an image. | ||
|
||
## Environment | ||
Install and activate the environment using conda | ||
|
||
`conda env create -f environment.yaml` | ||
|
||
`conda activate tf` | ||
|
||
## Data | ||
|
||
The symbol recognition model is trained using the Kaggle handwritten symbol dataset https://www.kaggle.com/datasets/xainano/handwrittenmathsymbols. | ||
|
||
Add a folder called "Data" in the base directory. Inside this folder add '+', '-', 'times', '=', 'X', 'Y' and 0-9 folders. Make sure that each symbol folder contains exactly 6000 images. You may need to use `expand.py` to augment certain datasets. | ||
|
||
Run `solver_data.py` to create the training dataset. | ||
|
||
## Training | ||
|
||
Run `solver_training.py` to train the model. | ||
|
||
## Start | ||
|
||
Start the application. | ||
|
||
`python main.py` | ||
|
||
## Screenshots | ||
|
||
 | ||
|
||
 | ||
|
||
 | ||
|
||
 | ||
|
||
 | ||
|
||
 | ||
|
||
### History Database | ||
 |