mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-10 19:57:17 +03:00
Fix types descriptions of sm and sent models (#9401)
This commit is contained in:
parent
a5231cb044
commit
fd7edbc645
|
@ -34,6 +34,7 @@ const MODEL_META = {
|
|||
core_sm: 'Vocabulary, syntax, entities',
|
||||
dep: 'Vocabulary, syntax',
|
||||
ent: 'Named entities',
|
||||
sent: 'Sentence boundaries',
|
||||
pytt: 'PyTorch Transformers',
|
||||
trf: 'Transformers',
|
||||
vectors: 'Word vectors',
|
||||
|
@ -195,6 +196,7 @@ const Model = ({
|
|||
const [isError, setIsError] = useState(true)
|
||||
const [meta, setMeta] = useState({})
|
||||
const { type, genre, size } = getModelComponents(name)
|
||||
const display_type = type === 'core' && size === 'sm' ? 'core_sm' : type
|
||||
const version = useMemo(() => getLatestVersion(name, compatibility, prereleases), [
|
||||
name,
|
||||
compatibility,
|
||||
|
@ -231,7 +233,7 @@ const Model = ({
|
|||
|
||||
const rows = [
|
||||
{ label: 'Language', tag: langId, content: langName },
|
||||
{ label: 'Type', tag: type, content: MODEL_META[type] },
|
||||
{ label: 'Type', tag: type, content: MODEL_META[display_type] },
|
||||
{ label: 'Genre', tag: genre, content: MODEL_META[genre] },
|
||||
{ label: 'Size', tag: size, content: meta.sizeFull },
|
||||
{ label: 'Components', content: components, help: MODEL_META.components },
|
||||
|
|
Loading…
Reference in New Issue
Block a user