Commit
•
0ca4024
1
Parent(s):
857ebca
sort imports
Browse files
app.py
CHANGED
@@ -1,9 +1,9 @@
|
|
|
|
|
|
|
|
1 |
from huggingface_hub import list_models
|
2 |
from toolz import groupby
|
3 |
-
import gradio as gr
|
4 |
from tqdm.auto import tqdm
|
5 |
-
import pandas as pd
|
6 |
-
from cachetools import cached, TTLCache
|
7 |
|
8 |
|
9 |
@cached(TTLCache(maxsize=10, ttl=60 * 60 * 3))
|
|
|
1 |
+
import gradio as gr
|
2 |
+
import pandas as pd
|
3 |
+
from cachetools import TTLCache, cached
|
4 |
from huggingface_hub import list_models
|
5 |
from toolz import groupby
|
|
|
6 |
from tqdm.auto import tqdm
|
|
|
|
|
7 |
|
8 |
|
9 |
@cached(TTLCache(maxsize=10, ttl=60 * 60 * 3))
|