import gradio as gr with gr.Blocks() as demo: title = gr.HTML('

Subnet 30 Leaderboard

') content = gr.HTML('

Subnet 30 is a Bittensor subnet that rewards miners for participating in distributed training on the Falcon Refined Web dataset.
Miners collaborate to create top-performing models, earning higher emissions for their contributions.

') next_blocks = 55 next_mins = 11 next_reward_update = gr.HTML(f'
Next reward update: {next_blocks} blocks (~{next_mins} minutes)
') top_models = gr.Label(label='Top Models', value={ "apple": 0.7, "banana": 0.2, "orange": 0.1 }) demo.launch(share=True)