Receive "AttributeError: 'NoneType' object has no attribute 'full'" when attempt to load en_core_web_trf.
Full error below. I can successfully load en_core_web_sm, and have run, running spacy 3.4.2.
!python -m spacy download en_core_web_trf
nlp=spacy.load('en_core_web_trf')
error:
30 def load(
31 name: Union[str, Path],
32 *,
(...)
37 config: Union[Dict[str, Any], Config] = util.SimpleFrozenDict(),
38 ) -> Language:
39 """Load a spaCy model from an installed package or a local path.
40
41 name (str): Package name or model path.
(...)
52 RETURNS (Language): The loaded nlp object.
53 """
---> 54 return util.load_model(
55 name,
56 vocab=vocab,
57 disable=disable,
58 enable=enable,
59 exclude=exclude,
60 config=config,
...
---> 54 self._growth_tracker = torch.full((1,), 0, dtype=torch.int)
55 self._scale = torch.full((1,), init_scale)
56 self._found_inf = False
followed this question but doesnt seem to work