问题标签 [allennlp]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
0 回答
3414 浏览

python - pytorch AttributeError:模块“torch.optim.lr_scheduler”没有属性“CosineAnnealingLR”

尝试在 google colab 上运行 python 笔记本时,在https://medium.com/@markn_67491/run-allennlp-models-on-free-gpus-using-googles-colab-notebooks-4db9359970c1中提到,可从:https: //drive.google.com/file/d/1JH6dz8GJbwh9GhPoZQKwR-EipeR5JBrV/view

安装 pytorch 和 AllenNlp 后我运行

由于...而在第二行崩溃

AttributeError:模块“torch.optim.lr_scheduler”没有属性“CosineAnnealingLR”

注意:https ://github.com/pytorch/pytorch/issues/3214建议升级到 3.0 版,但即使使用 pip3 安装http://download.pytorch.org/whl/cu80/torch-0.3.1-cp36-cp36m -linux_x86_64.whl 即版本 3.1 问题仍然存在。有什么建议么

0 投票
1 回答
1648 浏览

python-3.x - ModuleNotFoundError:没有名为“allennlp.common”的模块

导入 allennlp 时出现此错误,

我的 allennlp 版本是 0.2.1,甚至尝试更新到 0.4.1 也会出现同样的错误。

TIA

0 投票
0 回答
110 浏览

python - 如何使用正确版本的python(OSX)?

我安装了以下版本的python。

allennlp 安装在这里。

但是当我运行 allennlp 时。它显然使用了 python 版本 2。我不想手动编辑 allennlp 或创建指向 python3 的新 python 符号链接。

有谁知道处理这种情况的最佳方法是什么?谢谢。

0 投票
0 回答
242 浏览

python - 在 AllenNlp 管道中在哪里添加 SentencePiece 标记化?

我是 allennlp 的新手,我在管道中使用句子进行子词标记。

SentencePiece 需要一个训练步骤来生成子词模型,然后可以将其用于标记化。

是实现Vocabulary 类的正确方法。考虑到有用于字符标记化等的 TokenIndexers,它是否是正确的位置有点困惑。

0 投票
1 回答
7132 浏览

python-3.x - pip - 安装特定的软件包版本不起作用

我试图allennlp通过pip3. 但它抱怨 PyTorch 版本。虽然allennlp需要torch=0.4.0我有torch=0.4.1

还要手动安装:

也不起作用:

其他版本也一样。

Python 是通过Mac OSPython 3.7.0安装的版本。brew

我记得前段时间我能够在版本0.4.00.3.1使用pip3 install torch==0.X.X.

我该如何解决这个问题?

0 投票
1 回答
607 浏览

python - 安装 allennlp==0.3.0 时应该使用哪个版本的 sanic-cors、sanic 和 sanic-plugins-framework?

与 Python 3.6 或 3.7 一起安装时,我应该使用哪些版本的 python 包sanic-corssanic和?sanic-plugins-frameworkallennlp==0.3.0

当我运行时:

我收到错误消息:

后来阻止我的程序依赖 allennlp 运行(RuntimeError: You cannot use Sanic-CORS with sanic < v0.7.0):

0 投票
1 回答
268 浏览

python - 如何使用带有 allennlp==0.3.0 的 JupyterLab?

如何使用带有 allennlp==0.3.0 的 JupyterLab?

当我通过浏览器访问 jupyterlab 时,python 内核死了:

安装旧版本的 create_prompt_application 没有帮助(它会导致其他问题)。

0 投票
1 回答
19669 浏览

gpu - pytorch 从 gpu 中删除模型

我想在我的项目中基于 Pytorch 进行交叉验证。而且我没有找到pytorch提供的删除当前模型并清空GPU内存的任何方法。你能告诉我该怎么做吗?

0 投票
1 回答
72 浏览

django - 如何在艾伦 NLP 环境中运行 django 应用程序?

我在 Django 中创建了一个 API。它应该接受一个请求并将参数传递给 allenNLP 文件以收集计算的响应。我想知道如何在 allenNLP 环境中运行我的 django 应用程序,并且我希望 allenNLP 的所有源代码都在我的 django 项目的文件夹中。有可能吗?我该怎么做?

0 投票
1 回答
255 浏览

python - 如何编写@overrides allennlp predictor.load_line?

AllenNLP 有一个预测函数,它接收一个 JSON 文件,然后输出一个 JSON 文件。从文档中可以@overrides predictor.load_line 并写入一个函数来接收一个文本文件。

你会怎么写这个函数?以及如何实现该功能(即作为模块导入)?

AllenNLP load_line API:https ://allenai.github.io/allennlp-docs/api/allennlp.predictors.html?highlight=sentencetaggerpredictor#allennlp.predictors.predictor.Predictor

我在这里学习教程: https ://github.com/allenai/allennlp/blob/master/tutorials/tagger/README.md