TroglodyteDerivations
commited on
Commit
•
f88145a
1
Parent(s):
079f377
Updated lines 15-16 with: [notation]
Browse files
app.py
CHANGED
@@ -3,8 +3,7 @@ import numpy as np
|
|
3 |
import matplotlib.pyplot as plt
|
4 |
from PIL import Image
|
5 |
|
6 |
-
|
7 |
-
# Produce the visualization with the .npy files
|
8 |
|
9 |
# Streamlit app
|
10 |
st.title('Rick & Morty Classification Vis 3')
|
@@ -13,6 +12,8 @@ st.image('rm_title.jpeg')
|
|
13 |
|
14 |
st.set_option('deprecation.showPyplotGlobalUse', False)
|
15 |
|
|
|
|
|
16 |
class_names = ['jerry', 'morty', 'rick', 'summer']
|
17 |
|
18 |
# Load the numpy files
|
|
|
3 |
import matplotlib.pyplot as plt
|
4 |
from PIL import Image
|
5 |
|
6 |
+
|
|
|
7 |
|
8 |
# Streamlit app
|
9 |
st.title('Rick & Morty Classification Vis 3')
|
|
|
12 |
|
13 |
st.set_option('deprecation.showPyplotGlobalUse', False)
|
14 |
|
15 |
+
# Create class mappings
|
16 |
+
# Produce the visualization with the .npy files
|
17 |
class_names = ['jerry', 'morty', 'rick', 'summer']
|
18 |
|
19 |
# Load the numpy files
|