Skip to content
#

Artificial Intelligence

The branch of computer science dealing with the reproduction, or mimicking of human-level intelligence, self-awareness, knowledge, conscience, and thought in computer programs.

Here are 6,032 public repositories matching this topic...

lingvisa
lingvisa commented Mar 29, 2020

In doc.pyx' s line 590:

 if not self.is_parsed:
            raise ValueError(Errors.E029)

I can still do a good job of chunking by tokenization and pos tagging only, without the full parse. Also in some languages parse isn't available. This will leave more flexibilities to users. I can comment out this in my copy of spacy, but when I update spacy to a new release, I have to chang

cclauss
cclauss commented Nov 10, 2018

$ flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics

./qanet/squad_helper.py:166:22: F821 undefined name 'transfer'
    encoder_states = transfer.elmo_tensor_from_chars(
                     ^
./qanet/squad_helper.py:181:22: F821 undefined name 'transfer'
    encoder_states = transfer.elmo_tensor_from_sentences(
                     ^

Should these

Zauberfisch
Zauberfisch commented Feb 19, 2019

Documentation Is:

  • Missing
  • Needed
  • Confusing
  • Not Sure?

Explanation

Right now it seems unclear to me what amount of hardware will be required to run an instance of leon without actually running it.
The documentation should provide some suggestions of scaling for different use cases.

Proposal

  • add minimum hardware requirements
  • add recommendations fo
tujinshu
tujinshu commented Dec 3, 2019

2019/12/02 和Yi Wang沟通交流考虑SQLFLOW可以支持如下的特性

一、基础功能:好用的工具需要一个更加简易友好的界面,让业务开发/分析更加简单
1)设计分析类工具,提供自动联想输入、快速语法、常见语义错误,提升用户体验
应用场景:提供IDE的自动联想功能,提高开发效率;语法和基本语义提前检查,避免提交到后台,执行较长时间后报错
2)大数据量时时间较长,建议提供任务(job)管理、允许用户了解数据执行的状态、监控进度、提供动态调试、watch能力,方便用户感知和调优
应用场景:耗时任务可以快速了解整体进度,提供一些中间的过程信息、耗时等,方便用户进行调优,优化开发
3) 安全权限、用户管理、
应用场景:增加新的数据分析人员、用户权

pwnagotchi
TheVladdestVlad
TheVladdestVlad commented Oct 20, 2019

Please specify in the the Configuration section of the documentation that Windows users need to remove the SSH entry pertaining to 10.0.0.2 from C:\Users\CurrentUser.ssh\known_hosts every time they update pwnagotchi, since the newly generated keys won't match the one in the known_hosts file.

zhichao-li
zhichao-li commented Sep 20, 2017

We should check if the shape is match while setting weights for model.
Currently the violation is swallow silently if we set a Tensor(4, 5) in to a model with weights Tensor(2, 10)

  def setWeightsBias(newWeights: Array[Tensor[T]])

    val tensor = Tensor[Float](2, 10).rand()
    val tensor2 = Tensor[Float](4, 5).rand()
    tensor2.copy(tensor)

  private[tensor] def copy[@spec
metaflow
GadgetSteve
GadgetSteve commented Dec 26, 2019

Hi it is great that you have Open Sourced MetaFlow but there is no mention of the actual license at https://docs.metaflow.org/introduction/what-is-metaflow (or the search engine doesn't find it).

At a great many companies before you can use any Open Source components or workflows you have to get approval from the Lawyers and they tend to be much more comfortable if they can see the license in

pinankg
pinankg commented May 24, 2019

Hello Vespa Team,
Can you please consider support a properties-file which is available during run-time along with the model ? So some meta-data e.g. threshold/label, etc can be associated with the model.
This is for the stateless evaluation of the models like (XGBoost, TensorFlow, Onnx, etc) which is supported in vespa.

Thank you,
Pinank

You can’t perform that action at this time.