ydy9038074 commited on
Commit
dd028b0
·
verified ·
1 Parent(s): 6c70261

Publish Modilify Mk1 Preview

Browse files
Files changed (1) hide show
  1. README.md +2 -6
README.md CHANGED
@@ -124,8 +124,7 @@ output = model.generate(**inputs, max_new_tokens=256)
124
 
125
  ### Video-frame input
126
 
127
- The processor represents video as a sampled sequence of frames. The following
128
- example uses PyAV to decode a short local clip and samples at most 32 RGB frames.
129
 
130
  ```python
131
  import av
@@ -198,10 +197,7 @@ model = AutoModelForMultimodalLM.from_pretrained(
198
  )
199
  ```
200
 
201
- Generation supports left-padded batches with independent stopping and
202
- `generated_lengths` for every row. Batch prompts of similar lengths together
203
- for the best throughput; KV-cache and canvas memory grow with batch size.
204
- Streaming and caller-supplied KV caches remain limited to batch size 1.
205
 
206
  ## Details
207
 
 
124
 
125
  ### Video-frame input
126
 
127
+ The processor represents video as a sampled sequence of frames. The following example uses PyAV to decode a short local clip and samples at most 32 RGB frames.
 
128
 
129
  ```python
130
  import av
 
197
  )
198
  ```
199
 
200
+ Generation supports left-padded batches with independent stopping and `generated_lengths` for every row. Batch prompts of similar lengths together for the best throughput; KV-cache and canvas memory grow with batch size. Streaming and caller-supplied KV caches remain limited to batch size 1.
 
 
 
201
 
202
  ## Details
203