Solshine commited on
Commit
b8dfcd5
1 Parent(s): 70ba04d

Attempting to fix the theme

Browse files

Korean Krew 2023 hackathon theme call edit.

Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -2,7 +2,9 @@ import streamlit as st
2
  import pandas as pd
3
  from transformers import pipeline, AutoConfig, AutoTokenizer, AutoModelForSeq2SeqLM, AutoModelForCausalLM, MistralForCausalLM
4
  from peft import PeftModel, PeftConfig
5
- gr.Blocks(theme= 'pseudolab/huggingface-korea-theme')
 
 
6
 
7
  #Note this should be used always in compliance with applicable laws and regulations if used with real patient data.
8
 
 
2
  import pandas as pd
3
  from transformers import pipeline, AutoConfig, AutoTokenizer, AutoModelForSeq2SeqLM, AutoModelForCausalLM, MistralForCausalLM
4
  from peft import PeftModel, PeftConfig
5
+ import gradio as gr
6
+
7
+ gr.set_theme(custom_theme="pseudolab/huggingface-korea-theme'")
8
 
9
  #Note this should be used always in compliance with applicable laws and regulations if used with real patient data.
10