text1 stringlengths 2 269k | text2 stringlengths 2 242k | label int64 0 1 |
|---|---|---|
### Feature request
Whisper speech recognition without conditioning on previous text.
As in
https://github.com/openai/whisper/blob/7858aa9c08d98f75575035ecd6481f462d66ca27/whisper/transcribe.py#L278
### Motivation
Whisper implementation is great however conditioning the decoding on previous
text can cause signif... |
Hello,
I tried to import this:
`from transformers import AdamW, get_linear_schedule_with_warmup`
but got error : model not found
but when i did this, it worked:
from transformers import AdamW
from transformers import WarmupLinearSchedule as get_linear_schedule_with_warmup
however when ... | 0 |
### Bug summary
I put a `torch.Tensor` in `matplotlib.pyplot.hist()` , but it draw a wrong
graphic and take a long time.
Although transform to numpy, the function work well. But all the others
function I used are work well on tensor. So I think its a bug.
### Code for reproduction
import matplotlib... |
### Bug report
**Bug summary**
Generating `np.random.randn(1000)` values, visualizing them with `plt.hist()`.
Works fine with Numpy.
When I replace Numpy with tensorflow.experimental.numpy, Matplotlib 3.3.4
fails to display the histogram correctly. Matplotlib 3.2.2 works fine.
**Code for reproduction**
... | 1 |
### System info
* Playwright Version: [v1.31.2]
* Operating System: [Windows VM]
* Browser: [ONLY in Chromium]
* Other info: It used to work fine until updated to v1.31 and now even if I revert back to previous versions still getting the same error (the error only happens in the Windows VM , not in my local ... |
### System info
* Playwright Version: v1.32.2
* Operating System: Windows 11
* Browser: All
* Node.js 18.12.0
* PowerShell 7.3.3
### Source code
* I provided exact source code that allows reproducing the issue locally.
**Link to the GitHub repository with the repro**
https://github.com/tadashi-aikawa... | 0 |
ERROR: type should be string, got "\n\nhttps://github.com/kubernetes/kubernetes/blob/master/pkg/kubelet/container_bridge.go#L122-L143 \ncontainer_bridge.go assumes that the virtual IP of services & pods will be in\nthe `10.` space. \nI propose there is no reason to make this assumption.\n\nAs outlined in #15932, cluster admins may need to deploy to hosts in which\n`10.` is reserved for the nodes. In such a case, Kubelets must support an\nalternative range.\n\n" |
Today kubelet sets up an iptables MASQUERADE rule for any traffic destined for
anything except 10.0.0.0/8. This is close, but not even correct on GCE, and
certainly not right elsewhere.
First GCE. We probably want something like:
iptables -t nat -N KUBE-IPMASQ
iptables -t nat -A KUBE-IPMASQ -d 10.... | 1 |
.valid would apply the normal ("successful") input/textarea/select styles when
applied to those input types while within a .control-group.error.
The use case for this is a .control-group section with a "multi-part" input
(ex: time entry with hour and minute fields). If minutes was valid, but hour
was not the .contro... |
It would be useful to provide column push and pull classes for all three
different grids.
This means that `.col-push-*` and `.col-pull-*` only affect the mobile grid
and are joined by `.col-push-sm-*`, `.col-pull-sm-*` and `.col-push-lg-*`,
`.col-pull-lg-*` to control the column order differently depending on the gr... | 0 |
### Is there an existing issue for this?
* I have searched the existing issues
### This issue exists in the latest npm version
* I am using the latest npm
### Current Behavior
Currently, my package.json specifies `"typescript": "^5.0.2"`. When I change
it to say `"typescript": "^5.0.3"`, npm 9 spins for 4:28... |
### Is there an existing issue for this?
* I have searched the existing issues
### This issue exists in the latest npm version
* I am using the latest npm
### Current Behavior
When running `npm install` it will sometimes hang at a random point. When it
does this, it is stuck forever. CTRL+C will do nothing t... | 1 |
I love the Acrylic effect in the new terminal. Really gives it a modern feel.
But at the moment, whenever you focus on a different program, i.e click away
from the terminal, it loses the Acrylic effect and goes to a solid color. I
have two monitors so most of the time, I have my terminal visible on the
second monitor... |
Using Windows Store version 0.5.2762.0
Zipped DMP file attached.
conhost.exe.21732.dmp.zip
| 0 |
* I have searched the issues of this repository and believe that this is not a duplicate.
* I have checked the FAQ of this repository and believe that this is not a duplicate.
### Environment
* Dubbo version: 2.7.0
* Operating System version: Mac OS
* Java version: 1.8
### Steps to reproduce this issue
... |
* I have searched the issues of this repository and believe that this is not a duplicate.
* I have checked the FAQ of this repository and believe that this is not a duplicate.
https://github.com/apache/incubator-
dubbo/blob/6e4ff91dfca4395a8d1b180f40f632e97acf779d/dubbo-monitor/dubbo-
monitor-
api/src/main/java/... | 0 |
I hope this is not a dupe, I was really surprised by this bug because - being
so simple in nature - it appears it should have been caught by your tests (or
at least stumbled upon by other people), hence there is a slight probability
that I misunderstood something or that the compiler isn't capable to do the
necessary... |
The compiler should issue an error when code uses values before they could
possibly be initialized.
// Error, 'Derived' declaration must be after 'Base'
class Derived extends Base { }
class Base { }
| 1 |
_Original tickethttp://projects.scipy.org/numpy/ticket/1044 on 2009-03-09 by
@pv, assigned to unknown._
\--- Continuation of #1440.
Ufuncs return array scalars for 0D array input:
>>> import numpy as np
>>> type(np.conjugate(np.array(1+2j)))
<type 'numpy.complex128'>
>>> type(np.sum(np.a... |
I have a unit test failing on `np.divide.accumulate` with numpy 1.15.0
compiled with the Intel compiler. The same code is fine with a local build of
GCC.
Perhaps this is related to ENH: umath: don't make temporary copies for in-
place accumulation (#10665) where @juliantaylor fixed
`numpy/core/src/umath/loops.c.src`... | 0 |
With this issue I would like to track the efforts in integrating the
cudnn library within tensorflow.
As of June 17th 2016 doing a manual grep on the repository gives these
functions as being mapped from cudnn to the stream executor,
From chapter 4 of the cudnn User Guide version 5.0 (April 2016):
* cudnnGet... | 1 | |
### Bug report
**Bug summary**
If there are multiple curves with the same label in a figure/subplot, only the
last one of them can be selected in the _Figure options_ window under the
_Curves_ tab. In the legend however, they appear as they should.
**Code for reproduction**
import matplotlib.pyplot... |
### Bug report
**Bug summary**
**Code for reproduction**
# Paste your code here
#
#
**Actual outcome**
# If applicable, paste the console output here
#
#
**Expected outcome**
**Matplotlib version**
* Operating system:
* Matplotlib version:
* Matplotlib ba... | 0 |
##### ISSUE TYPE
* Bug Report
##### COMPONENT NAME
Templating
##### ANSIBLE VERSION
1.8.2
##### CONFIGURATION
##### OS / ENVIRONMENT
N/A (but rhel7)
##### SUMMARY
When entering passwords for login/sudo, they are parsed by the templater
instead of being used literally. This creates unexp... |
##### ISSUE TYPE
* Documentation Report
##### COMPONENT NAME
https://docs.ansible.com/ansible/latest/dev_guide/developing_modules_documenting.html#return-
block
##### ANSIBLE VERSION
N/A since it's web documentation
##### CONFIGURATION
N/A
##### OS / ENVIRONMENT
N/A
##### SUMMARY
Documentation has the de... | 0 |
It would be great if Bootstraps javascripts would be compatible with Zepto. As
Zepto is almost API compatible with jquery this shouldn't be that hard.
| 0 | |
please add 'raw' to modules allowed to have duplicate parameters.
ansible/lib/ansible/runner/__init__.py
Line 444 in be4dbe7
| is_shell_module = self.module_name in ('command', 'shell')
---|---
- is_shell_module = self.module_name in ('command', 'shell')
+ is_shell_module = self.module_nam... |
##### Issue Type:
Feature Idea
##### Ansible Version:
1.6.6
##### Environment:
N/A
##### Summary:
I developed a lookup plugin which is for pulling secret keys from the cloud
server. However, when I use `with_secret` statement like this
- name: foo
bar: secret={{ item }}
with_secret: ... | 0 |
* Electron Version: 3.0 Beta 4
* Operating System (Platform and Version): Windows10, 8 (x86 and x64)
* Last known working Electron version: 2.x
**Expected Behavior**
PDF should be displayed.
**Actual behavior**
"Save As.." dialog for download appears and pdf will not be displayed, even
when downloaded.
*... |
* Electron version: 0.36.7
* Operating system: OS X
My electron app needs to make an HTTP request to a service that returns
malformed headers:
$ curl -IS 'http://192.168.0.1/getdeviceinfo/info.bin'
HTTP/1.1 200 OK
Date: Wed, 02 Dec 2015 16:42:45 GMT
Server: nostradamus 1.9.5
Connec... | 0 |
Fixing issue #9691 revealed a deeper problem with the QuadPrefixTree's memory
usage. At 1m precision the example shape in
https://gist.github.com/nknize/abbcb87f091b891f85e1 consumes more than 1GB of
memory. This is initially alleviated by using 2 bit encoded quads (instead of
1byte) but only delays the problem. More... |
**Elasticsearch version** :
2.3.4
**JVM version** :
1.8
# some gc log
[monitor.jvm ] [Powerpax] [gc][young][132059][21130] duration [756ms],
collections [1]/[1.4s], total [756ms]/[10.3m], memory
[26.7gb]->[24.1gb]/[29.6gb
], all_pools {[young] [2.7gb]->[3.2mb]/[2.7gb]}{[survivor]
[20.6mb]->[240.8mb]/[357.7m... | 0 |
Apparently there isn't any narrative documentations for some non-clustering
metrics as it was pointed in #1507.
|
There is no user guide on the classification / regression metrics....
| 1 |
## The Problem
VSCode can nicely handle comments in JSON files. However, the JSON
specification does **not** allow comments in JSON files. Therefore most JSON
parsers fail when JSON files contain comments. E.g. `package.json` fails, and
even the typescript compiler fails on tsconfig.json files that include
comments.... |
I'm running VSCode in a corporate network (Active Directory), when I install
VSCode I'm asked for an admin password, after the installation normal users
sessions don't have the VSCode context menu options, only the admin account
has that menu.
How can I add the context menu for all users?
| 0 |
In order to have nice looking paths without hash or bang, I am using history
mode:
var router = new VueRouter({
routes: routes,
mode: 'history'
})
However, when I refresh a page, I get a 404 error. If I remove mode:
'history', I can go directly to urls at a path and refresh pages in my
browser.
Can I remove ... |
### Vue.js version
2.0.2
### Reproduction Link
When I deployment my vue app to IIS, refresh page in SPA component, I go 404
error
| 1 |
#### Challenge Name
https://www.freecodecamp.com/challenges/target-the-children-of-an-element-
using-
jquery#?solution=%0Afccss%0A%20%20%24(document).ready(function()%20%7B%0A%20%20%20%20%24(%22%23target1%22).css(%22color%22%2C%20%22red%22)%3B%0A%20%20%20%20%24(%22%23target1%22).prop(%22disabled%22%2C%20true)%3B%0A%... |
Challenge Waypoint: Clone an Element Using jQuery has an issue.
User Agent is: `Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5)
AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.73 Safari/537.36`.
Please describe how to reproduce this issue, and include links to screenshots
if possible.
## Issue
I believe... | 1 |
> Issue originally made by @dfilatov
### Bug information
* **Babel version:** 6.3.13
* **Node version:** 4.2.1
* **npm version:** 2.14.7
### Options
--presets es2015
### Input code
export * from './client/mounter';
### Description
Given input code will be transforme... |
flow v0.32.0:
> New syntax for exact object types: use {| and |} instead of { and }. Where
> {x: string} contains at least the property x, {| x: string |} contains ONLY
> the property x.
| 0 |
I have a form some fields are not validated based on the validation groups.
The validation works as expected but the error message is always added to the
wrong field. It seems to just use which ever property is last in the
validation.yml file.
I believe my use case is valid. It worked fine in 2.4 but when testing 2.... |
Hello,
When using Validator 2.5 to validate an array of scalars, the `propertyPath`
of the returned violations has really strange values.
Consider the following script:
<?php
require 'vendor/autoload.php';
use Symfony\Component\Validator\Constraints;
use Symfony\Component\Valida... | 1 |
NMF in scikit-learn overview :
**Current implementation (code):**
\- loss = squared (aka Frobenius norm)
\- method = projected gradient
\- regularization = trick to enforce sparseness or low error with beta / eta
**#1348 (or in gist):**
\- loss = (generalized) Kullback-Leibler divergence (aka I-divergence) ... |
We should fix the remaining sphinx warnings here:
https://circleci.com/gh/scikit-learn/scikit-learn/1629
and then make circle IO error if there are any warnings (grep'ing for
`WARNINGS` I guess?).
This way we immediately see if someone broke anything in the docs.
| 0 |
**Christian Nelson** opened **SPR-6118** and commented
Spring JDBC 3.0.0.M4 maven pom includes derby and derby.client - these should
be optional dependencies.
Here is the relevant output from mvn dependency:tree...
[INFO] +- org.springframework:spring-orm:jar:3.0.0.M4:compile
[INFO] | +- org.slf4j:slf4j-jdk14:j... |
**Keith Garry Boyce** opened **SPR-1412** and commented
I have a situation when I need access to the portlet name in the controller to
then in turn look up data related to that data in db. I don't want a separate
controller config for each portlet s it would seem if framework detected that
I implement and interface ... | 0 |
In Polish language exists letter 'ś', written by pressing rightAlt+s. In atom
this combination brings up the 'Spec suite' window.
Worth noticing is fact, that in settings shortcut responsible for this is
**ctrl** -alt-s, yet rightAlt+s alone brings up the window too.
I tried adding
'body':
'r... |
Original issue: atom/atom#1625
* * *
Use https://atom.io/packages/keyboard-localization until this issue gets fixed
(should be in the Blink upstream).
| 1 |
**I'm submitting a ...** (check one with "x")
[x] bug report => search github for a similar issue or PR before submitting
[ ] feature request
[ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question
... | 0 | |
* VSCode Version: 1.1.0
* OS Version: OS X 10.11.4
Steps to Reproduce:
1. Create a new text file `test.js`
2. Set the content to the following:
let x = true ? '' : `${1}`
console.log('still part of the template!')
VS Code fails to parse the opening `of the template string at the end of t... |
_From@garthk on April 8, 2016 4:30_
* VSCode Version: `Version 0.10.10 (0.10.10)` or `Version 0.10.14-insider (0.10.14-insider) 17fa1cbb49e3c5edd5868f304a64115fcc7c9c2c`
* OS Version: OS X `10.11.4 (15E65)`
* `javascript.validate.enable` set either `true` or `false`
Steps to Reproduce:
1. Open a new Code –... | 1 |
ECMAScript 2018 was finalized, what do we need to enable these features by
default for `preset-env`?
SyntaxError: /path/to/file.js:
Support for the experimental syntax 'objectRestSpread' isn't currently enabled (11:9):
10 | {
> 11 | ...example,
| ^
... |
Hi there,
a simple module just reexport a module fails.
export * from './some-module';
My .babelrc looks like this:
{
"presets": ["es2015", "stage-1"],
"plugins": ["transform-async-to-generator"]
}
This should contain the required export-extensions transform.
... | 0 |
# coding: utf-8
import pandas as pd
import numpy as np
frame = pd.read_csv("table.csv", engine="python", parse_dates=['since'])
print frame
d = pd.pivot_table(frame, index=pd.TimeGrouper(key='since', freq='1d'), values=["value"], columns=['id'], aggfunc=np.sum, fill_value=0)
... |
The following code seems to raise an error, since the result object does not
make sense (well, at least to me):
In [61]: import datetime
In [62]: import pandas as pd
In [63]: df = pd.DataFrame.from_records ( [[datetime.datetime(2014,9,10),1234,"start"],
[datetime.datetime(2013,1... | 1 |
* **Electron Version:**
* v5.0.0-beta.5
* **Operating System:**
* Windows 10 Pro.
* **Last Known Working Electron version:** :
* 4.x (latest)
### Expected Behavior
When I perfrom a GET-request using `http` or `https` built-in library, I
expect the app to keep running after the request completes.
... |
* **Electron Version** :
* 5.0.0-beta (all)
* **Operating System** :
* Ubuntu 18.10, Linux 4.18, x64
* **Last known working Electron version** (if applicable):
* 4.0.5
### Expected Behavior
Google API should work as it they are meant to.
### Actual behavior
Any Google API calls may crash rend... | 1 |
* I have searched the issues of this repository and believe that this is not a duplicate.
* I have checked the FAQ of this repository and believe that this is not a duplicate.
### Environment
* Dubbo version: 2.6.1
* Operating System version: Linux version 3.10.0-693.el7.x86_64 (builder@kbuilder.dev.centos.... |
* I have searched the issues of this repository and believe that this is not a duplicate.
* I have checked the FAQ of this repository and believe that this is not a duplicate.
### Environment
* Dubbo version: 2.7.4.1
* Java version: 1.8
### Actual Result
dubbo/dubbo-
common/src/main/java/org/apache/dubbo/... | 0 |
**Bruno Hansen** opened **SPR-9334** and commented
New support for Jackson 2.X because of changing of packages:
Jackson reference:
http://wiki.fasterxml.com/JacksonRelease20#Changing_Java_packages
Spring forum reference:
http://forum.springsource.org/showthread.php?125213-Support-for-
Jackson-2-0&p=408474#post... |
**Xun Wang** opened **SPR-9302** and commented
Due to recent release of Jackson 2.0, hope it is on the road map to give
Spring user the option to use Jackson 2.0 for Jackson related json functions.
Jackson 2.x has different package name for its classes to let code with 1.x be
able to coexist. Maybe a new set of the ... | 1 |
All of the below testing was done with Fiddler. User and password proxy auth
in Fiddler was enabled the default way by doing Rules->Require Proxy
Authentication which requires user be '1' and password be '1'. The code below
does not contain the https section of the proxy as it's largely identical.
If a proxy is set ... |
When subscribing to a Server Sent Events endpoint, I notice an error given the
processing of a heartbeat. Heartbeats in SSE can be sent as an empty line.
Consider the following SSE reply for chunked transfer encoding:
00000000 48 54 54 50 2f 31 2e 31 20 32 30 30 20 4f 4b 0d HTTP/1.1 200 OK.
... | 0 |
I've created the `_app.js` file exactly as the example in the documentation,
and tried to build it, but i got a big error.
This is my _app.js
import App, { Container } from "next/app";
import React from "react";
import { CSSTransition, TransitionGroup } from "react-transition-group";
impor... |
I'm trying to integrate Flow with my current next project I notice there is a
issue with
getInitialProps method. Flow complains:

I'm a little bit confused do I have to s... | 0 |

Anytime I click inside the code editor, a "copy / paste" popup appears,
obscuring the code.
How do I get rid of it?
|
Hey guys,
I just noticed a new feature in the code editor today. Its great to have for
copying and pasting code to ask questions, but it can get in the way if I am
just doing regular copy and pasting.
Would a better solution to this be to hold down shift + highlight the section
as a way to access the menu?
What do... | 1 |
_From@alexanderby on November 19, 2015 9:35_
When formatting JavaScript or TypeScript, comments placed between parts of
multi-line expressions are placed wrong.
Expected to look like
doStuff()
.then()
// Comment
.then();
but actually is
doStuff()
.the... |
To reproduce:
declare var _: any;
function chainer() {
_.chain()
// something here
.then()
// something here
.then()
// something here
.then();
}
Format the code. You get
declare var _: any;... | 1 |
`<input type='number' defaultValue={someValue}/>` does not work correctly in
Chrome. When user type in a decimal point `.`, the point will disappear and
the caret will be be reset to the beginning of the input. If you keep typing
in `.` twice, the value of input will disappear. However, if a input has no
defaultValue... |
This appears to have been introduced in a new Chrome version, but I can't find
any reference to where.
Affected/Tested Browsers (OS X):
* Chrome 51.0.2704.106 (64-bit)
* Opera 39.0.2256.15
Unaffected Browsers:
* Safari 9.1
* Firefox 49
Backspacing in an input element with `value` or `defaultValue` set ca... | 1 |
##### System information (version)
* OpenCV => 4.1.0
* Operating System / Platform => Mac OS Mojave 10.14
* Compiler => n/a python 3.7
##### Detailed description
https://docs.opencv.org/4.1.0/dd/dd7/tutorial_morph_lines_detection.html
python version of tutorial throws the following error:
File "ExtractHor... |
##### System information (version)
* OpenCV => :3.4
* Operating System / Platform => :Windows 64 Bit / python
* Compiler => :(python 3.6)
##### Detailed description
OpenCV writes a hdr file with header starting with "#?RGBE". But many programs
suppose "#?RADIANCE" and don't work on files with "#?RGBE". Would... | 0 |
I've been messing with it all night to see if I can isolate the problem.
What I've come up with is it seems to fire partially, but the function call
doesn't bubble up to any of the Table components.
In `table-row.js` the following code runs when I click a TableRowColumn:
(lines 179 to 183)
_onCellC... |
I'm working on implementing sorting functionality and cannot for the life of
me get `onClick` to fire for `<TableHeaderColumn>`. I see that there is an
onClick prop in the docs, but no luck.
<Table
fixedHeader={true}
>
<TableHeader adjustForCheckbox={false} displaySe... | 1 |
#### Code Sample, a copy-pastable example if possible
import pandas as pd
import numpy as np
idx0 = range(2)
idx1 = np.repeat(range(2), 2)
midx = pd.MultiIndex(
levels=[idx0, idx1],
labels=[
np.repeat(range(len(idx0)), len(idx1)),
np.tile(ran... |
I have an odd issue where if I specify the axis in concat it throws the
following error:
InvalidIndexError: Reindexing only valid with uniquely valued Index objects
Pandas version: 0.16.0
OS: Ubuntu 14.04 LTS x64
Here's the pickle of the data structure causing this (it's rather large, ~60
megs, but it's my real ... | 0 |
When using `Deno.listen()` without passing in the parameter `hostname`, it
should listen to both ipv6 and ipv4 by default.
I found that currently it only listens on ipv4.
Deno 1.21.1
|
After upgrading to version 1.14 this error happened when using `deno bundle`
Example test.ts code:
import { Application } from "https://deno.land/x/oak@v9.0.0/mod.ts";
const app = new Application();
app.use((ctx) => {
ctx.response.body = "Hello World!";
});
await a... | 0 |
* Electron version: 0.37.2 + 0.36.12
* Operating system: OS X 10.11.4 (15E65)
The process doesn't seem to exit like `node` does. I've reduced it to
something `babel-register` is doing. I'm not sure if this is a bug within
babel or electron, so feel free to close this if it's a bug with babel. It's
the same behav... |
## Description
Our project is using `child_process#fork()` to run npm commands, but it turns
out taking much longer time than normal.
I haven't tested if this problem occurs when running other scripts, but as
shown in the test below, running the same code in pure `node` behaves
normally.
## Reproduction
1. In ... | 1 |
Long pages such as in regex have many examples but it's difficult to know at a
glance what the documentation contains without scanning the entire document.
Having a table of contents would help a lot with this.
Here is a list of links to different TOC styles from various places for ways
it could be done:
* Python... |
Here's a minimal code example that reproduces the error:
#![crate_name = "test"]
#![crate_type = "dylib"]
use std::ops::Div;
pub struct Test
{
pub test:i32,
}
impl Div<Test,Test> for Test { fn div( &self, v:&Test ) -> Test { Test{ test:self.test / v.test }... | 0 |
### System info
* Playwright Version: 1.31.2
* Operating System: Ubuntu 22.04
* Browser: WebKit
### Source code
import { test } from '@playwright/test';
test('getByRole behaviour', async ({ page }) => {
await page.setContent(`
<html>
<body>
<my-dialo... |
### System info
* Playwright Version: [v1.XX]
* Operating System: [All, Windows 11, Ubuntu 20, macOS 13.2, etc.]
* Browser: [All, Chromium, Firefox, WebKit]
* Other info:
### Source code
* I provided exact source code that allows reproducing the issue locally.
**Link to the GitHub repository with the re... | 0 |
The C function `malloc()` returns NULL (i.e. 0) if it fails to allocate
memory. The return value of a `malloc()` call must be checked for this value
before attempting to use the result. Here are places in the scipy code where
this check is not made. If any of these calls fails, the result is likely to
be a segmentati... |
My issue is about the error LinAlgError: Schur form not found. Possibly ill-
conditioned raised when I use the following code. The problem is that it only
happens in the first execution of the script, then it disappears. It also
happens when I try to use `scipy.linalg.expm` and `scipy.linalg.logm` as it
has to do wit... | 0 |
##### System information (version)
* OpenCV => 4.1.0-dev
* Operating System / Platform => Ubuntu x64 bionic 18.04.1
* Compiler => gcc 8.0.1
**Hello, There is a bug with dot product`dot (InputArray m) const` when used
in c++ implementation, But strangely this bug is not present in python
implementation.**
###... |
##### System information (version)
* OpenCV => 4.0.1, master branch `e2dbf05`
* Operating System / Platform => Windows 64 Bit
* Compiler => Visual Studio 2017
##### Detailed description
The compilation of the DNN module fails with several error C2398, e.g. due to
the narrowing at line 106 in op_inf_engine.cp... | 0 |
From the master, whenever I try to open a shell into a pod running on a remote
node, kubectl would completely hang.
Below a verbose trace.
Can someone point me to where else I can look?
I know kubectl --> master --> proxy --> pod/container.
Where would this error come from.
This has always worked prior to up... |
I have a setup using .AttachToContainer. After upgrading to Docker 1.10-rc2
I'm getting an error `Content-Type specified (plain/text) must be
'application/json'`.
Why am I getting this?
Any help would be great!
/beetree
| 1 |
Looking at core.ops. _comp_method_SERIES and whether we can have the datetime
and timedelta cases defer to Index subclass implementations, a couple
questions come up:
https://github.com/pandas-dev/pandas/blob/master/pandas/core/ops.py#L744
def na_op(x, y):
# dispatch to the categorical... |
#!/bin/env python
"""
Example bug in derived Pandas Series.
__finalized__ is not called in arithmetic binary operators, but it is in in some booleans cases.
>>> m = MySeries([1, 2, 3], name='test')
>>> m.x = 42
>>> n=m[:2]
>>> n
0 1
1 2
dtype: int64... | 1 |
Night Light got crashed too.
|
currently to add / remove items in shell, we have to kick explorer. After this
happens, PT can then enable / disable for them showing up.
We should see how we can do some alternative methods
| 1 |
_Original tickethttp://projects.scipy.org/numpy/ticket/859 on 2008-07-24 by
@cournape, assigned to @cournape._
Detected under valgrind, and looking at the code, it looks like there is a
problem, but I don't know enough about that code to solve it quickly:
Tests compress2d==5148==
==5148== Conditi... |
_Original tickethttp://projects.scipy.org/numpy/ticket/333 on 2006-10-11 by
@FrancescAlted, assigned to unknown._
The next exposes the problem:
In [142]:dt1=numpy.dtype('i4')
In [143]:numpy.array(0, dtype=dt1.type)
Out[143]:array(0)
# good, but
In [144]:dt2=numpy.dtype(('i4',(2,)))
... | 1 |
### Bug report
Something now breaks this code that used to work. Now, I have to call
plt.subplots first and use stackplot on an axis object.
TypeError: stackplot() got multiple values for argument 'x'
from matplotlib import pyplot as plt
plt.stackplot([1,2,3], [1,2,3])
Should be equivalent to
... | 1 | |
Again from the paypal/bootstrap-accessibility-plugin, these changes should be
added to the documentation and the JS plugin.
### Tab Panel
1. ~~Add ARIA roles like tablist, presentation, and tab for tabs UL, LI.~~
2. Add tabIndex, ~~aria-expanded~~ , aria-selected, ~~aria-controls~~ for tab.
3. Add ARIA roles ... |
Please see following demo image, when text is too short, popover's arrow
should be correctly adjusted to point to the center of the label.
* image
http://cl.ly/image/0W38012y3K1H
I've created a simple fix for that, but it's doing from outside of the plugin,
would be great if it's integrated into the plugin itse... | 0 |
End of preview. Expand in Data Studio
README.md exists but content is empty.
- Downloads last month
- 16