-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
517 changed files
with
33,074 additions
and
7,626 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"python.formatting.provider": "black" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ coverage: | |
source: | ||
paths: | ||
- "gradio/" | ||
target: 80% | ||
target: 70% | ||
threshold: 0.1 | ||
patch: off | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
import random | ||
|
||
import gradio as gr | ||
|
||
demo = gr.Blocks() | ||
|
||
with demo: | ||
gr.Markdown( | ||
"Load the flashcards in the table below, then use the Practice tab to practice." | ||
) | ||
|
||
with gr.Tabs(): | ||
with gr.TabItem("Word Bank"): | ||
flashcards_table = gr.Dataframe(headers=["front", "back"], type="array") | ||
with gr.TabItem("Practice"): | ||
with gr.Row(): | ||
front = gr.Textbox() | ||
answer_row = gr.Row(visible=False) | ||
with answer_row: | ||
back = gr.Textbox() | ||
with gr.Row(): | ||
new_btn = gr.Button("New Card") | ||
flip_btn = gr.Button("Flip Card") | ||
selected_card = gr.Variable() | ||
feedback_row = gr.Row(visible=False) | ||
with feedback_row: | ||
correct_btn = gr.Button( | ||
"Correct", | ||
css={"background-color": "lightgreen", "color": "green"}, | ||
) | ||
incorrect_btn = gr.Button( | ||
"Incorrect", css={"background-color": "pink", "color": "red"} | ||
) | ||
with gr.TabItem("Results"): | ||
results = gr.Variable(default_value={}) | ||
correct_field = gr.Markdown("# Correct: 0") | ||
incorrect_field = gr.Markdown("# Incorrect: 0") | ||
gr.Markdown("Card Statistics: ") | ||
results_table = gr.Dataframe(headers=["Card", "Correct", "Incorrect"]) | ||
|
||
def load_new_card(flashcards): | ||
card = random.choice(flashcards) | ||
return card, card[0], False, False | ||
|
||
new_btn.click( | ||
load_new_card, | ||
[flashcards_table], | ||
[selected_card, front, answer_row, feedback_row], | ||
) | ||
|
||
def flip_card(card): | ||
return card[1], True, True | ||
|
||
flip_btn.click(flip_card, [selected_card], [back, answer_row, feedback_row]) | ||
|
||
def mark_correct(card, results): | ||
if card[0] not in results: | ||
results[card[0]] = [0, 0] | ||
results[card[0]][0] += 1 | ||
correct_count = sum(result[0] for result in results.values()) | ||
return ( | ||
results, | ||
f"# Correct: {correct_count}", | ||
[[front, scores[0], scores[1]] for front, scores in results.items()], | ||
) | ||
|
||
def mark_incorrect(card, results): | ||
if card[0] not in results: | ||
results[card[0]] = [0, 0] | ||
results[card[0]][1] += 1 | ||
incorrect_count = sum(result[1] for result in results.values()) | ||
return ( | ||
results, | ||
f"# Inorrect: {incorrect_count}", | ||
[[front, scores[0], scores[1]] for front, scores in results.items()], | ||
) | ||
|
||
correct_btn.click( | ||
mark_correct, | ||
[selected_card, results], | ||
[results, correct_field, results_table], | ||
) | ||
|
||
incorrect_btn.click( | ||
mark_incorrect, | ||
[selected_card, results], | ||
[results, incorrect_field, results_table], | ||
) | ||
|
||
if __name__ == "__main__": | ||
demo.launch() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import gradio as gr | ||
|
||
str = """Hello friends | ||
hello friends | ||
Hello friends | ||
""" | ||
|
||
|
||
with gr.Blocks() as demo: | ||
txt = gr.Textbox(label="Input", lines=5) | ||
txt_2 = gr.Textbox(label="Output") | ||
txt_3 = gr.Textbox(str, label="Output") | ||
btn = gr.Button("Submit") | ||
btn.click(lambda a: a, inputs=[txt], outputs=[txt_2]) | ||
|
||
if __name__ == "__main__": | ||
demo.launch() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
import matplotlib.pyplot as plt | ||
import numpy as np | ||
|
||
import gradio as gr | ||
|
||
|
||
def plot(v, a): | ||
g = 9.81 | ||
theta = a / 180 * 3.14 | ||
tmax = ((2 * v) * np.sin(theta)) / g | ||
timemat = tmax * np.linspace(0, 1, 40)[:, None] | ||
|
||
x = (v * timemat) * np.cos(theta) | ||
y = ((v * timemat) * np.sin(theta)) - ((0.5 * g) * (timemat**2)) | ||
|
||
fig = plt.figure() | ||
plt.scatter(x=x, y=y, marker=".") | ||
plt.xlim(0, 100) | ||
plt.ylim(0, 60) | ||
return fig | ||
|
||
|
||
demo = gr.Blocks() | ||
|
||
with demo: | ||
gr.Markdown( | ||
"Let's do some kinematics! Choose the speed and angle to see the trajectory." | ||
) | ||
|
||
with gr.Row(): | ||
speed = gr.Slider(25, min=1, max=30, label="Speed") | ||
angle = gr.Slider(45, min=0, max=90, label="Angle") | ||
output = gr.Image(type="plot") | ||
btn = gr.Button("Run") | ||
btn.click(plot, [speed, angle], output) | ||
|
||
if __name__ == "__main__": | ||
demo.launch() |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Oops, something went wrong.