ANLP-Assignment-1
Collection
Collection of models ran for ANLP-Assignment-1 • 6 items • Updated
This repository hosts model checkpoints, logs, and evaluation predictions for ANLP Assignment 1: Neural Decryption & Sequence-to-Sequence Modeling.
Evaluated on the held-out test split:
| Model Configuration | Sequence Accuracy | Bit Accuracy | BLEU | ROUGE-L | Mean Levenshtein Distance |
|---|---|---|---|---|---|
C3_run_baseline_eng_tokens |
13.80% | 82.52% | 90.91% | 95.59% | 16.71 |
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_C3",
filename="C3_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"))
C3_run_baseline_eng_tokens_best.ptC3_run_baseline_eng_tokens_history.jsonC3_run_baseline_eng_tokens_loss.pngC3_run_baseline_eng_tokens_metrics.logC3_run_baseline_eng_tokens_test_predictions.jsonC3_run_baseline_eng_tokens_throughput.png