Skip to content

Commit 671fb9b

Browse files
Fix Dockerfile, add badges to README.
1 parent 3ad7648 commit 671fb9b

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
FROM python:3.6-slim
22
COPY app/ /app/
3+
COPY classifier/ /classifier/
34
WORKDIR /
45
RUN apt update
56
RUN apt install -y git

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
# DeepFire
2+
![This repo has a MIT license](https://img.shields.io/github/license/UPstartDeveloper/Fire-Detection-API)
3+
![Automated tests passing on Travis (.org)](https://img.shields.io/travis/UPstartDeveloper/Fire-Detection-API)
4+
![Docker Image Size (latest)](https://img.shields.io/docker/image-size/zainrazatheupstart/fire-classifier-api/latest)
25
![Project cover image](https://i.postimg.cc/d1tr9S2H/Screen-Shot-2021-09-02-at-12-37-00-PM.png)
36
An API for detecting fires in images using deep learning.
47

@@ -37,9 +40,10 @@ To run the tests, you will first need to set up a Python virtual environment to
3740
```
3841
(env) $ pytest
3942
```
40-
43+
If there are no failures, then you should be good to go!
44+
You can inspect the code for the tests in `app/main_test.py` if you wish.
4145
## The Data and the Model
42-
The image dataset and model used for the production API will be documented on the [Releases](https://github.com/UPstartDeveloper/Fire-Detection-API/releases) page of this repository.
46+
The image dataset and neural network model used for the production API will be documented on the [Releases](https://github.com/UPstartDeveloper/Fire-Detection-API/releases) page of this repository.
4347

4448
## Making Your Own Deep Learning API
4549

classifier/util/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)