Spaces:
Runtime error
Runtime error
fix input features to be FP16, as assumed for CPU
Browse filesThis view is limited to 50 files because it contains too many changes. Β
See raw diff
- app.py +2 -1
- clip_for_ppts.py +3 -1
- input_features/slides_001_tensor.pt +2 -2
- input_features/slides_002_tensor.pt +2 -2
- input_features/slides_003_tensor.pt +2 -2
- input_features/slides_004_tensor.pt +2 -2
- input_features/slides_005_tensor.pt +2 -2
- input_features/slides_006_tensor.pt +2 -2
- input_features/slides_007_tensor.pt +2 -2
- input_features/slides_008_tensor.pt +2 -2
- input_features/slides_009_tensor.pt +2 -2
- input_features/slides_010_tensor.pt +2 -2
- input_features/slides_01b_tensor.pt +2 -2
- input_features/slides_01c_tensor.pt +2 -2
- input_features/slides_01d_tensor.pt +2 -2
- input_features/slides_020_tensor.pt +2 -2
- input_features/slides_021_tensor.pt +2 -2
- input_features/slides_022_tensor.pt +2 -2
- input_features/slides_023_tensor.pt +2 -2
- input_features/slides_024_tensor.pt +2 -2
- input_features/slides_025_tensor.pt +2 -2
- input_features/slides_026_tensor.pt +2 -2
- input_features/slides_027_tensor.pt +2 -2
- input_features/slides_028_tensor.pt +2 -2
- input_features/slides_040_tensor.pt +2 -2
- input_features/slides_041_tensor.pt +2 -2
- input_features/slides_042_tensor.pt +2 -2
- input_features/slides_043_tensor.pt +2 -2
- input_features/slides_044_tensor.pt +2 -2
- input_features/slides_045_tensor.pt +2 -2
- input_features/slides_046_tensor.pt +2 -2
- input_features/slides_047_tensor.pt +2 -2
- input_features/slides_048_tensor.pt +2 -2
- input_features/slides_049_tensor.pt +2 -2
- input_features/slides_050_tensor.pt +2 -2
- input_features/slides_051_tensor.pt +2 -2
- input_features/slides_052_tensor.pt +2 -2
- input_features/slides_053_tensor.pt +2 -2
- input_features/slides_054_tensor.pt +2 -2
- input_features/slides_055_tensor.pt +2 -2
- input_features/slides_056_tensor.pt +2 -2
- input_features/slides_057_tensor.pt +2 -2
- input_features/slides_058_tensor.pt +2 -2
- input_features/slides_059_tensor.pt +2 -2
- input_features/slides_060_tensor.pt +2 -2
- input_features/slides_080_tensor.pt +2 -2
- input_features/slides_081_tensor.pt +2 -2
- input_features/slides_082_tensor.pt +2 -2
- input_features/slides_083_tensor.pt +2 -2
- input_features/slides_084_tensor.pt +2 -2
app.py
CHANGED
@@ -4,6 +4,8 @@ import gradio as gr
|
|
4 |
import retrieval
|
5 |
from text_generation import Client, InferenceAPIClient
|
6 |
|
|
|
|
|
7 |
# load API keys from globally-availabe .env file
|
8 |
# SECRETS_FILEPATH = "/mnt/project/chatbotai/huggingface_cache/internal_api_keys.env"
|
9 |
# load_dotenv(dotenv_path=SECRETS_FILEPATH, override=True)
|
@@ -128,7 +130,6 @@ def predict(
|
|
128 |
|
129 |
# run CLIP
|
130 |
images_list = ta.clip_text_to_image(inputs)
|
131 |
-
|
132 |
yield chat, history, top_context_list[0], top_context_list[1], top_context_list[2], images_list
|
133 |
|
134 |
|
|
|
4 |
import retrieval
|
5 |
from text_generation import Client, InferenceAPIClient
|
6 |
|
7 |
+
# UNCOMMENT ONLY WHEN RUNNING LOCALLY (not on Spaces)
|
8 |
+
# from dotenv import load_dotenv
|
9 |
# load API keys from globally-availabe .env file
|
10 |
# SECRETS_FILEPATH = "/mnt/project/chatbotai/huggingface_cache/internal_api_keys.env"
|
11 |
# load_dotenv(dotenv_path=SECRETS_FILEPATH, override=True)
|
|
|
130 |
|
131 |
# run CLIP
|
132 |
images_list = ta.clip_text_to_image(inputs)
|
|
|
133 |
yield chat, history, top_context_list[0], top_context_list[1], top_context_list[2], images_list
|
134 |
|
135 |
|
clip_for_ppts.py
CHANGED
@@ -20,7 +20,9 @@ class ClipImage:
|
|
20 |
:param mode: 'image' or 'text' based on the type of input
|
21 |
:param device: device to run the model on
|
22 |
"""
|
23 |
-
|
|
|
|
|
24 |
# Path
|
25 |
directory = 'input_features'
|
26 |
path = os.path.join(path_to_save_image_features, directory)
|
|
|
20 |
:param mode: 'image' or 'text' based on the type of input
|
21 |
:param device: device to run the model on
|
22 |
"""
|
23 |
+
print("HEADS UPP -- ALWAYS using CPU for this 'spaces' version of the project. Otherwise we get FP32/16 conflicts.")
|
24 |
+
# device = "cuda" if torch.cuda.is_available() else "cpu"
|
25 |
+
device = "cpu"
|
26 |
# Path
|
27 |
directory = 'input_features'
|
28 |
path = os.path.join(path_to_save_image_features, directory)
|
input_features/slides_001_tensor.pt
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:29d55bc24135d9c7a840999d704b182524d2a414ef96c648f1d619d790a399a2
|
3 |
+
size 45833
|
input_features/slides_002_tensor.pt
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1364efec8977ffb12a3e20a3cec86d988937e1b84a1442d294f82eec3a0800f9
|
3 |
+
size 27401
|
input_features/slides_003_tensor.pt
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ee2f1e5771e45b2d67e4ee841855825025e77a5c79d5879af7440e46e6a81559
|
3 |
+
size 37641
|
input_features/slides_004_tensor.pt
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:455d953f6215e7c0252ba76cebbb62a86b17b72d9609652cb43c2698c63af0a6
|
3 |
+
size 29449
|
input_features/slides_005_tensor.pt
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:48495df1914efc197141f803fa8e794a299c079099358b1b7647ad02f9beb1a0
|
3 |
+
size 31497
|
input_features/slides_006_tensor.pt
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4d88074ab14593c6a629a1d2409a199234468cc3ff389e3fc975e70f39d49437
|
3 |
+
size 45833
|
input_features/slides_007_tensor.pt
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:117dc745cd98665fb0b9e1467e84c531943c3c4fe2430c7fb490bc14a89fe6f4
|
3 |
+
size 35593
|
input_features/slides_008_tensor.pt
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8dcbb170a6e0f528a9b2eeef78360d17c8d2909258f5476dbdb9347cf4a95482
|
3 |
+
size 37641
|
input_features/slides_009_tensor.pt
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:aa40bb1cb0f53e9eac9da6df47c7f841211f91b9a038f1a131977017b2839277
|
3 |
+
size 51977
|
input_features/slides_010_tensor.pt
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a22352c6a30fbfb07d34329edee48272fb242e37f946444a04004554252f1cea
|
3 |
+
size 25353
|
input_features/slides_01b_tensor.pt
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:df00185579ac41442b11a57727388a4772c7c733f88b5b73178c3ab7953e676f
|
3 |
+
size 13065
|
input_features/slides_01c_tensor.pt
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9f9fe4560b197ff01204723d9e80d850e565c2a55b73e53d0f30e2a33ef5fb4a
|
3 |
+
size 27401
|
input_features/slides_01d_tensor.pt
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a2652b373af6a44fa4765fe31beee085578c8eae10b09b96cf8f9350430f2b40
|
3 |
+
size 27401
|
input_features/slides_020_tensor.pt
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:34aad91d50f03078ba169d951ff276930fccb937a939d98c18efc24c7169891e
|
3 |
+
size 58121
|
input_features/slides_021_tensor.pt
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a38eb4401f0c79efcf9464f5e057af72e1eb7b028a2b34aaf786bf399098bc4d
|
3 |
+
size 51977
|
input_features/slides_022_tensor.pt
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:eb884765cd44df108f5f94eb2647e002c8fc1b6bffa056bd724c1209572d4aa2
|
3 |
+
size 39689
|
input_features/slides_023_tensor.pt
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8fba282de40c69beb70d29b6aa76a09294f90b6137ad76e45d7a15b4e6f3ac1f
|
3 |
+
size 33545
|
input_features/slides_024_tensor.pt
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:dfea2c6844a5ca3e8b9094ac2aa6cee5d70d2c3bdbac67843a53d13be5414ade
|
3 |
+
size 54025
|
input_features/slides_025_tensor.pt
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8408286255449cc6359f25995b9f1a774deaf4f7219aba42afd069ba30b60654
|
3 |
+
size 19209
|
input_features/slides_026_tensor.pt
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:45321f6ea824030e5f8a75c8b77f0806ebc811135f74334e8584da5548d9fe73
|
3 |
+
size 31497
|
input_features/slides_027_tensor.pt
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a3ee4e0c257a24299739b7e99b0b3e804bb2312e98c7fe5147f299d6d6964626
|
3 |
+
size 15113
|
input_features/slides_028_tensor.pt
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9db469ab3c7ee77fb39a724d99fcd4e33cb66365ea9983a06cc89a88aacf3a6d
|
3 |
+
size 17161
|
input_features/slides_040_tensor.pt
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ce583525507f5954a306d3524e3809f88ea79ff3a4357243d06fd02d3bd904d8
|
3 |
+
size 68361
|
input_features/slides_041_tensor.pt
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:42abf43fc51d107299f02e912b96e4128cdb0f5ab6ea54812932c91edea9223a
|
3 |
+
size 29449
|
input_features/slides_042_tensor.pt
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3e4b96a9bbca4fcf49756870bf991647298aa0a6c78dc3cfde15bd35d0180df6
|
3 |
+
size 33545
|
input_features/slides_043_tensor.pt
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:378ae1abd3bedc7a86b5d81c628d57d0cf7fbc01e12334f8e7ce69995107f048
|
3 |
+
size 68361
|
input_features/slides_044_tensor.pt
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:840e80355baf9c875d54760570f3f443e0dcef40f1250643259f5ac454dec99c
|
3 |
+
size 39689
|
input_features/slides_045_tensor.pt
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:32cd02868694bece799b9b948e86ac4ea34cb5855f9932f6d9110d93fc63ea7f
|
3 |
+
size 29449
|
input_features/slides_046_tensor.pt
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:cedf85806d5b49a71c8822f3ec7fa7fd1a0338e551edde97240b73bbc869cfd6
|
3 |
+
size 43785
|
input_features/slides_047_tensor.pt
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8e99058a8c1286a9ba4cbeb66a5a0f9b0e20db1be2d63ec1de31575db92398a2
|
3 |
+
size 21257
|
input_features/slides_048_tensor.pt
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c8ab3023965fc736f2bf06165d8dfeaa4cdd2bff090d05203f404e003d65e327
|
3 |
+
size 33545
|
input_features/slides_049_tensor.pt
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0070eaa1b52fa44567f36b5a72542ff9c74692c405fbf5a736d4b01c42f31090
|
3 |
+
size 35593
|
input_features/slides_050_tensor.pt
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b87749e4455e80a989edd986483b566dac4aec4252a46748ad0e48d5a0f7adac
|
3 |
+
size 23305
|
input_features/slides_051_tensor.pt
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:305ddc477c0da9533a7d13e932c01f28ca5df5603bc7e1ae27bb358de2b391cd
|
3 |
+
size 33545
|
input_features/slides_052_tensor.pt
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0005bf20b296ad6e7232dbf5712c9ac374371056d6aafb4dc225860737232f60
|
3 |
+
size 43785
|
input_features/slides_053_tensor.pt
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:759b63c06ee741068d356721d6dfbc4f056f10f00a63f841574eee40d59317d8
|
3 |
+
size 19209
|
input_features/slides_054_tensor.pt
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f459db293c752e5526dd278332fdb9ba60b3153fd64cf758a0d8ed3fde592a17
|
3 |
+
size 35593
|
input_features/slides_055_tensor.pt
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3e54f164d4b096afc3ddccf29203f6626e5e5667b2ba0de04d42e5ddcffde229
|
3 |
+
size 31497
|
input_features/slides_056_tensor.pt
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8f8bec9b8e0003e2967e7bc15586eba4864a368f378e4915e00ff1c031c14122
|
3 |
+
size 27401
|
input_features/slides_057_tensor.pt
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:5fbe4fa9e280214c653fd02f6d9a34c4a596744209fa9e7a859701da6df0d553
|
3 |
+
size 37641
|
input_features/slides_058_tensor.pt
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8162a4c538bb2d6b416543c1ff06546d2871f29a3ca29d7d7361028b23950a03
|
3 |
+
size 17161
|
input_features/slides_059_tensor.pt
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9c3a84477d929188b8962524533f3d33f481d63ac3d758f406855c0654bef096
|
3 |
+
size 37641
|
input_features/slides_060_tensor.pt
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:417194c8f9c5145143fb0cca9347f74c42900e2c481b5e8a08c0903c4659dc02
|
3 |
+
size 25353
|
input_features/slides_080_tensor.pt
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7b7d8e85788693d043c4abcff1d67b44406f6ad6c0cd36c05e39017afd4c0098
|
3 |
+
size 17161
|
input_features/slides_081_tensor.pt
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:331d6c59e16f36a3b9b57f48309a2bd3da120924aabeef2c734d9f0a719b3ffc
|
3 |
+
size 47881
|
input_features/slides_082_tensor.pt
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:38b80b21e6d0946fee444896d8f173b5665c79a2b3ebc223bb69977342980669
|
3 |
+
size 29449
|
input_features/slides_083_tensor.pt
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7f57f36ca9cf50ab12934ad598fff9e7c0dd91dc3039d4ee9debe1469453d215
|
3 |
+
size 62217
|
input_features/slides_084_tensor.pt
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:6552faf27939d02692c862ce4d42ea45823d4892eca52b13e5c69baaa12405d1
|
3 |
+
size 43785
|