问题标签 [flair]
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.
python - 转换 flair 语言模型张量以在 TensorBoard Projector 中查看
我想转换“向量”
至
并将其写入 TSV。
另外:这些嵌入来自flair
(https://github.com/zalandoresearch/flair):我怎样才能获得完整的输出,而不是-0.0004 ... 0.1377
缩写输出?
python - 安装 python 包 Flair 时出错,关于不在 PyPI 中托管的依赖包
我正在尝试安装flair
. 执行以下命令时抛出以下错误:
pip install flair
ERROR: Packages installed from PyPI cannot depend on packages which are not also hosted on PyPI.
tiny-tokenizer depends on SudachiDict_core@ https://object-storage.tyo2.conoha.io/v1/nc_2520839e1f9641b08211a5c85243124a/sudachi/SudachiDict_core-20190927.tar.gz
我认为显式安装此软件包可能会修复错误,但事实并非如此。错误保持不变。SudachiDict-core 的安装版本如下:
SudachiDict-core 0.0.0
下面是环境:
- 操作系统:Windows 10
- Python:3.6(64 位)
任何提示表示赞赏。谢谢!
笔记:
- 安装flair时的第一个障碍是
torch
包。安装torch包时简单地解决了这个问题。错误如下所示:ERROR: Could not find a version that satisfies the requirement torch>=1.1.0 (from flair) (from verERROR: No matching distribution found for torch>=1.1.0 (from flair)
nlp - Flair NER Metrics 解释
我目前正在使用 Flair 准备 NER 任务,并且正在寻找有关用于 NER 任务的指标的一些信息。
什么是最常用的指标以及如何解释它们?
python - 在 GPU 上将 Flair 与 TensroFlow 结合使用会产生错误
当我尝试将Flair标记器与通用句子编码器(USE) 结合使用以嵌入在 CPU 和 GPU 上运行良好的所有内容时,会产生错误:
我知道 CUDA、CUDA 运行时、cuDNN 是正确的,因为我使用了documantion进行了检查。我使用了 Docker,所以我确定他们的版本。TF.Session 设置为允许 gpu 增长。
奇怪的是,只使用 Flair 有效,只使用 TensorFlow(没有导入 Flair)效果很好。版本出现问题:
nlp - 云 TPU 上的 Flair NLP 包
是否可以在 Google Cloud TPU 上使用“flair”nlp 库?我正在尝试使用 Google Colab 运行时 TPU 并遇到一些错误。
python - 有没有办法根据使用 pushshift API 的天赋来获取提交或 subreddit?
我查看了文档,但在不使用 BigQuery 的情况下,我无法找到如何在给定时间段内根据特定 subreddit 的天赋来检索提交。只需使用 API。
java - 我如何将 Fair NER 标记器与 DKpro-core 一起使用
DKpro 中已经有很多标记器,例如斯坦福、opennlp 等,但我想知道如何在 DKpro-core 中实现 Fair NER 标记器?
python - 在使用 Pycharm 的 windows 中使用 pipenv 安装 flair 和 pytorch 时发生错误
我在安装 python 包flair
和pytorch
via时遇到问题,pipenv
并且还不能解决这个问题。由于我正在尝试使用Pipfile + Pipfile.lock
而不是requirements.txt
这对我的 python git 存储库进行版本控制,因此目前是不可能的:
pipenv install flair
ERROR: Could not find a version that satisfies the requirement torch>=1.1.0 (from flair->-r c:\users\user.name\appdata\local\temp\pipenv-plyx3uwp-requirements\pipenv-xh_afa_r-requirement.txt (line 1)) (from versions: 0.1.2, 0.1.2.post1, 0.1.2.post2) ERROR: No matching distribution found for torch>=1.1.0 (from flair->-r c:\users\user.name\appdata\local\temp\pipenv-plyx3uwp-requirements\pipenv-xh_afa_r-requirement.txt (line 1)) Installation Failed
我尝试了这些安装变体torchvision
:
pipenv install torchvision
安装torchvision
应该选择最新的火炬版本
pipenv install torch==1.3
安装手电筒
pipenv install https://download.pytorch.org/whl/cu92/torch-0.4.1-cp37-cp37m-win_amd64.whl
安装 Torch 的替代方法(这里有更多二进制文件: https ://pytorch.org/get-started/previous-versions/#windows-binaries )
pipenv install git+https://github.com/pytorch/vision#egg=torchvision
另一种替代方式,
pipenv install torchvision
安装 torchvision 的唯一方法是没有它的依赖包:
pipenv run pip install --no-deps torchvision
但这并没有解决通过 pipenv 安装 flair 的问题,因为需要依赖项。