CoolFace
Apppublic

Glint-Research/Anthos-1

sourceHugging Faceupdated 4mo agoView on Hugging Face
5likes
App README

Anthos — Gradio demo

Minimal web interface for Anthos, a 984K-param class-conditional DiT that draws flowers.

Run

bash
pip install -r requirements.txt
python app.py

Then open <http://127.0.0.1:7860>.

By default the pipeline downloads Glint-Research/Anthos-1 from the Hugging Face Hub on first run. To load from a local checkout instead:

bash
python app.py --repo ../huggingface_model

Other flags:

  • —--share — print a public gradio.live URL
  • —--host 0.0.0.0 — listen on all interfaces
  • —--port 7860 — change the port

Files

FilePurpose
app.pyGradio Blocks UI; thin wrapper around AnthosPipeline
requirements.txtRuntime dependencies

The UI does not vendor model code — it shells into the model folder (a snapshot_download cache when given a Hub id, a local path otherwise) and uses modeling.py + pipeline.py + model.safetensors from there.