parthb3 commited on
Commit
8906468
·
1 Parent(s): a91111b

Update app.py

Browse files

edited the file

Files changed (1) hide show
  1. app.py +0 -12
app.py CHANGED
@@ -6,30 +6,18 @@ Automatically generated by Colaboratory.
6
  Original file is located at
7
  https://colab.research.google.com/drive/1O0_3A82axlMsWaCiXpSv2cM0frscKrsB
8
  """
9
-
10
- #!pip install -Uqq fastai
11
- #!pip install -Uqq gradio
12
-
13
  from fastai.vision.all import *
14
  from fastai.vision.widgets import *
15
  import gradio as gr
16
 
17
- #learn = load_learner(Path('/content/drive/MyDrive/AI_Models')/'car_year_finder1.pkl')
18
- #im = PILImage.create('/content/drive/MyDrive/tesla.png')
19
- #im.thumbnail((192,192))
20
- #learn.predict(im)
21
-
22
  categories = ('before 1960','from 1970 to 1980','from 1990 to 2000', 'from 2020')
23
  learn = load_learner('car_year_finder1.pkl')
24
  def classify_image(img):
25
  pred, idx, probs = learn.predict(img)
26
  return dict(zip(categories,map(float,probs)))
27
 
28
- #classify_image(im)
29
-
30
  image = gr.inputs.Image(shape=(192,192))
31
  label = gr.outputs.Label()
32
- #examples = ['tesla.png','model_t.jpg']
33
  intf=gr.Interface(fn=classify_image, inputs=image, outputs=label)
34
  intf.launch()
35
 
 
6
  Original file is located at
7
  https://colab.research.google.com/drive/1O0_3A82axlMsWaCiXpSv2cM0frscKrsB
8
  """
 
 
 
 
9
  from fastai.vision.all import *
10
  from fastai.vision.widgets import *
11
  import gradio as gr
12
 
 
 
 
 
 
13
  categories = ('before 1960','from 1970 to 1980','from 1990 to 2000', 'from 2020')
14
  learn = load_learner('car_year_finder1.pkl')
15
  def classify_image(img):
16
  pred, idx, probs = learn.predict(img)
17
  return dict(zip(categories,map(float,probs)))
18
 
 
 
19
  image = gr.inputs.Image(shape=(192,192))
20
  label = gr.outputs.Label()
 
21
  intf=gr.Interface(fn=classify_image, inputs=image, outputs=label)
22
  intf.launch()
23