Spaces:
Runtime error
Runtime error
File size: 5,543 Bytes
a3ea924 7c8c1e0 a3ea924 7c8c1e0 a3ea924 7c8c1e0 a3ea924 7c8c1e0 a3ea924 7c8c1e0 a3ea924 7c8c1e0 a3ea924 7c8c1e0 a3ea924 7c8c1e0 a3ea924 7c8c1e0 a3ea924 7c8c1e0 a3ea924 7c8c1e0 a3ea924 7c8c1e0 a3ea924 7c8c1e0 a3ea924 7c8c1e0 a3ea924 7c8c1e0 a3ea924 7c8c1e0 a3ea924 7c8c1e0 a3ea924 7c8c1e0 a3ea924 7c8c1e0 a3ea924 7c8c1e0 a3ea924 7c8c1e0 a3ea924 7c8c1e0 a3ea924 7c8c1e0 a3ea924 7c8c1e0 |
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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 |
import gradio as gr
import requests
import json
import os
from datasets import load_dataset
from pymongo.mongo_client import MongoClient
from pymongo.server_api import ServerApi
db_password = os.environ["db_password"]
uri = f"mongodb+srv://tuna:{db_password}@tuna.ixw4ff2.mongodb.net/?appName=tuna"
# Create a new client and connect to the server
client = MongoClient(uri, server_api=ServerApi('1'))
database = client['valid_image_caption']
collection = database["log_valid"]
ds = load_dataset("anhdt-dsai-02/test_image_dataset_1_2_3_4", token = os.environ['token_huggingface'] )
def get_similar_captions(caption):
url = "https://anhdt-dsai-02-caption-retrieval.hf.space/retrieval"
params = {"caption": caption}
try:
response = requests.post(url, params=params, headers={"accept": "application/json"})
response.raise_for_status() # Raises an HTTPError for bad responses (4xx and 5xx)
data = response.json() # Assuming response is JSON
except requests.exceptions.RequestException as e:
print(f"Request failed: {e}")
except ValueError:
print("Failed to parse JSON response")
return data
index = 0
def create_question():
global index
print(index)
caption = ds['train'][index]["caption"] # delete [0]
caption_lst = get_similar_captions(caption)
#id_lst = [pair['id'] for pair in caption_lst]
id_lst = [int(pair['id']/10) for pair in caption_lst]
images = [ds["train"][id]['image'] for id in id_lst]
index += 1
return caption, images, id_lst
def on_select(evt: gr.SelectData):
idx = evt.index
return idx
# Function to handle user selection
def process_answer(user_id, caption, selected_image, ids):
collection.insert_one({ "used_id" : user_id, "caption": caption, "ids": ids, "choice": selected_image})
send_score(user_id, 0.1)
return create_question()
def send_score(user_id, score = 0.1):
max_retries = 10
while max_retries > 0:
url = os.environ['api_url'] + "grade"
payload = {
"token": user_id,
"comment": "Good job!",
"grade": score,
"submitted_at": "2021-01-01 00:00:00",
"graded_at": "2021-01-01 00:00:00"
}
headers = {
"Content-Type": "application/json",
"Accept": "application/json",
"X-Public-Api-Key": os.environ['ADMIN']
}
response = requests.post(url, json=payload, headers=headers)
if response.status_code == 200:
return True
print(response)
max_retries -= 1
return False
def authenticate(user_id):
url = os.environ['api_url'] + "authenticate"
headers = {
"Content-Type": "application/json",
"Accept": "application/json",
"X-Public-Api-Key": os.environ['ADMIN']
}
payload = { "token": user_id }
response = requests.post(url, json=payload, headers=headers)
return response.status_code == 200
def login(username):
#state[0] = username
#package[0] = get_next_package(user_id=username)
"""
#temp
gr.Info("Login successfully. Welcome!")
return f"Welcome, {username}!", gr.update(visible=False), gr.update(visible=True)
#temp
"""
# Authenticate user
if authenticate(username):
#user_sessions[username] = True
gr.Info("Login successfully. Welcome!")
return f"Welcome, {username}!", gr.update(visible=False), gr.update(visible=True), *create_question()
else:
raise gr.Error("Token ID is invalid! Try again!")
return "Invalid Token ID", gr.update(visible=True), gr.update(visible=False)
# Gradio UI
with gr.Blocks() as demo:
with gr.Column(visible=True) as login_section:
username_input = gr.Textbox(placeholder="Enter your token", label="Token ID", type="password")
login_button = gr.Button("Login")
login_output = gr.Textbox(label="Login Status", interactive=False)
# Upload section (initially hidden)
with gr.Column(visible=False) as upload_section:
caption = gr.State()
images = gr.State()
id_lst = gr.State()
# Store the selected image path
selected_image = gr.State()
#caption.value, images.value, id_lst.value = create_question()
gr.Markdown("**Đâu là hình ảnh phù hợp với caption sau:**")
markdown = gr.Markdown(caption.value)
# Display images in a Gallery
gallery = gr.Gallery(value=images.value, label="Ấn vào hình ảnh để chọn sau đó Submit", columns = 4)
# Use the Gallery's select event to update the selected image
gallery.select(fn=on_select, outputs=selected_image)
# Submit button
submit_button = gr.Button("Submit")
# Output message
output_message = gr.Textbox(label="Result")
# Action in Login Section
username_input.submit(
login, inputs=[username_input], outputs=[login_output, login_section, upload_section, markdown, gallery, id_lst] #, translation_section, en_input, vi_input]
)
login_button.click(
login, inputs=[username_input], outputs=[login_output, login_section, upload_section, markdown, gallery, id_lst] #, translation_section, en_input, vi_input]
)
# Link the submit button to the processing function
submit_button.click(fn=process_answer, inputs=[username_input, caption, selected_image, id_lst], outputs=[markdown, gallery, id_lst])
# Launch the app
demo.launch(debug = True) |