Views
No views yet
1python -m venv .venv && source .venv/bin/activate
2pip install -r requirements.txt
3pytest -q
4python examples/quickstart.py1from dummy_model.model import DummyModel
2m = DummyModel()
3print(m.predict("hello world"))data/toy.csv), DummyModel achieves Accuracy = 1.0
by always predicting the label "positive". This is purely for demonstration and does not reflect real performance.dummy_model/ with a simple DummyModel class.(text:str, label:str) is provided at data/toy.csv.examples/quickstart.py.tests/ and CI in .github/workflows/ci.yml.text, label (string).LICENSE). On Hugging Face, set the repo License field to mit.