cryptocalypse
commited on
Commit
•
b0a0cc6
1
Parent(s):
d4bfb54
Update app.py
Browse files
app.py
CHANGED
@@ -1,5 +1,23 @@
|
|
1 |
import gradio as gr
|
2 |
from huggingface_hub import InferenceClient
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
|
4 |
"""
|
5 |
For more information on `huggingface_hub` Inference API support, please check the docs: https://huggingface.co/docs/huggingface_hub/v0.22.2/en/guides/inference
|
|
|
1 |
import gradio as gr
|
2 |
from huggingface_hub import InferenceClient
|
3 |
+
from datasets import load_dataset
|
4 |
+
## TORAH CODES LIBS
|
5 |
+
from lib.gematria import calculate_gematria, strip_diacritics
|
6 |
+
from lib.temuraeh import temura_conv
|
7 |
+
from lib.notarikon import notarikon
|
8 |
+
from lib.ziruph import encrypt,decrypt
|
9 |
+
from lib.entropy import *
|
10 |
+
from torahcodes.resources.func.torah import *
|
11 |
+
from lib.sonsofstars import *
|
12 |
+
import pandas as pd
|
13 |
+
## Loas I classes
|
14 |
+
from lib.me import *
|
15 |
+
|
16 |
+
## Initialize I class
|
17 |
+
ME = I("","","",sophia_prop)
|
18 |
+
## Memory dataframe viewer
|
19 |
+
fastmem = {}
|
20 |
+
|
21 |
|
22 |
"""
|
23 |
For more information on `huggingface_hub` Inference API support, please check the docs: https://huggingface.co/docs/huggingface_hub/v0.22.2/en/guides/inference
|