Edit model card

This project contains a text-to-text model designed to decrypt English text encoded using a substitution cipher. In a substitution cipher, each letter in the plaintext is replaced by a corresponding, unique letter to form the ciphertext. The model leverages statistical and linguistic properties of English to make educated guesses about the letter substitutions, aiming to recover the original plaintext message.

This model is for monoalphabetic English substitution ciphers and it outputs the alphabet used in encoding.

Example:

Encoded text: Hd adcdcwda yod drdqyn zk zsa boiluozzu.

Plain text: We remember the events of our childhood.

Alphabet (output): rcme...wi.fl.sh.nvu.d.b.to

Here 'r' is number 1 in the alphabet and that is why we use 'a' instead of 'r' in encoding.

Suggested Usage:

#Load the model and tokenizer
cipher_text = "" #Encoded text here!
inputs = tokenizer(cipher_text, return_tensors="pt", padding=True, truncation=True, max_length=256).to(device)
outputs = model.generate(inputs["input_ids"], max_length=256)
decoded_text = tokenizer.decode(outputs[0], skip_special_tokens=True)
Downloads last month
10
Safetensors
Model size
223M params
Tensor type
F32
·
Inference Examples
This model does not have enough activity to be deployed to Inference API (serverless) yet. Increase its social visibility and check back later, or deploy to Inference Endpoints (dedicated) instead.

Model tree for Cipher-AI/Substitution-Cipher-Alphabet-Eng

Base model

google-t5/t5-base
Finetuned
(404)
this model
Quantizations
1 model

Dataset used to train Cipher-AI/Substitution-Cipher-Alphabet-Eng

Collection including Cipher-AI/Substitution-Cipher-Alphabet-Eng