mirror of
				https://github.com/explosion/spaCy.git
				synced 2025-11-04 09:57:26 +03:00 
			
		
		
		
	Update .tensor docs [ci skip]
This commit is contained in:
		
							parent
							
								
									3072eb28c2
								
							
						
					
					
						commit
						0f76e0022d
					
				| 
						 | 
					@ -651,7 +651,7 @@ The L2 norm of the document's vector representation.
 | 
				
			||||||
| `text_with_ws`                          | unicode      | An alias of `Doc.text`, provided for duck-type compatibility with `Span` and `Token`.                                                                                                                                                                                                      |
 | 
					| `text_with_ws`                          | unicode      | An alias of `Doc.text`, provided for duck-type compatibility with `Span` and `Token`.                                                                                                                                                                                                      |
 | 
				
			||||||
| `mem`                                   | `Pool`       | The document's local memory heap, for all C data it owns.                                                                                                                                                                                                                                  |
 | 
					| `mem`                                   | `Pool`       | The document's local memory heap, for all C data it owns.                                                                                                                                                                                                                                  |
 | 
				
			||||||
| `vocab`                                 | `Vocab`      | The store of lexical types.                                                                                                                                                                                                                                                                |
 | 
					| `vocab`                                 | `Vocab`      | The store of lexical types.                                                                                                                                                                                                                                                                |
 | 
				
			||||||
| `tensor` <Tag variant="new">2</Tag>     | object       | Container for dense vector representations.                                                                                                                                                                                                                                                |
 | 
					| `tensor` <Tag variant="new">2</Tag>     | `ndarray`    | Container for dense vector representations.                                                                                                                                                                                                                                                |
 | 
				
			||||||
| `cats` <Tag variant="new">2</Tag>       | dictionary   | Maps either a label to a score for categories applied to whole document, or `(start_char, end_char, label)` to score for categories applied to spans. `start_char` and `end_char` should be character offsets, label can be either a string or an integer ID, and score should be a float. |
 | 
					| `cats` <Tag variant="new">2</Tag>       | dictionary   | Maps either a label to a score for categories applied to whole document, or `(start_char, end_char, label)` to score for categories applied to spans. `start_char` and `end_char` should be character offsets, label can be either a string or an integer ID, and score should be a float. |
 | 
				
			||||||
| `user_data`                             | -            | A generic storage area, for user custom data.                                                                                                                                                                                                                                              |
 | 
					| `user_data`                             | -            | A generic storage area, for user custom data.                                                                                                                                                                                                                                              |
 | 
				
			||||||
| `lang` <Tag variant="new">2.1</Tag>     | int          | Language of the document's vocabulary.                                                                                                                                                                                                                                                     |
 | 
					| `lang` <Tag variant="new">2.1</Tag>     | int          | Language of the document's vocabulary.                                                                                                                                                                                                                                                     |
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -464,8 +464,9 @@ The L2 norm of the span's vector representation.
 | 
				
			||||||
## Attributes {#attributes}
 | 
					## Attributes {#attributes}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| Name                                    | Type         | Description                                                                                                    |
 | 
					| Name                                    | Type         | Description                                                                                                    |
 | 
				
			||||||
| -------------- | ------------ | -------------------------------------------------------------------------------------------------------------- |
 | 
					| --------------------------------------- | ------------ | -------------------------------------------------------------------------------------------------------------- |
 | 
				
			||||||
| `doc`                                   | `Doc`        | The parent document.                                                                                           |
 | 
					| `doc`                                   | `Doc`        | The parent document.                                                                                           |
 | 
				
			||||||
 | 
					| `tensor` <Tag variant="new">2.1.7</Tag> | `ndarray`    | The span's slice of the parent `Doc`'s tensor.                                                                 |
 | 
				
			||||||
| `sent`                                  | `Span`       | The sentence span that this span is a part of.                                                                 |
 | 
					| `sent`                                  | `Span`       | The sentence span that this span is a part of.                                                                 |
 | 
				
			||||||
| `start`                                 | int          | The token offset for the start of the span.                                                                    |
 | 
					| `start`                                 | int          | The token offset for the start of the span.                                                                    |
 | 
				
			||||||
| `end`                                   | int          | The token offset for the end of the span.                                                                      |
 | 
					| `end`                                   | int          | The token offset for the end of the span.                                                                      |
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -417,6 +417,7 @@ The L2 norm of the token's vector representation.
 | 
				
			||||||
| `orth`                                       | int          | ID of the verbatim text content.                                                                                                                                                                                              |
 | 
					| `orth`                                       | int          | ID of the verbatim text content.                                                                                                                                                                                              |
 | 
				
			||||||
| `orth_`                                      | unicode      | Verbatim text content (identical to `Token.text`). Exists mostly for consistency with the other attributes.                                                                                                                   |
 | 
					| `orth_`                                      | unicode      | Verbatim text content (identical to `Token.text`). Exists mostly for consistency with the other attributes.                                                                                                                   |
 | 
				
			||||||
| `vocab`                                      | `Vocab`      | The vocab object of the parent `Doc`.                                                                                                                                                                                         |
 | 
					| `vocab`                                      | `Vocab`      | The vocab object of the parent `Doc`.                                                                                                                                                                                         |
 | 
				
			||||||
 | 
					| `tensor` <Tag variant="new">2.1.7</Tag>      | `ndarray`    | The tokens's slice of the parent `Doc`'s tensor.                                                                                                                                                                              |
 | 
				
			||||||
| `head`                                       | `Token`      | The syntactic parent, or "governor", of this token.                                                                                                                                                                           |
 | 
					| `head`                                       | `Token`      | The syntactic parent, or "governor", of this token.                                                                                                                                                                           |
 | 
				
			||||||
| `left_edge`                                  | `Token`      | The leftmost token of this token's syntactic descendants.                                                                                                                                                                     |
 | 
					| `left_edge`                                  | `Token`      | The leftmost token of this token's syntactic descendants.                                                                                                                                                                     |
 | 
				
			||||||
| `right_edge`                                 | `Token`      | The rightmost token of this token's syntactic descendants.                                                                                                                                                                    |
 | 
					| `right_edge`                                 | `Token`      | The rightmost token of this token's syntactic descendants.                                                                                                                                                                    |
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue
	
	Block a user