You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
class Embedder(model_dir='/path/to/your/model/', batch_size=64):
in this line,
what does 'path to your model' means?
I tried to import this package to colab
And I'm trying to using it on colab.
So I imported Embedder then i wrote
something like
Embedder('/content/drive/My Drive/')... or Embedder('/ELMoForManyLangs/configs/')
but I can't get what does 'model' means
The text was updated successfully, but these errors were encountered:
path to model refers to the directory that your config.json file is stored. For instance, if your config.json file is located in directory Chinese, then what you want is Embedder('Chinese').
class Embedder(model_dir='/path/to/your/model/', batch_size=64):
in this line,
what does 'path to your model' means?
I tried to import this package to colab
And I'm trying to using it on colab.
So I imported Embedder then i wrote
something like
Embedder('/content/drive/My Drive/')... or Embedder('/ELMoForManyLangs/configs/')
but I can't get what does 'model' means
The text was updated successfully, but these errors were encountered: