Spaces:
Runtime error
Runtime error
File size: 1,711 Bytes
2595644 616d5a8 a07e1f2 510d63d a07e1f2 616d5a8 510d63d 616d5a8 81185b5 3ad3e16 39b3728 3500fe8 81185b5 37d6137 3a26c6e 3500fe8 d2c83dd |
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 26 27 28 29 30 31 32 33 |
import gradio as gr
import requests
from datasets import load_dataset
from PIL import Image
from transformers import AutoFeatureExtractor, AutoModelForImageClassification
import requests
dataset = load_dataset("hamdan07/UltraSound-lung")
API_URL = "https://api-inference.huggingface.co/models/hamdan07/UltraSound-Lung"
headers = {"Authorization": "Bearer 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"}
extractor = AutoFeatureExtractor.from_pretrained("google/vit-base-patch16-224")
model = AutoModelForImageClassification.from_pretrained("google/vit-base-patch16-224")
def query(filename):
with open(filename, "rb") as f:
data = f.read()
response = requests.post(API_URL, headers=headers, data=data)
return response.json()
example_list = [['examples/cov1.png'],
['examples/cov2.jpg'],
['examples/nor1.jpg'],
['examples/nor2.jpg'],
['examples/penu1.jpg'],
['examples/penu2.jpg']]
title ="<p align='center'>COVID-19 Detection in Ultrasound with Timesformer</p>"
description ="<p style='text-align: center'> Trained on 500 data using Hugging Face dataset<br>It been traied using google/vit-base-patch16-224 </p><p style='text-align: center'>Link for the resource! <br> <a href='https://huggingface.co/datasets/hamdan07/UltraSound-lung' target='_blank'>Hugging Face Dataset</a> |<a href='https://huggingface.co/google/vit-base-patch16-224' target='_blank'>Model</a> | <a href='https://github.com/hamdanhh07/UltraSound-Lung' target='_blank'>github</a></p>"
gr.Interface.load("models/hamdan07/UltraSound-Lung",examples=example_list,title=title,description=description).launch(debug=False,share=False)
|