text1
stringlengths
2
269k
text2
stringlengths
2
242k
label
int64
0
1
Hi, I'm trying to build a model with functional API. But I got some error only when I use BatchNorm layer . A toy example: import numpy as np from keras.layers import Input, BatchNormalization, Dense from keras.models import Model # model1: input1 = Input((10,)) bn1 = BatchNorm...
The problem I am facing is that the input size is variable and I don't know how to get a symbolic shape in the middle of the graph. Is there a way to: 1. Get the _symbolic_ shape of a layer 2. Specify a _symbolic_ (i.e. variable at run time) `target_shape` in `Reshape(target_shape)` At the moment I came up wit...
0
Consider: class Apple { private size: number; constructor(size: number) { this.size = size; } get Size(): number { return this.size; } } let a: Apple = new Apple(4); console.log(a.Size); a.Size = 5; // should...
If a property has a getter but no setter (or vice versa) than perhaps the attempt to set or get should be flagged as an error: class Fields{ get ReadOnly(){ return 10; } public written:number; set WriteOnly(value:number){ this.written = value...
1
# Feature request ## Is your feature request related to a problem? Please describe. Amazon API Gateways have a stage in their URLs: E.g. https://vbe6aad5c.execute-api.us-east-1.amazonaws.com/prod/home This breaks next8 serverless page deployments routing because there doesn't seem to be a way to configure nextjs ...
* I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior Following the README.md instructions on cloning and running the app should result in a running app, compiled correctly. ## Current Behavior Running `npm i && npm run dev`: 1. Fails to build the app....
0
### Description Running scrapy bench in 2.6.1 gives AttributeError exception ### Steps to Reproduce 1. `pip install scrapy==2.6.1 --upgrade` 2. `scrapy bench` **Expected behavior:** [What you expect to happen] It works fine in 2.5.1: 2022-03-15 20:59:25 [scrapy.core.engine] INFO: Spider close...
### Description When switching from version 2.5.1 to 2.6.1, there was a problem with the parser terminating if the shutdown condition was CLOSESPIDER_TIMEOUT. ### Steps to Reproduce 1. pip install -U scrapy 2. scrapy crawl --set 'CLOSESPIDER_TIMEOUT=1' some_crawler **Expected behavior:** [What you expect to h...
1
# Bug report **What is the current behavior?** After migrating to Webpack 5 my CSS doesn't get extracted into a single file. It is chunked across multiple files. I do feel all my issues are caused by the same source. ![image](https://user- images.githubusercontent.com/963776/96571192-8a20d280-12cb-11eb-9e63-1e043d...
# Bug report **What is the current behavior?** If using contenthash with a WebWorker and any plugin is calling Maintemplate.prototype.hook.localVars such as the webpack-subresource- integrity plugin, the runtime starts requesting for undefined when it tries to load the web worker chunk both observed in the console...
0
1. Right click on a file in tree view. **Atom Version** : 0.210.0 **System** : Microsoft Windows 10 Home Insider Preview **Thrown From** : Atom Core ### Stack Trace Uncaught Error: Cannot find module './context-menu' Error: Cannot find module './context-menu' at Function.Module._resolveFilename (module.j...
I right-clicked on a folder in the tree view **Atom Version** : 0.194.0 **System** : Windows 7 Entreprise **Thrown From** : Atom Core ### Stack Trace Uncaught Error: Cannot find module './context-menu' Error: Cannot find module './context-menu' at Function.Module._resolveFilename (module.js:328:15) at Fu...
1
This suggestion has a few pieces: 1. Implement boolean literal types for `true` and `false`, in a fashion similar to #1003 2. Implement type guards for booleans. Essentially, control flow constructs like if-else, while, for, etc would be subject to a type guard if their guard expression is a boolean. 3. Now we...
If one try to set a property that hasn't any getter defined, the compiler doesn't emit any error or warning and the code silently fails à runtime. example: class Greeter { private _greeting: string; get greeting(): string { return this._greeting; } constructor(message: str...
0
### System information * Have I written custom code: no * OS Platform and Distribution: Windows 7, 64-bit * Tensorflow installed from: Anaconda 5.0.1 via pip 9.0.1 (conda create -p C:\temp\tensorflow-gpu; pip install tensorflow-gpu) * Python 3.5.2 * TensorFlow 1.5.0 * CUDA 9.0 * cuDNN 7.0 * Bazel:...
### System information * **Have I written custom code (as opposed to using a stock example script provided in TensorFlow)** : NO * **OS Platform and Distribution (e.g., Linux Ubuntu 16.04)** : Ubuntu 16.04 * **TensorFlow installed from (source or binary)** : pip install * **TensorFlow version (use command be...
0
# Environment Windows build number: 10.0.18362.0 Windows Terminal version (if applicable): 0.5.2762.0 # Steps to reproduce Resize the window to smaller, then back to about its original size or even bigger. Close the window. # Expected behavior The window should simply disappear. # Actual...
![3](https://user- images.githubusercontent.com/17381223/64915108-20fa9180-d792-11e9-9ed4-8266c3307e0a.PNG)
0
* VSCode Version: 0.10.11 * OS Version: Windows 7 Steps to Reproduce: 1. Set the "Language Mode" to "Javascript" 2. Write "variable", you'll see that the prefix "var" is highlighted This doesn't happen when the word starting with "var" is part of a function argument, or inside strings *Tried with multipl...
_From@f111fei on February 23, 2016 6:14_ version: 0.10.10 ![2](https://cloud.githubusercontent.com/assets/7069719/13243197/80630302-da37-11e5-9ccf-a63d6f23433d.png) `letter` _Copied from original issue:microsoft/vscode#3270_
1
Traceback (most recent call last): File "/home/hsy/wh/license_plate/datasets/ccpd.py", line 6, in import pycocotools.coco as coco File "/home/hsy/.local/lib/python3.6/site- packages/pycocotools-2.0-py3.6-linux-x86_64.egg/pycocotools/coco.py", line 49, in import matplotlib.pyplot as plt File "/home/hsy/.loca...
# Summary Currently, when you plot several artists on the same axis and use the pyplot.legend(), the ordering of the entries is somewhat mysterious for the average user, see http://stackoverflow.com/questions/22263807/how-is-order-of- items-in-matplotlib-legend-determined. Like many of my peers, I use matplotlib to...
0
Hi all, First off, thanks for all your hard work on this project. It kicks ass. This is my first time using bootstrap more extensively on a larger project, and I'm confused as to why the screen-xs breakpoint has been deprecated, and the xs breakpoint has been defined as everything less than 768px. I was taking a l...
The smallest grid column supported at the moment is .col-xs- (<768px), which seems like a big range. Would it be advisable to have: .col-xs- (>480px and <768px) .col-tn- (<480px) Reason being it still seems reasonable to have a 2 column grid on 768px (240px - 384px per column), while 480px have a stacked column...
1
Would it be possible to have line wrappings auto indent to match their starting line's indentation? The way that soft wrapping currently works in Atom is confusing and cluttered... ### So, instead of this: ![screen shot 2014-08-01 at 4 09 19 pm](https://cloud.githubusercontent.com/assets/5497885/3785733/45155352-19...
Ok, this one may be a personal preference, but it drives me nuts that softwrap doesn't match the indent. ![screen shot 2013-11-18 at 5 18 17 pm](https://camo.githubusercontent.com/64fe852b37459ffba2a99896099c599b3947d45e8f015678cdc58894d0a2d529/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f3732...
1
While installing celey==4.0.2 its giving error `KeyError: 'async'`. Upgraded dependencies should install only when the version is upgraded not in this case
If we removed support for Redis, we'd be able to focus the time on RabbitMQ, or maybe Kafka/nsq. There's also the huge task of porting to asyncio in Python 3. I think this should be seriously considered. If we are to work on this for fun, then the popularity of the transport shouldn't matter. In the end I will ch...
0
See this in (slow mo!) action: https://youtu.be/ljXgi7r62Pc When a recipe in Pesto is animating up, notice how the shadow around the FAB flashes/clips. (noticed in a material eng review)
Hello everybody. Tell me please whether it is possible to create flutter app maker? Like storyboard in Xcode? drug and drop element in window and generate code. in web similar http://mutisya.com how it works?
0
* VSCode Version: Alpha - `e77003f` * OS Version: El Capitan Steps to Reproduce: 1. Open any file in vscode 2. Make changes to that file outside of vscode, vscode is not picking up changes File events seem to be completely broken for me, as git is also not picking up file event changes
Today when you open VS Code on wrong casing workspace path, all file events stop to work. We should detect this case and either fix it or print a warning.
1
As far as I can tell the `runtime` transform is all-or-nothing, all I'm interested in is getting rid of the redundant helpers inlined into every module, but it seems I can't have that without also the "risk" of getting dependencies on the other runtimes (notably `core-js`). Have I missed something or would it not ma...
This would be really nice for larger applications that aren't libraries, where they could still use the full, globally polluting polyfill, but the helpers wouldn't be duplicated across several modules. It would make the compiled code faster to load, and a lot smaller overall. These benefits are nice for both Node app...
1
Hello I am having trouble in checking existing data in scrapy. i have used elasticsearch as my database below code i am trying to execute ?? ` def checkIfURLExistsInCrawler(single_url): elastic_query = json.dumps({ "query": { ...
Would it make sense to add something to the top of scrapy.utils.request.request_fingerprint like: if 'fingerprint' in request.meta: return request.meta['fingerprint'] This is useful, for example, if you consider two pages to be identical if they share the same productID query parameter: ...
0
model = AutoModelForSequenceClassification.from_pretrained("bert-base-uncased") returns this warning message: Some weights of the model checkpoint at bert-base-uncased were not used when initializing BertForSequenceClassification: ['cls.predictions.bias', 'cls.predictions.transform.d...
## Environment info * `transformers` version: 4.17.0 * Platform: Linux-5.10.0-051000-generic-x86_64-with-glibc2.10 * Python version: 3.8.5 * PyTorch version (GPU?): 1.10.2+cu113 (True) * Tensorflow version (GPU?): not installed (NA) * Flax version (CPU?/GPU?/TPU?): not installed (NA) * Jax version: not...
0
ERROR: type should be string, got "\n\nhttps://storage.googleapis.com/kubernetes-jenkins/logs/kubernetes-e2e-gce-\nscalability/7993/\n\nFailed: [k8s.io] Load capacity [Feature:Performance] should be able to handle\n30 pods per node {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/load.go:182\n creating rc load-big-rc-3\n Expected error:\n <*errors.errorString | 0xc8283a7fb0>: {\n s: \"Number of reported pods for load-big-rc-3 changed: 248 vs 250\",\n }\n Number of reported pods for load-big-rc-3 changed: 248 vs 250\n not to have occurred\n \n\n"
There are two modes of crashing: * the first one I've seen 5 times today * the second I've seen exactly once goroutine 3951325 [running]: runtime.throw(0x2ef0660, 0x15) /usr/local/go/src/runtime/panic.go:547 +0x90 fp=0xc8adb6ff68 sp=0xc8adb6ff50 runtime.mapdelete(0x200e720, 0xc...
1
### Problem When using contourf with alpha < 1, these ugly lines appear at the color boundaries. This is evident both in the contoured data as well as on the colorbar. ![new_look_0](https://user- images.githubusercontent.com/45180714/85592661-5c28cb80-b614-11ea-98b5-bdd1df31abf4.png) I can set antialiased=True in...
This is the underlying problem raised in #1178. It is illustrated by the test below; note that boundary anomalies are visible in all forms--agg on the screen, and pdf and svg displayed with a viewer--but in different places depending on the viewer and the size of the figure as rendered. Note that the colorbar is ...
1
When adding an adapter with a retry object to a session, read timeout errors are converted to connection errors. >>> s = requests.Session() >>> s.get("http://whatever.com", timeout=(3.05, 0.001)) Timeout: HTTPConnectionPool(host='whatever.com', port=80): Read timed out. (read timeout=0.001) ...
Consider the code below ( **main.py** ). When a temporary network disconnect occurs without the `timeout` keyword argument to `Session.get()`, the client may hang indefinitely and no exception is raised. However, if I use the `timeout` keyword argument, the application will raise a `ConnectionError` from **models.py...
1
# Bug report **What is the current behavior?** I'm using code splitting (via SplitChunksPlugin) to extract common dependencies. I have multiple entry points. The output target is node. When trying to run the successfully bundled code, I get the error `TypeError: Cannot read property 'call' of undefined`. When ...
If you add aliases into your DllPlugin, it will only write out the raw file path. This causes issues when you have to dual maint. aliases. Also when you are trying to abstract out logic, such as locale-specific bundles. @sokra Is there a likelihood that this feature is possible and would be accepted if I put in a PR...
0
Is it possible to duplicate tabs as on linux terminals? On gnome term I can use ctrl+shift+t and it duplicates the current tab on the same directory while ctrl+t opens a new tab.
> Is this indicative of a larger problem? Should we file an outstanding work > item to audit all sites of manipulating the active buffer and/or somehow > change the design such that the methods cannot accidentally be called > without resolving which one is the active one first? For the latter, my proposal would be t...
0
According Docs http://www.elasticsearch.org/guide/reference/api/search/facets/terms-facet/ and code org.elasticsearch.search.facet.terms.TermsFacet ordering works for "count" and "term" in two directions. for "count", the tie breaker is a "normal" compareTo, which will compare the String Text of the term. How...
Hi My apologies if I am doing something dumb but I have been trying to get this working for a while now. I have downloaded and unpacked elasticsearch 2.1 (ZIP from elastic.co) and get the error below. I have reinstalled Java 1.8 and cleaned up any old installations but still get the same error. Any suggestions? I h...
0
The bug can be demonstrated on the following example: from sqlalchemy import Table, MetaData, Integer from sqlalchemy.dialects import mysql metadata = MetaData() table = Table('table', metadata, Column('id', Integer, primary_key=True), Column('int_or_null', Integer, ...
**Migrated issue, originally created by Michael Bayer (@zzzeek)** the ZBlog demo can illustrate this. this relationship in mapper.py: Topic.mapper = mapper(Topic, tables.topics) TopicAssociation.mapper = mapper(TopicAssociation,tables.topic_xref, primary_key=[...
0
NOTE: Only file GitHub issues for bugs and feature requests. All other topics will be closed. I'm now using TF version 0.10.0 installed from source. I'm not sure its a bug or intended implementation but the `embedding_lookup()` returns zeros when the index exceed embedding matrix size. For example, ...
NOTE: Only file GitHub issues for bugs and feature requests. All other topics will be closed. I wrote an issues a month ago about the same problem #5260 I recently update the TF to latest master branch(`0.11.head`) without any custom modification and the commit hash is `55dbc54` The tf.embedding_lookup() still do...
1
### Description I find the connections view often leads to confusion because connections defined as environment variables and in a secrets backend are not displayed. This is not stated clearly. I suggest to: 1. Display connections set via environment variables (and hide the edit controls for those connections). ...
**Apache Airflow version** : 1.10.9 **Environment** : * **Cloud provider or hardware configuration** : * **OS** (e.g. from /etc/os-release): ubuntu 18.04 * **Kernel** (e.g. `uname -a`): * **Install tools** : * **Others** : **What happened** : Eventlet with CeleryExecutor not working in Airflow 1.10.9 ver...
0
## Feature request When optimization.sideEffects is set to true, the code will not be analyzed for side effects during production mode construction, The sideEffects field in package.json will still be used Whether sideEffects in package.json should be ignored when optimization.sideEffects is true and in producti...
**What is the current behavior?** ERROR in TypeError: __webpack_require__(...) is not a function - index.ejs:1205 Object.../node_modules/webpack/buildin/harmony-module.js /home/adam/apps/memory-n-back/web/index.ejs:1205:1 - index.ejs:622 __webpack_require__ ...
0
#### Challenge Name ###### Target Even Numbered Elements Using jQuery https://www.freecodecamp.com/challenges/target-even-numbered-elements-using- jquery **_Previous challenges have same issue (and probably next ones)_** #### Issue Description One of the jquery code is rendered twice in the #preview .iphone .if...
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
I'm new to typings, but it seems as if the Knex SchemaBuilder methods (https://github.com/borisyankov/DefinitelyTyped/blob/master/knex/knex.d.ts#L303) are returning the wrong type. They return Promise while the knex source has the methods just returning a reference to 'this' (https://github.com/tgriesser/knex/blob/ma...
The following should compile but doesn't: class ActiveState { restrict = 'A' constructor() { } } angular.module('foo').directive('foo', ActiveState);
0
**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 ...
It would be nice if we could tell angular not to destroy components when we navigate out of them, even if the next component is of a different type. This could be useful, for example, when building a window management system, where users can navigate through different windows (components) without the need for recov...
0
Challenge Create a Form Element has an issue. User Agent is: `Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36`. Please describe how to reproduce this issue, and include links to screenshots if possible. My code: <link href="https://font...
Challenge http://www.freecodecamp.com/challenges/waypoint-bring-your- javascript-slot-machine-to-life has an issue. Please describe how to reproduce it, and include links to screenshots if possible. When typing the solution, typing "$" "(" automatically generates a closing parenthesis, then typing the next "$" leave...
0
**I'm submitting a ...** (check one with "x") [ ] bug report => search github for a similar issue or PR before submitting [x] feature request [ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question ...
# Use Case `<ng-content>` allows for static (compile time resolution) projection of content. There are cases where the projection needs to be controlled programmatically. A common example is when the parent component would like to wrap/decorate the child components during projection. # Mental Model The mental mode...
1
Ran into an issue with the accordion. When you click on toggle headings too quickly, it doesn't always collapses all the groups properly, in this example, I've clicked on the "Collapsible Group Item # 2" then "Collapsible Group Item # 1", but it opened both of them at the same time. ![bootstrapbug](https://cloud.git...
Step 1. Navigate to this page: http://getbootstrap.com/javascript/#collapse Step 2. Click on one of the links that trigger opening of the accordion sections (ie. Collapsible Group Item `#1`) Step 3. Before the section's opening animation has a chance to complete (the one from 'Step 2' above) click on a different ...
1
#![allow(dead_code)] #[derive(Show)] struct Cell; struct Grid { cols: [[Cell; 6]; 6] } impl Grid { fn iter(&self) -> Box<Iterator<Item = &Cell>> { Box::new(self.cols.iter().flat_map(|x| x.iter())) } fn fill(&mut self) { ...
### Code fn changer<'a>(mut things: Box<Iterator<Item=&'a mut u8>>) { for item in *things { *item = 0 } } fn main() { } ### Error error: internal compiler error: trying to take the sizing type of <core::iter::Iterator + 'static as core::iter::Iterator>::Ite...
1
##### System information (version) * OpenCV => 4 * Operating System / Platform => Ubuntu 16.04 ##### Detailed description Looks like I have an issue to capture image from a camera, e.g. running `example_cpp_videocapture_camera` returns the following error: > Opening camera... > [ WARN:0] VideoCapture(index...
On fedora 26 I have this error when compiling openCV with the modules: [ 84%] Building CXX object modules/optflow/CMakeFiles/opencv_perf_optflow.dir/perf/perf_main.cpp.o [ 84%] Building CXX object modules/optflow/CMakeFiles/opencv_perf_optflow.dir/perf/perf_variational_refinement.cpp.o In file ...
0
I get the warning message `W external/org_tensorflow/tensorflow/compiler/xla/service/hlo_pass_fix.h:49] Unexpectedly high number of iterations in HLO passes, exiting fixed point loop.` each time I evaluate `grad(odeint)` in the following code. The forward system has `4 * 4 * 64 = 1024` dimensions, and the dynamic...
I am getting an error/warning message when using clip_grads. The message is: "external/org_tensorflow/tensorflow/compiler/xla/service/hlo_pass_fix.h:49] Unexpectedly high number of iterations in HLO passes, exiting fixed point loop." Does anyone know what this means, or how to call clip_grads so it doesn't occur? ...
1
There seems to be some path problems when specifying a custom Access Denied template and extending a layout. It seems this has been reported here... http://trac.symfony-project.org/ticket/9502 More details can be seen in the comments of this blog article... http://www.michelsalib.com/2011/03/advance-customization-...
Q | A ---|--- Bug report? | no Feature request? | yes BC Break report? | no RFC? | yes Symfony version | 4.1 It would be nice allow inject tagged services as `ServiceLocator` instead of `iterable`. For example we have set of report generators, all of them implements `ReportGenerator` interface. We have...
0
The weekly build with nightly wheels from numpy and pandas has failed. Check the logs for any updates that need to be made in matplotlib. https://github.com/matplotlib/matplotlib/actions/runs/3254383814
The weekly build with nightly wheels from numpy and pandas has failed. Check the logs for any updates that need to be made in matplotlib. https://github.com/matplotlib/matplotlib/actions/runs/3163174215
1
* VSCode Version:1.1.0-alpha * OS Version: Mac Regarding test item #5753 Just found this issue a day after I did my testing. Steps to Reproduce: 1. In a bower.json file, type in a package in the dependency section (I used lodash as the package). It will auto-complete and give you `"lodash":"latest"` 2. T...
* VSCode Version: 0.10.12-alpha * OS Version: Windows10 Steps to Reproduce: 1. Create Asp .net core empty project in visual studio. 2. Add some directories under wwwroot folder for client code like JS. 3. Add new item to manage client lib and add bower.json file. 4. Add some client side lib in to bower.j...
1
##### System information * OpenCV => 4.0.1 (Exactly, I am using OpenCV lib included in OpenVINO R5 2018 release.) * Operating System / Platform => Windows 64 Bit * Compiler => Visual Studio 2015 ##### Detailed description Memory increases quickly as i run my code. My code is really simple: Create 2000 thre...
* OpenCV => 3.3.0 * Operating System / Platform => Arch Linux (4.12.13-1-ARCH SMP PREEMPT x86_64 GNU/Linux) * Compiler => gcc 7.2.0 and clang 5.0.0 ##### Detailed description It seems that a significant portion of memory is leaked in every thread. The following code snippet consumes cca 100MB/s. ##### Step...
1
My issue is taking a warning, while it is not logical. ### Reproducing code example: import numpy as np from scipy.stats import pearsonr, spearmanr x = np.asarray([0.20411998265592482, 0.07918124604762482]) y = np.asarray([0.017448610113466535, 0.012129956392826626]) print(pearsonr(x,y...
Hi, This is an issue to mention that the implementation of pearsonr is not tolerant to overflows. scipy/scipy/stats/stats.py Line 3032 in b7865dd | r_den = np.sqrt(_sum_of_squares(xm) * _sum_of_squares(ym)) ---|--- Pearsonr is stable by a multiplicative coefficient. When this coefficient is too high, the ...
1
Firefox specific bug Due to #6570 react > 15.0.3 populates every element with property `is="null"` That's caused by weird Firefox behaviour checking the args number of `document.createElement`. e.g.: `document.createElement('a', '')` => `<a is="">` `document.createElement('a', null)` => `<a is="null">` `doc...
**Do you want to request a _feature_ or report a _bug_?** Looks like a **bug**. **What is the current behavior?** I have a simple context set up to manage a global store. When implementing this context as a functional component with the useState hook, calls to my setStore function from inside a timeout are seeing...
0
With #222 merged any ideas how to add a loader for TypeScript in next.config.js? I've tried adding a TypeScript specific loader like this const path = require('path'); const nextPagesDir = path.join(__dirname, 'pages'); const typescriptLoader = { test: /\.ts(x?)$/, loader: ['t...
this looks _awesome_ but I also really like TypeScript. is there any way to integrate typescript into the workflow?
1
After many consecutive ORs in Golang, the code highlighting is messed up till the end of the file. ![Example](https://camo.githubusercontent.com/9922b00d5d5d88e6f632e46059938de7878122297023087d9a1aab3c9b7ef1d1/687474703a2f2f692e646f6e64616e69656c6c6f2e636f6d2f323031342d31302d30355f31382d31382d31375f614d656a2e706e67)...
I opened a Python file with the following line (#963): PrintAndLog(u"SSID: " + RememberedNetwork["SSIDString"].decode("utf-8") + u" - BSSID: " + RememberedNetwork["CachedScanRecord"]["BSSID"] + u" - RSSI: " + str(RememberedNetwork["CachedScanRecord"]["RSSI"]) + u" - Last connected: ...
1
* Electron version: 1.4.7 * Operating system: OSX 10.12.1 ### Expected behavior // in the render var webview = document.querySelector('webview'); webview.addEventListener('will-navigate', function(e){ e.preventDefault(); // should prevent webview navigation consol...
It would be very useful to get events related to navigation: * `will-navigate`: when the webview is about to navigate (url have been changed but no requests have been emited yet). It could eventually be cancelled with `event.preventDefault()`) * `page-url-set`: like `page-title-set` but for url. It is different ...
1
> Issue originally made by @jonathanong ### Bug information * **Babel version:** 6.2.0 * **Node version:** 5.1.0 * **npm version:** 3.3.12 ### Options { "presets": [ "es2015", "stage-0", "react" ], "plugins": [ "lodash", "transform-runt...
hi. seems like `babel@4.6.x` -> `babel@4.7.1` has some regression bug, because that code worked fine on previous version: const obj = { symbol: Symbol() }; class Foo { [obj.symbol]() { console.log(123); } } const foo = new Foo(); foo...
0
I wanted to make a FacetGrid plot with some offset. Basic code: import seaborn as sns sns.set(style="ticks", color_codes=True) tips = sns.load_dataset("tips") g = sns.FacetGrid(tips, col="time", row="smoker") g = g.map(plt.hist, "total_bill") ![zero](https://cloud.githubuserconte...
Setup: samples = 1 df = pd.DataFrame() for batch_size in range(31): samples = samples/(1+scipy.stats.expon.rvs(loc=0, scale=1/1000, size=10000)) df = df.append(dict(batch_size=batch_size, samples=samples), ignore_index=True) exploded_df = df.explode("samples") ...
0
## Steps to Reproduce 1. Use any branch on or after commit `a2951a9` 2. Run the release build with `flutter run --release` 3. The app will crash on launch ## Logs 05-08 10:53:31.033 495 495 F DEBUG : *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** 05-08 10:53:31.033 ...
I would expect either the whole word to wrap, or probably better to have it change phone size or ellipsize. We probably want some standardized titlebar behavior here. ![img_0003](https://cloud.githubusercontent.com/assets/11857803/19585022/e1e33632-96fd-11e6-9dad-417ca15f908f.PNG)
0
The system fails to give credit to the user if they add img-responsive class to the first image as well as the new image
Lesson: http://www.freecodecamp.com/challenges/waypoint-mobile-responsive- images 1. Instructions are the wrong way around, should assign the class after instructing you to make the new `img` tag 2. Switches from `https://` to `http://` requirement for second `img` 3. If you add `img-responsive` to the existin...
1
When namespaces merge, any members exported by one namespace declaration are in scope in all the merged declarations. Ambient external modules like `declare module "foo" { }` can merge too. It seems natural then that exported declarations are in scope in merged external modules too. But external modules have addition...
Just a suggestion, but it would be very cool if one could create a TypeScript Library project to contain nothing but TypeScript files, which would compile to a single JavaScript file that could then be linked from other projects. Maybe have a Definitions folder to contain .d.ts files. If the source-map- based debuggi...
0
The php error : PHP Fatal error: Call to a member function getRepository() on a non-object is suppressed and a blank page is rendered despite being in dev ( app_dev.php ) To replicate: remove $em = $this->getDoctrine()->getManager(); from any crud action.
### How to reproduce 1. Create a controller action that contains `$foo->bar();`. Make sure that `$foo` is undefined. 2. Call said controller in both the `prod` and `dev` environments. ### Code sample <?php // src/Acme/BugReportBundle/Controller/BuggyController.php namespace Acme\BugR...
1
### Describe your issue. Ever since version 1.8.0 certain all calls to hypergeom.pmf seem to be slower with certain set of parameters being processed so slow that it is code breaking. For the code shown below, my computer needs ~0.08s to process the loop using scipy 1.7.3 but ~262s on scipy 1.9.3, slowing down the p...
### Describe your issue. While using the `fisher_exact` test in a loop on some 2x2 tables, I noticed a significant slowdown between Scipy versions 1.7.3 and 1.8.0 (1.8.0 is about 20x slower than 1.7.3). I narrowed it down to the call to `hypergeom.cdf`, and found a specific set of arguments with which the slowdown c...
1
# Bug report **What is the current behavior?** I have an issue after upgrade to webpack 5, we have internal components as npm packages and services that use those components and we have the following issue: 1. Package A have the following folder structure: src * theme * default-theme.ts * view...
While porting a pre-existing application over to webpack I ran into an issue while cleaning up dependencies. The current setup is that 3rd party (vendor) libraries would go in a 'vendor' chunk and application global ones in 'global'. There are various entry points in the application (not single-page) and thus the gro...
0
$ kubectl get pods (...) fluentd-elasticsearch-kubernetes-minion-7ewp kubernetes-minion-7ewp/ <none> Pending Less th...
Possibly related to/duplicate of #29548 I'm running Kubernetes 1.3.0 and having trouble mounting EBS volumes to pods. The volumes seem to be attached to the minion, but not mounted. `xvdba` device is the EBS volume I'm trying to mount: ip-10-72-4-178 ~ # lsblk NAME MAJ:MIN RM SIZE RO TYPE ...
0
Hi, I'm trying to perform a broad crawl of the web with Scrapy in breadth-first order. The issue I'm running into is that after a few seconds of the crawl running, it seems to get stuck on just one or two domains instead of continuing down the list of seed URLs. I would expect it to either continue through the enti...
We need to add a deployment section to the documentation covering scrapyd- deploy.
0
* VSCode Version: 1.0.1-insider (`85f337e`) * OS Version: OS X 10.11.4 (15E65) Steps to Reproduce: 1. Have code open with git enabled on a repository (in particular, I'm working with @mozilla/gecko-dev) 2. Do a `git rebase -i` that will take a while (my case had 11 commits that I was squashing into 1) A fe...
Several times now I've had mysteriously deleted files when doing a git pull in a console while Visual Studio Code is running. I've seen this roughly since version 0.10. It seems that when auto-merging, Git is able to delete a file but not able to write the merged file back if it's open in Code. However that is just ...
1
The second one looks like a duplicate of 2.0.0-alpha.33 (2015-07-30).
I just ran through the demo for Dart here: https://angular.io/docs/dart/latest/quickstart.html * Running through the built in Dart2JS transformer via pub serve results in a 5.2 MB main.dart.js file * Running through pub build results in a 2.5 MB main.dart.js file
0
In language-javascript/snippets, there's an "f" snippet for an anonymous function, and language-todo/snippets has "fix" for a "fix me" comment. To see this: 1. Open a javascript file 2. Type "f" The former should be offered as the first suggestion, as it's the best match, but instead it appears 6th on the list,...
When writing javascript code a common snippet is `f` that expands into an anonymous function. However if I type `f` the topmost and selected suggestion is `fix`. And the `f` snippet is number 6 in the list. If I was looking for `fix` I could add the letter 'i' to select that one however as `f` is the whole snippet ...
1
When you have a one page site, and the navbar is collapsed (e.g. on an iPhone), the 3-line collapse button is shown. Excellent. When you then click that button, the menu pops open. Good. If you then click one of the menu items, the 'jump' happens, but the menu does not collapse. Remember, it's a one page site, s...
When writing a single-page application using Bootstrap's navbar, we quickly found out that we need a way to collapse the menu whenever any of the links are pressed. The naive solution seemed to be to attach the following to every link: data-toggle="collapse" data-target=".navbar-responsive-collapse" ...
1
The content of a pane/buffer that hasn't been saved to a file will dissapear after moving the pane to another place (in split-mode). Video: http://youtu.be/Mp2R8vqFUdY
I have my screen in split view (2 panes) and, when changing a tab from 1 pane to the other the file doesn't seem to show, after I switch tabs the content of the file show, there aren't errors in the developer tools. And a gif is included to demostrate the bug in `atom --safe` ![change editor of pane](https://cloud....
1
* I have searched the issues of this repository and believe that this is not a duplicate. yes * I have checked the FAQ of this repository and believe that this is not a duplicate. yes ### Environment * Dubbo version: 2.6.2 * Operating System version: centos6.2 * Java version: jdk1.8.0_152 ### Steps ...
* 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.6 * Operating System version: ubuntu 16.04.5 * Java version: 1.8 ### Steps to reproduce this...
0
##### Issue Type: Bug Report ##### Ansible Version: ansible 1.7.1 ##### Environment: N/A ##### Summary: There is a problem when invoking apt with variables. When the variables are inside an argument, it gives an error: - name: Install chromium browser apt: deb=/root/{{item}}.deb wh...
From @jsnshrmn on 2016-06-17T15:03:20Z ##### ISSUE TYPE * Bug Report ##### COMPONENT NAME lineinfile ##### ANSIBLE VERSION ansible 2.1.0.0 config file = /etc/ansible/ansible.cfg configured module search path = Default w/o overrides ##### CONFIGURATION Bone stock ##### OS / EN...
0
In a new IPython Notebook session: import pandas as pd import numpy as np %matplotlib dt_rng = pd.date_range(start='2014-01-01', end='2014-01-31', freq='1min') df = pd.DataFrame(np.random.randn(len(dt_rng)), index=dt_rng) ax = df.plot() The DataFrame is plotted correctly. However, a mouse-over shows wrong...
In pandas 0.13.1 this code produces a plot that, when "moused over", indicates incorrect dates on the 't' (x) axis, despite having the correct axis label. pd.Series([1, 2, 3], index=pd.date_range('2014-01-01', periods=3, freq='D')).plot() ![screenshot](https://camo.githubusercontent.com/6dd5fc1e3be5a3...
1
fn id(x: uint) -> uint { x } fn main() { let c <- fail; id(c); } Assertion failed: (getOperand(0)->getType() == cast(getOperand(1)->getType())->getElementType() && "Ptr must be a pointer to Val type!"), function AssertOK, file Instructions.cpp, line 1065.
Here's an example of the bug: https://gist.github.com/2421363 It seems that libraries re-export the ifaces/impls of libraries they're using, which triggers a duplicate symbol error when libraries are used in a diamond shaped pattern.
0
`flutter build apk` crashes with the message ===== CRASH ===== version=2.1.0-dev.4.0.flutter-cd9a42239f (Fri Sep 7 21:08:23 2018 +0000) on "macos_simarm" si_signo=Segmentation fault: 11(11), si_code=1, si_addr=0x148 Dart snapshot generator failed with exit code -6 Snapshotting exited wi...
## Steps to Reproduce 1. Run the Flutter Gallery application on an iPhone 6. 2. Select the "Text field" demo. 3. Click on the "Name" field. 4. Click on the microphone icon on the iOS keyboard and say something. 5. The text displays in the text field. 6. Click "Done" in the keyboard area to dismiss the ke...
0
when I run the demo Example: >>> import numpy as np; np.random.seed(10) >>> import seaborn as sns; sns.set(color_codes=True) >>> mean, cov = [0, 2], [(1, .5), (.5, 1)] >>> x, y = np.random.multivariate_normal(mean, cov, size=50).T >>> ax = sns.kdeplot(x) it report an error as belo...
In seaborn, it seems one cannot customise legends for histplots. I'm not sure about the other categorical plots, but it is possible for scatter plots. # This works f, ax = pt.subplots() x = np.arange(0, 6) y1 = np.random.randint(1, 50, 6) y2 = np.random.randomint(1, 25, 6) ...
0
I do have a number of unregistered packages in .julia, and a few others which are not tracking METADATA. Likely one of these is confusing publish, or it could simply be that my .julia directory was created too long ago, in which case this issue can be closed. julia> Pkg.update() INFO: Updating META...
This is an umbrella issue for compiler and other low-level optimizations. I'm including ones that are already done, to make it more interesting. compiler: * static method lookup * basic inlining * null check elimination * function type check elimination * method lookup hoisting * function-valued argumen...
0
Hello, I am currently reflecting a MSSQL table and doing a bulk insert to it, my problem is that I need to check/avoid duplicates and I don't know how to do it in SQLAlchemy syntax. To give you some context, The SQL table is time series for a mortgage lender that contains 57 parameters including things such as "Loa...
Hi, I recently ran into a situation where a query was accidentally returning 100x the number of rows it should have due to a bad join, but it slipped by for a long time because the de-duping logic in orm/loading.py:instances saved us: if filtered: rows = util.unique_list(rows, f...
0
# Environment Microsoft Windows [Version 10.0.18363.815] PowerToys version: 0.17.0 PowerToy module for which you are reporting the bug (if applicable): Fancy Zones # Steps to reproduce I have a multi-monitor setup with my secondary display above my primary in the upper right. I have setu...
# Summary of the new feature/enhancement Currently, you can remap a single key to a single key, or a two-button shortcut to a two-button shortcut; the proposed feature would let you mix and match these two. For example, F6, F7, and F8 could be bound to Ctrl-X, Ctrl+C, and Ctrl+V respectively. Alternatively, Ctrl+Num...
0
When selecting multiple lines and trying to move them down or up (by `ctrl- arrow key` on linux at least) atom gives up all cursors but the latest one and only moves that line. ## Repro Steps 1. add a cursor on multiple lines (by whatever means, `ctrl+d` or `ctrl-left mouse click`) 2. try to move the lines up o...
After making multiple selections, "Move Line Up" (`Ctrl` `Cmd` `Up`) and "Move Line Down" (`Ctrl` `Cmd` `Down`) works only on the last selected line, instead it should move all the lines. ![atom-multiple-selection-move- issue](https://cloud.githubusercontent.com/assets/50681/3138639/e528d254-e8a2-11e3-9608-e67da6018...
1
signal.resample is broken for even-length inputs. ### Reproducing code example: >>> from scipy.signal import resample >>> resample(resample([1, 2, 3, 4], 6), 4) array([ 1.25, 1.75, 3.25, 3.75]) I would expect resampling to a higher number of samples and back to be the identity operati...
Originally reported on SO here. It seems that **scipy.signal.resample()** makes errors when downsampling to an even number of points. For example, if we upsample a function to a multiple of the original points and then downsample again, we should get the original function back. from scipy import signa...
1
_From@Delagen on June 16, 2016 8:9_ simple url http://site.com/#/route;back=/a/b/c Error: Cannot match any routes: 'route;back=true/a/b/c' _Copied from original issue: angular/vladivostok#59_
E.g. to make compiler benchmarks more realistic. 1. Add general reflector in `facade/reflector` 2. delete `di/reflector`, `change_detection/parser/closure_map`, `core/compiler/reflector` * will probably need to add some utility functions in DI that were present in the di/reflector, but those utilities shou...
0
by **ficoos** : What steps will reproduce the problem? If possible, include a link to a program on play.golang.org. 1. Start a jsonrpc server 2. send {"jsonrpc":"2.0", "method": "HeadCrash.CreateRepository", "id": "1"} 3. Profit What is the expected output? Error ...
I'm getting a reliable crash from a nil pointer dereference deep in the net/http package, immediately after some data races. This occurs for a particular, large request (112MB) that crashes the backend server and subsequently kills the proxy with the nil pointer deference. Attached ...
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.6 * Operating System version: macos * Java version: jdk8 ### 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. ### Environment * Dubbo version: 2.6.4 * Operating System version: Windows 10 * Java version: 1.8.0_172 ### Steps to reproduce th...
0
* VSCode Version: 1.1.1 * OS Version: 10.11.4 Steps to Reproduce: 1. Open a 3MB file with some repeating text at each line (`The quick brown fox jumps over the lazy dog` 2. Highlight a word such as `quick` 3. Do a multi-cursor select (CMD+SHIFT+L) 4. Edit `quick` to say `slow` 5. Notice that not all l...
I was playing around with the `editor.fontSize` setting in VSCode because I am a little nearsighted. Is there a way to also have the font either inherit the size from the `editor.fontSize` setting or create a new one for it? Keep in mind when you scale the font, the images to the left need to be scaled as well.
0
See log here: https://gist.github.com/sebv/914c9b73b48e4542bfeb , the symlink to /mnt/ephemeral/docker/containers is not valid within container. This is a new issue on 1.1 (it's working on 1.0.7) On the node: ubuntu@ip-172-20-0-155:~$ sudo ls -l /var/log/containers total 80 lrwxrwxrwx 1 root ...
It seems that there are potentially two separate issues here: * The inconsistent docker root due to a potential race between kubelet and docker. * The misconfiguration (on AWS) of fluentd to mount /var/lib/docker instead of /mnt/ephemeral/docker. For the first issue, perhaps the kubelet should fail if it is not...
1
**Migrated issue, originally created by Rémy Roy (@remyroy)** IF EXISTS and IF NOT EXISTS are already part of many DBMSs DDL vocabulary. They have many use cases which are highly useful in some situations. For instance, creating a table if it does not already exists or dropping a column if it exists. It would be ...
### Describe the bug When using **SQLAlchemy** with **PyMySQL** driver and attempting to add a conflicting resource which is unique by the name, `pymysql.err.IntegrityError` is being raised, where instead `SQLAlchemy.exc.IntegrityError` should be wrapping the driver exception. ### To Reproduce #### Model ...
0
I've set up a rudimentary server on AWS EC2 (Debian Linux) running Deno 1.9.1 with an SSL certificate from Let's Encrypt. It simply serves a static HTML file when dealing with a GET request for "/", and returns a 404 for all other requests. It works fine for a while, and then starts hanging on all requests after a s...
Okay, this is a very strange issue, so I'm not very sure where to put this. Let's say I have this Deno HTTPS server: import { serveTLS } from "https://deno.land/std@0.89.0/http/server.ts"; const server = serveTLS({ port: 443, hostname: "0.0.0.0", certFile: "cert/fullchain.pem...
1
I updated to latest version, the syntax highlight is only partially working for ES6. Here is my jsconfig.json at the root of project: { "compilerOptions": { "target": "ES6", "module": "commonjs" } } keywords such as "if", "return", "default" are colored correctly, but keywords such as "let", "import" are...
0.10.10 (Feburary build) has a regression is that the following JavaScript keywords are no longer highlighted in the Dark Visual Studio & Light Visual Studio themes: `var` `let` `const` `function` `get` `set` `class` `interface` `module` `namespace` This only affects JavaScript (not TypeScript). The workaround i...
1
I really think you should be able to drag file and folders to copy/move them in the file tree. I don't know why you can't do that.
Would be awesome to be able to drag and drop files between folders in the file tree right in Atom. I like the text-based rename feature that lets you move files between folders, but drag and drop feels more natural to me having gotten used to it in TextMate.
1
### 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 npm WARN config global `--global`, `--local` are deprecated. Use `--location=global` instead. ### Expected Behavior no more"npm WAR...
### 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 current version of npm (8.11.0, node 16.15.1) writes a warning to STDERR on every command, that is a warning about using deprecated o...
1
**Stephen M. Wick** opened **SPR-3797** and commented Through Spring v2.0.2, MethodInvokingJobDetailFactoryBean cannot be used within a clustered Quartz deployment. I am attaching a cluster-safe version of Spring's MethodInvokingJobDetailFactoryBean, and a new BeanInvokingJobDetailFactoryBean for your review and po...
**Juergen Hoeller** opened **SPR-69** and commented Support for defining validation rules on beans via source markup. Support for declarative assignment of PropertyValidationRules to bean properties via Spring-IoC, through a scripting environment such as Groovy/Beanshell, or programatically in plain Java. * * * ...
0
When I pick Settings in the dropdown menu, profile.json opens in Visual Studio. This is slow. I would like to open it in a smaller/faster editor. I suppose it opens in VS due to my windows file extension settings for .json files. I don't wan't to change this setting, but I would like a seperate setting where I can ch...
# Description of the new feature/enhancement Add new field in settings containing profiles to use on startup. Currently present default profile should be used only for new tab functionality and as a fallback when startup profiles are not defined (for example after update). # Proposed technical implementation detail...
0
ERROR: type should be string, got "\n\nhttps://k8s-gubernator.appspot.com/build/kubernetes-\njenkins/logs/kubernetes-e2e-gke-serial/1538/\n\nFailed: [k8s.io] [HPA] Horizontal pod autoscaling (scale resource: CPU)\n[k8s.io] [Serial] [Slow] ReplicationController Should scale from 1 pod to 3\npods and from 3 to 5 and verify decision stability {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/horizontal_pod_autoscaling.go:70\n Jun 15 11:37:41.767: Number of replicas has changed: expected 3, got 4\n \n\n"
ERROR: type should be string, got "\n\nhttps://k8s-gubernator.appspot.com/build/kubernetes-\njenkins/logs/kubernetes-e2e-gke-subnet/3097/\n\nFailed: Horizontal pod autoscaling (scale resource: CPU) [Serial] [Slow]\nReplicationController Should scale from 1 pod to 3 pods and from 3 to 5 and\nverify decision stability {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/horizontal_pod_autoscaling.go:72\n Jun 12 14:01:32.286: Number of replicas has changed: expected 3, got 4\n \n\n"
1
### Bug summary The line `fig, ax = plt.subplots(nrows=1, ncols=2, figsize=[12,6])` results in the following warning message: `MatplotlibDeprecationWarning: The resize_event function was deprecated in Matplotlib 3.6 and will be removed two minor releases later. Use callbacks.process('resize_event', ResizeEvent(...)...
### Bug report **Bug summary** Using GTK3Cairo, TkCairo, and Qt5Cairo cause specgram() y-axis data to appear to rotate 180 degrees, while x-axis data is correct. Compared with, for example, Qt5Agg, TkAgg, and GTK3Agg. **Code for reproduction** MWE (from comment #11715 (comment)): ax1 = plt.subplot(...
0
* VSCode Version: 1.0.0 * OS Version: Windows 10 10586.218 Steps to Reproduce: 1. Create new file 2. Type anything 3. Close visual studio code or file. Below alert will display: ![vsc](https://cloud.githubusercontent.com/assets/7344772/15090192/1fee2f80-1450-11e6-8f0d-e38529fc8924.png) Either save or n...
The test plan for the December iteration plan #917. ### Debug - long text wraps in repl * win @alexandrudima * mac @jrieken * linux @sofianhn Verify that long text now nicely wraps across multiple lines in the debug repl both for evaluation requests and for output text. ### Debug - breakpoint state * win...
0
nyuszika7h@cadoth ~/src > git clone https://github.com/kennethreitz/requests.git Cloning into 'requests'... remote: Counting objects: 18867, done. remote: Compressing objects: 100% (11/11), done. error: object 5e6ecdad9f69b1ff789a17733b8edc6fd7091bd8: badTimezone: invalid author/committer...
I can't clone this repo. It complains: $ git clone https://github.com/kennethreitz/requests Cloning into 'requests'... remote: Counting objects: 17048, done. remote: Compressing objects: 100% (39/39), done. error: object 5e6ecdad9f69b1ff789a17733b8edc6fd7091bd8: badTimezone: invalid aut...
1
When I change the transitions in the default variables (like: https://material-ui-1dab0.firebaseapp.com/customization/themes/#the-other- variables), the app throws me the following error: `TypeError: theme.transitions.create is not a function` * I have searched the issues of this repository and believe that this...
## Summary There's a similar issue in #2302. Currently, this library did not provide TextFieldBox yet. Therefore I wanted to know if the team will implement it or not. The specification can be found here. It's appearance would look something like this : ![image](https://user- images.githubusercontent.com/2...
0
# 🚀 Feature request Ensure reproducibility when loading pretrained models. ## Motivation In order to distribute results in a transparent manner, it is important to ensure reproducibility. When loading a pretrained model, I cannot get the same weights, probably due to non-initialized weights. Even when using `s...
### System Info $ transformers-cli env 2022-05-05 11:22:48.908890: I tensorflow/stream_executor/platform/default/dso_loader.cc:49] Successfully opened dynamic library libcudart.so.10.1 WARNING:tensorflow:From /home/arnold/bin/anaconda/envs/nlp/lib/python3.8/site-packages/transformers/commands/e...
0
`tensorflow.python.tools.optimize_for_inference_lib.optimize_for_inference` is producing an invalid graph definition. So far as I can tell this is not user error; optimizing a valid graph definition should produce a valid graph definition, so this appears to be a bug. The following code demonstrates the problem. You...
Env: Tensorflow-GPU 1.13.1 Tensorboard 1.13.1 TensorboardX 1.6 Installed time: 2019/03/22 Installed from PIP OS: Windows 10 Python version: 3.7 CUDA: 10 Problem: I use command "tensorboard --logdir ... --host 127.0.0.1" to run the program, and there are many log output in the command. And not add "...
0
Hello. I've got strange behavior for experiments. I'm working with matrix (for example **b** ) that in result of multiplying **b.T * b** should be singular matrix and for inverse method should be arisen error like _numpy.linalg.linalg.LinAlgError: Singular matrix_. But result was high/low values. Code below: ...
I am trying to solve several independent systems of equations at the same time using `numpy.linalg.solve`, e.g., `a` has shape (N, M, M). The challenge I'm running into is how to deal with the case when, for some values of N, the last two dimensions comprise a singular matrix. Consider this example im...
1
It seems `./pavement.py` has some dead code, in particular we noticed that the `bootstrap` task cannot run because there is a typo in the `bscript` name (`boostrap.py`, not `bootstrap.py`) See PR #11005
Just a few notes resulting from 1.10.4 release for future reference * `paver sdist` must be run before `paver write_release_and_log,` otherwise fail. * docs are generated with `paver pdf` (not in documentation) * paver generates `NOTES.txt`, need to rename `README.txt` and sign for Sourceforge. * Changelog w...
1
For example, `0` for markdown, large enough for code.
It would be interesting to have the ability to define different word wrap values for _different languages_ , specially if you use **Code** for editing normal programming languages like JavaScript, Pascal and _non_ programming languages, like Markdown. I tend to respect the word wrap values defined in the main IDE fo...
1
Avoid issues like the one fixed by #4204
The linkchecker that we use at the moment does not seem to check external links hence #5379 and others I tried turning on the sphinx linkchecker `python make.py linkcheck` which seems to work but generate a fair number of redirect warnings and errors. Perhaps it is worth turning this on pr default? See https://gist...
1
### Is there an existing issue for this? * I have searched the existing issues ### Current Behavior I have some global installed packages which I can't see in `npm -g ls`. I also can't see them being outdated with `npm -g outdated`. These packages are eslint, yarn, semver I tried to remove and re-install them(...
### Is there an existing issue for this? * I have searched the existing issues ### Current Behavior I have ESLint 8.0.0 installed globally via `npm install -g eslint` (using Node v16.11.0 x64/npm v8.0.0, as well as with npm7.x, on win11). The issue is that, if I run `npm list -g` then unfortunately ESLint is no...
1
Hi, I am using Snapshot testing for my application. My application has a theme, based on some parameter passed to the component. The theme changes the look n feel of the app, by adding some classes to the elements. I want to generate snapshots for the components for both the themes. But I do not want to duplic...
Describe what you were doing when the bug occurred: 1. React Development tool is not running by this 2. 3. * * * ## Please do not remove the text below this line DevTools version: 4.8.2-fed4ae024 Call stack: at Store.getElementAtIndex (chrome- extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:193...
0
**TypeScript Version:** 1.8.10 **OS Version:** MacOS In fact, I just begin to learn typescript, because the angular2.0, I use the `https://github.com/angular/quickstart` as the begining, and I change it's file structure, add ts folder, and move the typescript file to ts folder, change npm scripts: `"start": "...
**TypeScript Version:** 1.8.9 The tsserver code assumes that OSX file systems are always run case insensitive. However this is not the case. When the tsserver is used on a case sensitive file system code assist and other features stop working do to file lookup misses. For all the details please see: microsoft/vsc...
0
The WEBGL_depth_texture extension is widely supported, at least on desktop implementations of WebGL. It would be nice to be able to use depth textures in three.js; render to depth and stencil buffers, as well as using depth textures as input. @alteredq mentioned in #806 that he ran into some limitations when playi...
Hey guys, wrestled with this for days but need some help. ( THREE.js R69, Windows8, NVIDIA GeForce GTX 760, Chrome 39.0.2171.71 m ) This JSFiddle http://jsfiddle.net/Angrypickle/mbtdxazy/24/ shows a LensFlare image appear in front of the PerspectiveCamera as the camera moves away (and is looking away) from the act...
0