Instructions to use dronll/pleds with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Asteroid
How to use dronll/pleds with Asteroid:
from asteroid.models import BaseModel model = BaseModel.from_pretrained("dronll/pleds") - Notebooks
- Google Colab
- Kaggle
Update handler.py
Browse files- handler.py +2 -0
handler.py
CHANGED
|
@@ -5,6 +5,8 @@ from PIL import Image
|
|
| 5 |
from io import BytesIO
|
| 6 |
import base64
|
| 7 |
|
|
|
|
|
|
|
| 8 |
class EndpointHandler():
|
| 9 |
def __init__(self, path=""):
|
| 10 |
# Preload all the elements you we need at inference.
|
|
|
|
| 5 |
from io import BytesIO
|
| 6 |
import base64
|
| 7 |
|
| 8 |
+
|
| 9 |
+
print ("Start Pleds")
|
| 10 |
class EndpointHandler():
|
| 11 |
def __init__(self, path=""):
|
| 12 |
# Preload all the elements you we need at inference.
|