Skip to content
Jeffrey Deng

Projects

Sample project one

2025 · NLP · ML

Sample project one, image 1 of 2
Sample project one, image 2 of 2

Overview#

Placeholder body. It exercises the MDX component map so the detail page can be reviewed before real content exists.

Approach#

  1. Prepare the dataset and hold out a test split.
  2. Train a baseline model.
  3. Measure the change against that baseline.

Evaluation#

  • Accuracy on the held-out split.
  • Latency per request.
def accuracy(predictions, labels):
    hits = sum(p == y for p, y in zip(predictions, labels))
    return hits / len(labels)

Note

Sample content. Replace this file with a real project before publishing.

Back to projects