vidhiparikh commited on
Commit
6e12c1e
1 Parent(s): 9233f03

Create requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +11 -0
requirements.txt ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #First we have to import libraries
2
+ #Think of libraries as "pre-written programs" that help us accelerate what we do in Python
3
+
4
+ #Gradio is a web interface library for deploying machine learning models
5
+ import gradio as gr
6
+
7
+ #Pickle is a library that lets us work with machine learning models, which in Python are typically in a "pickle" file format
8
+ import pickle
9
+
10
+ #Orange is the Python library used by... well, Orange!
11
+ from Orange.data import *