|
21 | 21 | 11, |
22 | 22 | 12 |
23 | 23 | ], |
24 | | - "description": "Compression level, ranging from 0 (weak) over 8 (very good) to 12\n (expensive)" |
| 24 | + "description": "Compression level, ranging from 0 (weak) over 8 (very good) to 12\n(expensive)" |
25 | 25 | }, |
26 | 26 | "_version": { |
27 | 27 | "type": "string", |
|
46 | 46 | "required": [ |
47 | 47 | "mode" |
48 | 48 | ], |
49 | | - "description": "Automatically detects a good mode.\n\n This works well most of the time, but costs some compression time and\n can select a bad mode in adversarial cases." |
| 49 | + "description": "Automatically detects a good mode.\n\nThis works well most of the time, but costs some compression time and\ncan select a bad mode in adversarial cases." |
50 | 50 | }, |
51 | 51 | { |
52 | 52 | "type": "object", |
|
63 | 63 | }, |
64 | 64 | { |
65 | 65 | "type": "object", |
66 | | - "description": "Tries using the `FloatMult` mode with a given base.\n\n Only applies to floating-point types.", |
| 66 | + "description": "Tries using the `FloatMult` mode with a given base.\n\nOnly applies to floating-point types.", |
67 | 67 | "properties": { |
68 | 68 | "float_mult_base": { |
69 | 69 | "type": "number", |
|
82 | 82 | }, |
83 | 83 | { |
84 | 84 | "type": "object", |
85 | | - "description": "Tries using the `FloatQuant` mode with the given number of bits of\n quantization.\n\n Only applies to floating-point types.", |
| 85 | + "description": "Tries using the `FloatQuant` mode with the given number of bits of\nquantization.\n\nOnly applies to floating-point types.", |
86 | 86 | "properties": { |
87 | 87 | "float_quant_bits": { |
88 | 88 | "type": "integer", |
|
102 | 102 | }, |
103 | 103 | { |
104 | 104 | "type": "object", |
105 | | - "description": "Tries using the `IntMult` mode with a given base.\n\n Only applies to integer types.", |
| 105 | + "description": "Tries using the `IntMult` mode with a given base.\n\nOnly applies to integer types.", |
106 | 106 | "properties": { |
107 | 107 | "int_mult_base": { |
108 | 108 | "type": "integer", |
|
135 | 135 | "required": [ |
136 | 136 | "delta" |
137 | 137 | ], |
138 | | - "description": "Automatically detects a detects a good delta encoding.\n\n This works well most of the time, but costs some compression time and\n can select a bad delta encoding in adversarial cases." |
| 138 | + "description": "Automatically detects a detects a good delta encoding.\n\nThis works well most of the time, but costs some compression time and\ncan select a bad delta encoding in adversarial cases." |
139 | 139 | }, |
140 | 140 | { |
141 | 141 | "type": "object", |
|
148 | 148 | "required": [ |
149 | 149 | "delta" |
150 | 150 | ], |
151 | | - "description": "Never uses delta encoding.\n\n This is best if your data is in a random order or adjacent numbers have\n no relation to each other." |
| 151 | + "description": "Never uses delta encoding.\n\nThis is best if your data is in a random order or adjacent numbers have\nno relation to each other." |
152 | 152 | }, |
153 | 153 | { |
154 | 154 | "type": "object", |
155 | | - "description": "Tries taking nth order consecutive deltas.\n\n Supports a delta encoding order up to 7. For instance, 1st order is\n just regular delta encoding, 2nd is deltas-of-deltas, etc. It is legal\n to use 0th order, but it is identical to None.", |
| 155 | + "description": "Tries taking nth order consecutive deltas.\n\nSupports a delta encoding order up to 7. For instance, 1st order is\njust regular delta encoding, 2nd is deltas-of-deltas, etc. It is legal\nto use 0th order, but it is identical to None.", |
156 | 156 | "properties": { |
157 | 157 | "delta_encoding_order": { |
158 | 158 | "type": "integer", |
|
189 | 189 | "required": [ |
190 | 190 | "delta" |
191 | 191 | ], |
192 | | - "description": "Tries delta encoding according to an extra latent variable of\n \"lookback\".\n\n This can improve compression ratio when there are nontrivial patterns\n in the array, but reduces compression speed substantially." |
| 192 | + "description": "Tries delta encoding according to an extra latent variable of\n\"lookback\".\n\nThis can improve compression ratio when there are nontrivial patterns\nin the array, but reduces compression speed substantially." |
193 | 193 | } |
194 | 194 | ] |
195 | 195 | } |
196 | 196 | ], |
197 | 197 | "oneOf": [ |
198 | 198 | { |
199 | 199 | "type": "object", |
200 | | - "description": "Divide the chunk into equal pages of up to this many numbers.\n\n For example, with equal pages up to 100,000, a chunk of 150,000 numbers\n would be divided into 2 pages, each of 75,000 numbers.", |
| 200 | + "description": "Divide the chunk into equal pages of up to this many numbers.\n\nFor example, with equal pages up to 100,000, a chunk of 150,000 numbers\nwould be divided into 2 pages, each of 75,000 numbers.", |
201 | 201 | "properties": { |
202 | 202 | "equal_pages_up_to": { |
203 | 203 | "type": "integer", |
|
0 commit comments