Spaces:
Runtime error
Runtime error
File size: 1,910 Bytes
add572a 80e0e9b 6a8a035 af8878c 51db1ee af8878c 51db1ee af8878c 51db1ee af8878c 51db1ee af8878c 51db1ee 6a8a035 51db1ee 80e0e9b 51db1ee 80e0e9b 51db1ee |
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 |
import gradio as gr
from huggingface_hub import from_pretrained_keras
# Load the model from Hugging Face Hub
model = from_pretrained_keras("Bajiyo/ml-en-transliteration")
# Load the saved model and tokenizers
import json
from keras.preprocessing.sequence import pad_sequences
# Load tokenizer configurations
source_tokenizer_path = "https://huggingface.co/Bajiyo/ml-en-transliteration/blob/main/source_tokenizer.json"
with open(source_tokenizer_path, "r") as f:
source_tokenizer_config = json.load(f)
target_tokenizer_path = "https://huggingface.co/Bajiyo/ml-en-transliteration/blob/main/target_tokenizer.json"
with open(target_tokenizer_path, "r") as f:
target_tokenizer_config = json.load(f)
# Reconstruct tokenizers
from keras.preprocessing.text import tokenizer_from_json
source_tokenizer = tokenizer_from_json(source_tokenizer_config)
target_tokenizer = tokenizer_from_json(target_tokenizer_config)
# Define the maximum sequence length
max_seq_length = 50
# Function to predict transliteration
def predict_transliteration(input_text):
# Preprocess the input text
input_sequence = source_tokenizer.texts_to_sequences([input_text])
input_sequence_padded = pad_sequences(input_sequence, maxlen=max_seq_length, padding='post')
# Generate predictions
predicted_sequence = model.predict(input_sequence_padded)
# Decode the predicted sequence
predicted_text = "".join(target_tokenizer.index_word[i] for i in np.argmax(predicted_sequence, axis=-1)[0] if i != 0)
return predicted_text
# Create a Gradio interface
input_textbox = gr.inputs.Textbox(lines=2, label="Enter Malayalam text")
output_textbox = gr.outputs.Textbox(label="Predicted Transliteration")
gr.Interface(fn=predict_transliteration, inputs=input_textbox, outputs=output_textbox, title="Malayalam Transliteration", description="Enter Malayalam text to get its transliteration in English.").launch()
|