Metadata-Version: 2.1
Name: TF-Binary-Classification
Version: 1.0.1
Summary: A Python package to get train and test a model for binary classification.
Home-page: https://github.com/santos97/TF-Binary-Classification
Author: Santosh Shet
Author-email: santo.shet@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.6
Description-Content-Type: text/markdown
Requires-Dist: tqdm
Requires-Dist: tensorflow
Requires-Dist: mathplotlib
Requires-Dist: numpy
Requires-Dist: cv2

#TensorFLow-Binary-Image-Classifier

A Python package to get train and test a model for binary classification.

## Usage

Following query on terminal will allow you to TRAIN the data.
Here c1 and c2 are two categories and has SAME folder name of the data.
p is path of folder containing train data image folders.
e is number of epoches
EX:
```
[Train_data] / 
        [not_human] , [human]

train -c1 not_human -c2 human -p c:/downloads/train_data/ -e 3

```
Following query on terminal will allow you to TEST the data.
Here c1 and c2 are two categories and has SAME folder name of the data.
p is path of folder containing test data image folder.
EX:
```
[Test_data] / 
        [folder]

test -c1 not_human -c2 human -p c:/downloads/test_data/ 

```

