Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -246,14 +246,19 @@ groupinput_text = gr.inputs.Textbox(lines=2, label="Enter a list of words")
|
|
246 |
groupoutput_text = gr.outputs.Textbox(label="Grouped words")
|
247 |
|
248 |
with gr.Blocks() as lliface:
|
249 |
-
with gr.Tab("Welcome
|
250 |
gr.HTML("""<h1> Spaces Test - Still Undercontruction </h1> <p> You only learn when you convert things you dont know to known --> Normally Repetition is the only reliable method for everybody </p>
|
251 |
<p> Knowledge is a Language but productive knowledge is find replace as well </p> <p>LingQ is good option for per word state management</p> <p> Arrows app json creator for easy knowledge graphing and spacy POS graph? </p>
|
252 |
<p> Vocab = Glossary + all non text wall(lists, diagrams, etc.)</p>
|
253 |
-
<p>https://huggingface.co/spaces/vumichien/whisper-speaker-diarization<br></p>
|
254 |
-
|
255 |
-
|
256 |
-
gr.
|
|
|
|
|
|
|
|
|
|
|
257 |
with gr.Tab("Spelling and Chunks"):
|
258 |
gr.HTML("<p> Spelling is the end goal, you already know many letter orders called words so you need leverage them to remember random sequences")
|
259 |
with gr.Tab("Spelling Simplification - Use a dual language list"):
|
|
|
246 |
groupoutput_text = gr.outputs.Textbox(label="Grouped words")
|
247 |
|
248 |
with gr.Blocks() as lliface:
|
249 |
+
with gr.Tab("Welcome"):
|
250 |
gr.HTML("""<h1> Spaces Test - Still Undercontruction </h1> <p> You only learn when you convert things you dont know to known --> Normally Repetition is the only reliable method for everybody </p>
|
251 |
<p> Knowledge is a Language but productive knowledge is find replace as well </p> <p>LingQ is good option for per word state management</p> <p> Arrows app json creator for easy knowledge graphing and spacy POS graph? </p>
|
252 |
<p> Vocab = Glossary + all non text wall(lists, diagrams, etc.)</p>
|
253 |
+
<p> https://huggingface.co/spaces/vumichien/whisper-speaker-diarization<br></p>
|
254 |
+
<p> In Language the goal is bigger vocab --> Knowledge equivalent = question answer pairs but to get to those you need related information pairs</p>
|
255 |
+
<p> ChatGPT Turns Learning into a read only what you dont know ask only what you dont know feedback loop --> All you have to do is keep track of what prompts you have asked in the past</p>""")
|
256 |
+
with gr.Tab("Unique word ID"):
|
257 |
+
gr.Interface(fn=unique_word_count, inputs="text", outputs="text", title="Wordcounter")
|
258 |
+
gr.Interface(fn=SepHypandSynExpansion, inputs="text", outputs=["text", "text"], title="Word suggestions")
|
259 |
+
gr.Interface(fn=WikiSearch, inputs="text", outputs="text", title="Unique word suggestions(wiki articles)")
|
260 |
+
with gr.Tab("Automating related information linking"):
|
261 |
+
gr.HTML("Questions - Tacking and suggesting questions to ask = new education")
|
262 |
with gr.Tab("Spelling and Chunks"):
|
263 |
gr.HTML("<p> Spelling is the end goal, you already know many letter orders called words so you need leverage them to remember random sequences")
|
264 |
with gr.Tab("Spelling Simplification - Use a dual language list"):
|