Update README.md
Browse files
README.md
CHANGED
|
@@ -120,7 +120,7 @@ logging.getLogger("root").setLevel(logging.ERROR)
|
|
| 120 |
|
| 121 |
batch_size = 4
|
| 122 |
audio_prompt = "\nSummarize the above audio in one word:"
|
| 123 |
-
audis = [some audios
|
| 124 |
|
| 125 |
all_audio_embeddings = []
|
| 126 |
|
|
@@ -169,7 +169,7 @@ all_audio_embeddings = torch.cat(all_audio_embeddings, dim=0)
|
|
| 169 |
#### Video Batch Encoding:
|
| 170 |
|
| 171 |
```python
|
| 172 |
-
videos = [some videos * 1000
|
| 173 |
video_prompt = "\nSummarize the above video in one word:"
|
| 174 |
batch_size = 4
|
| 175 |
|
|
|
|
| 120 |
|
| 121 |
batch_size = 4
|
| 122 |
audio_prompt = "\nSummarize the above audio in one word:"
|
| 123 |
+
audis = [some audios] * 1000
|
| 124 |
|
| 125 |
all_audio_embeddings = []
|
| 126 |
|
|
|
|
| 169 |
#### Video Batch Encoding:
|
| 170 |
|
| 171 |
```python
|
| 172 |
+
videos = [some videos] * 1000
|
| 173 |
video_prompt = "\nSummarize the above video in one word:"
|
| 174 |
batch_size = 4
|
| 175 |
|