Spaces:
Sleeping
Sleeping
File size: 501 Bytes
a4c2fe3 b7213c8 a0b97c1 bac7449 a4c2fe3 da1fd41 a0b97c1 908e5dc a4c2fe3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
import numpy as np
import gradio as gr
import torch as torch
import torchvision
from . import metode
def funksjon(input_img):
#Må inporterer modellen fra API på huggingface.co
#imgPred = model.fit(input_img)
model = load_model('stage-1.pth')
#model = torch.load('stage-1.pth')
predictions = model.predict(input_img)
#imgPred = input_img
return predictions
demo = gr.Interface(funksjon, gr.Image(), "image")
#demo.launch(share=True)
demo.launch() |