ANLP_C1

This repository hosts model checkpoints, logs, and evaluation predictions for ANLP Assignment 1: Neural Decryption & Sequence-to-Sequence Modeling.


Benchmark Performance

Evaluated on the held-out test split:

Model Configuration Sequence Accuracy Bit Accuracy BLEU ROUGE-L Mean Levenshtein Distance
C1_run_baseline_eng_tokens 13.40% 81.74% 90.20% 95.40% 16.41

How to Load Checkpoints

Download and inspect checkpoints directly using huggingface_hub and torch:

import torch
from huggingface_hub import hf_hub_download

ckpt_path = hf_hub_download(
    repo_id="anuml/ANLP_C1",
    filename="C1_run_baseline_eng_tokens_best.pt"
)

checkpoint = torch.load(ckpt_path, map_location="cpu")
print("Loaded checkpoint from epoch:", checkpoint.get("epoch"))
print("Model configuration:", checkpoint.get("config"))

Files in this Repository

  • C1_run_baseline_eng_tokens_best.pt
  • C1_run_baseline_eng_tokens_history.json
  • C1_run_baseline_eng_tokens_loss.png
  • C1_run_baseline_eng_tokens_metrics.log
  • C1_run_baseline_eng_tokens_test_predictions.json
  • C1_run_baseline_eng_tokens_throughput.png
Downloads last month

-

Downloads are not tracked for this model. How to track
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Collection including anuml/ANLP_C1