-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathconfig.tsx
More file actions
22 lines (14 loc) · 808 Bytes
/
config.tsx
File metadata and controls
22 lines (14 loc) · 808 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
const AppConfig =
{
title : "What Food Is It?"
,host : "https://food-img-classifier.herokuapp.com"
,description: `
This mobile app was developed by
- [Nidhin Pattaniyil](https://npatta01.github.io)
- [Reshama Shaikh](https://reshamas.github.io/)
This app lets you submit a photo of food and returns the predicted food category. 🍕
The model was developed using the [food-101 dataset](https://www.vision.ee.ethz.ch/datasets_extra/food-101/) and the [fastai](https://github.com/fastai/fastai) deep learning library, which is built on PyTorch.
To learn more about deep learning, consider taking the [fast.ai course](https://www.fast.ai/) taught by [Jeremy Howard](https://www.fast.ai/about/#jeremy) and [Rachel Thomas](https://www.fast.ai/about/#rachel).
`
};
export {AppConfig}