Update pipeline.py
Browse files- pipeline.py +1 -2
pipeline.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
-
import cv2
|
2 |
import json
|
3 |
from typing import Any, Dict, List
|
|
|
4 |
import tensorflow as tf
|
5 |
from tensorflow import keras
|
6 |
import base64
|
@@ -8,7 +8,6 @@ import io
|
|
8 |
import os
|
9 |
import numpy as np
|
10 |
from PIL import Image
|
11 |
-
import streamlit as st
|
12 |
|
13 |
# most of this code has been obtained from Datature's prediction script
|
14 |
# https://github.com/datature/resources/blob/main/scripts/bounding_box/prediction.py
|
|
|
|
|
1 |
import json
|
2 |
from typing import Any, Dict, List
|
3 |
+
|
4 |
import tensorflow as tf
|
5 |
from tensorflow import keras
|
6 |
import base64
|
|
|
8 |
import os
|
9 |
import numpy as np
|
10 |
from PIL import Image
|
|
|
11 |
|
12 |
# most of this code has been obtained from Datature's prediction script
|
13 |
# https://github.com/datature/resources/blob/main/scripts/bounding_box/prediction.py
|