Update app.py
Browse files
app.py
CHANGED
|
@@ -4,6 +4,7 @@ import cv2
|
|
| 4 |
from PIL import Image
|
| 5 |
from typing import List, Tuple
|
| 6 |
import math
|
|
|
|
| 7 |
|
| 8 |
def sigmoid(x):
|
| 9 |
return 1 / (1 + np.exp(-x))
|
|
|
|
| 4 |
from PIL import Image
|
| 5 |
from typing import List, Tuple
|
| 6 |
import math
|
| 7 |
+
import gradio as gr
|
| 8 |
|
| 9 |
def sigmoid(x):
|
| 10 |
return 1 / (1 + np.exp(-x))
|