问题标签 [turi-create]
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.
ios - 使用 Turicreate 进行 iOS 人脸识别
我用 Vision Framework 实现了人脸识别。
该模型使用 turicreate 进行训练。
https://github.com/apple/turicreate
但准确度并不好。
我正在使用同一个人的 200 张面部图像来训练模型,并使用 turicreate 在相机视图中识别他。
但对于所有面孔,置信度都在 90% 以上。
你对我有什么建议吗?
谢谢
python - Importing Turicreate gives me error No module named 'turicreate.cython.cy_unity'
While importing turicreate i get below error in jupyter notebook:
No module named 'turicreate.cython.cy_unity'
I have tried uninstalling and re-installing the package. Not sure what i am doing wrong here. I am using windows 10 64 bit machine and Python 3.7.
Please help. Thanks
amazon-web-services - 是否可以让 turicreate 在 AWS 实例上运行?
我在我的 Ubuntu 操作系统上运行没有任何问题turicreate
- 但是在部署到 AWS EB 实例(Python 3.6)时,我得到了错误:ImportError: libblas.so.3: cannot open shared object file: No such file or directory
.
这显然是未完成此处找到的设置说明的问题。
因此,我尝试将我的更新/.ebextensions/setup.config
为类似于以下内容以尝试更新环境以便turicreate
可以运行。
我需要使用yum
,因为 AWS 实例没有apt-get
. 然而,这有其自身的错误:Activity execution failed, because: Yum does not have python-setuptools available for installation (ElasticBeanstalk::ExternalInvocationError)
和Activity execution failed, because: Yum does not have libstdc++6 available for installation (ElasticBeanstalk::ExternalInvocationError)
.
如果我ssh进入环境...
这里发生了什么?如何配置 EB 实例以运行turicreate
?
python - 为什么 Google Colab shell 命令不起作用?
重现步骤:
在 GPU 上打开新的 Colab 笔记本
我收到以下错误:
不幸的是,这对我来说毫无意义,为什么会发生这种情况。有什么线索吗?我还将在 turicreate 项目中作为潜在问题发布。
编辑:
正如评论中所建议的那样,它看起来确实覆盖了我的语言环境。在导入之前我可以做:
但是在我得到之后:
虽然现在我已经失去了对 shell 命令的使用,但我不确定如何重置语言环境?
python - “过滤器”对象在评估模型时没有“附加”属性
我正在尝试制作一个 MLModel 以在我的应用程序上使用它,并且我使用 python 来完成它,因为我想用 evalute() func 获得confusion_matrix
这是我的python代码:
我之前测试了所有这些并且它们运行良好,只是当我运行时 model.evaluate(test_data)
出现错误
我的错误是:
我在macosx highSierra(10.13.6)上运行它(因为我的macbook是2011,我无法将它更新到10.14),python 3.6(带有conda),我通过pip安装了turicreate。
python-3.x - 在 AWS SageMaker Notebook 上使用 Turi 创建带有 CUDA 8.0 的对象检测
正如标题所说,我正在尝试在带有 Python 3.6(conda_amazonei_mxnet_p36
环境)的 AWS SageMaker Notebook 实例上使用 Turi Create。尽管默认安装了 CUDA 10.0,但 CUDA 8.0 也已预先安装,可以使用笔记本中的以下命令进行选择:
我已经使用nvcc --version
并且还验证了此安装:
接下来,在我的笔记本中,我为 CUDA 8.0 安装了 Turi Create 和正确版本的 mxnet:
然后,我准备图像并尝试创建模型:
运行时输出以下内容tc.object_detector.create
有趣的是,如果我将 CUDA 10.0 与 Turi Create 5.6 一起使用:
笔记本仍然失败,但如果我立即卸载turicreate
并mxnet-cu100
再次尝试 CUDA 8.0 的上述步骤,它可以正常工作。
上次它工作时,我尝试过pip freeze > requirements.txt
,然后pip install -r requirements.txt
在重新启动实例后,但我仍然遇到与上述相同的错误(除非我先尝试使用 CUDA 10.0)。这里发生了什么?任何建议表示赞赏。
python - anaconda 安装 turicreate 失败
当我尝试在我的 python 文件中导入 turicreate 时出现 modulenotfounderror。我已经安装了 Anaconda 并使用以下语句来安装 turicreate:
安装后出现以下错误:
环境:
Macos:10.13.6 python:3.7.3 conda:4.1.10
一些代码:
swift - Apple turicreate 总是返回相同的标签
我正在试驾 turicreate,以解决分类问题,其中数据由 10-uples(q、w、e、r、t、y、u、i、o、p、label)组成,其中 'q. .p' 是一个字符序列(目前有 2 种类型),+,-,如下所示:
'e' 只是一个填充字符,因此向量的固定长度为 10。
注意:数据明显倾向于一个标签(90%),数据集很小,< 100 个点。
我使用 Apple 的 vanilla 脚本来准备和处理数据(来自这里):
注意:模型过度拟合整个数据(目前)。收敛好像没问题
并且分类按预期工作(尽管过度拟合)但是,当我在我的代码中使用 mlmodel 时,无论如何,它总是返回相同的标签,这里是“type2”。这里的规则是 type1 = 只有“+”和“e”,type2 = 所有其他组合。
我尝试使用 text_classifier,结果远没有那么准确......
我不知道我做错了什么......
以防万一有人想检查一个小数据集,这里是原始数据。
还有快速代码:
python 代码保存了一个 MyModel.mlmodel 文件,您可以将其添加到任何 Xcode 项目并使用上面的代码。
注意:python 部分工作正常,例如:
被标记为预期。但是当使用 swift 代码时,标签显示为 type2。这件事让我发疯了(是的,我检查了 mlmodel 是否会在我创建新版本时替换旧版本,以及在 Xcode 中)。
python - 无法在 anaconda 中安装 turicreate
我正在尝试在 anaconda 中安装 turicreate,但我无法做到。我试图运行一个命令
conda install -c derickl turicreate
但 promt 给出了一个错误
解决环境:失败的PackagesNotFoundError:当前渠道不提供以下软件包:-turicreate
我还尝试运行其他一些命令,但它们都无法安装 turicreate.... 有人可以帮忙吗?
python - 如何在 Windows 10 上使用 anadonda 安装 turicreate
我正在尝试使用 anaconda 和 python 3.7 和 pip 版本 19.3 在 Windows 10 上安装 Turicreate
在 anaconda 虚拟环境中。这给出了以下错误:
请帮我解决问题。