lamli commited on
Commit
02bda52
·
1 Parent(s): a14698c

upgrade to conda

Browse files
Files changed (4) hide show
  1. README.md +1 -0
  2. app.py +1 -0
  3. environment.yml +16 -0
  4. requirements.txt +0 -7
README.md CHANGED
@@ -9,6 +9,7 @@ app_file: app.py
9
  pinned: false
10
  license: apache-2.0
11
  short_description: AI classifier for King Penguins, Gentoo Penguins & Puffins
 
12
  ---
13
 
14
  # Arctic & Antarctic Bird Classifier
 
9
  pinned: false
10
  license: apache-2.0
11
  short_description: AI classifier for King Penguins, Gentoo Penguins & Puffins
12
+ base_path: conda
13
  ---
14
 
15
  # Arctic & Antarctic Bird Classifier
app.py CHANGED
@@ -1,4 +1,5 @@
1
  import gradio as gr
 
2
  from fastai.vision.all import *
3
  import torch
4
  import numpy as np
 
1
  import gradio as gr
2
+
3
  from fastai.vision.all import *
4
  import torch
5
  import numpy as np
environment.yml ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ name: penguin-puffin-classifier
2
+ channels:
3
+ - fastai
4
+ - pytorch
5
+ - conda-forge
6
+ - defaults
7
+ dependencies:
8
+ - python=3.9
9
+ - pytorch
10
+ - torchvision
11
+ - fastai
12
+ - pillow
13
+ - numpy
14
+ - pip
15
+ - pip:
16
+ - gradio
requirements.txt DELETED
@@ -1,7 +0,0 @@
1
- gradio==4.44.0
2
- fastai==2.7.17
3
- torch==2.4.1
4
- torchvision==0.19.1
5
- pillow==10.4.0
6
- numpy==1.26.4
7
- fasttransform==0.0.2