text1
stringlengths
2
269k
text2
stringlengths
2
242k
label
int64
0
1
From URL: https://flutter.io/get-started/test-drive/ In Android Studio 3.1 for Linux it also asks you to fill out the Flutter SDK path
As the title says, I can build from the command line and install on my device, but when I try to run an archive in Xcode, I get the following error. ld: warning: directory not found for option '-L/Volumes/Jeff/Library/Developer/Xcode/DerivedData/Runner-dhytviduagshlmbbozuwftfdndsj/Build/Intermediates.n...
0
### Bug report **Bug summary** Playback of mp4 files written by FFMpegWriter shows a rolling image if the dpi setting does not match that specified when a figure is created. In particular, this happens if the movie frame images are being displayed on the screen, e.g. during creation of the movie. (There is also an...
### Bug report **Bug summary** The `print_figure` function in the `FigureCanvasBase` class records the current figure's dpi, sets it to the requested dpi for the saved figure, and then resets it to the original. Setting the dpi invokes a property function, `_set_dpi` that calls the figure's `set_size_inches` method...
1
In [8]: a = np.uint64(2) In [9]: b = a + 1 In [10]: type(b) Out[10]: numpy.float64 !
Is this behavior expected? >>> print type(np.uint32(0) + int(0)) <type 'numpy.int64'> >>> print type(np.uint64(0) + int(0)) <type 'numpy.float64'> The latter took me by surprise!
1
I have compiled OpenCV 3.0.0 for python on Windows. When I tried to run the code bellow I got this error message: "The data should normally be NULL!" import numpy as np import cv2 img1 = cv2.imread('C:\\Users\\soboh\\Documents\\pcb.jpg',0) # queryImage img2 = cv2.imread('C:\...
The following code returns an error. sift = x2d.SIFT_create(1000) features_l, des_l = sift.detectAndCompute(im_l, None) features_r, des_r = sift.detectAndCompute(im_r, None) FLANN_INDEX_KDTREE = 1 index_params = dict(algorithm=FLANN_INDEX_KDTREE, trees=5) ...
1
When editing the profiles.json settings file, it is currently not possible to specify more than one defaultProfile. As a result, it is not possible to have the Terminal automatically start up with more than one tab. It would be extremely convenient, to be able to specify the 3 or 4 most commonly used command-line env...
Being in windows it makes no sense to not being able to set font size, face type, font and background colors, pointer size and form, etc... just from JSON. It's unnecessarily annoying. That should be possible to be done from a window UI though translated automatically to JSON.
0
I`m trying to add an "exit app" button in Cupertino Tab Bar but it just gives me a blank screen. ## Steps to Reproduce https://gist.github.com/ricardobrg/b8cf4744da1e5e6882e1a340b9f8a67d ## Logs [ +32 ms] [/Users/vexra/Downloads/flutter/] git rev-parse --abbrev-ref --symbolic @{u} [ +35 ms] Ex...
When attempting to run any flutter project after updating to MacOS Mojave Beta 10.14 a fatal build error occurs. ## Steps to Reproduce 1. Create a new default Flutter project or open the example/HelloWorld 2. Open the iOS simulator 3. Attempt to run the flutter project in the iOS simulator (This will fail) #...
0
`@code_native` appears to be a little broken on LLVM 3.7. The labels are all printed at the very beginning, which is **not** very helpful to figure out the control flow..... julia> function f(a) s = zero(eltype(a)) @inbounds for i in 1:length(a) s += a[i...
ref `b2e69d0`#commitcomment-12053593 and https://github.com/JuliaLang/julia/pull/11852/files#r34115071
1
Module loaders like systemjs expect module paths to point to a valid file path, including the .js extension. Although exploringjs says the extension might not be needed, the module loader spec's default behaviour has not yet been decided upon. So for code to have the widest possible support it would be good to have a...
Currently, TS can't find modules when you use a file extension in the import name (`import {Foo} from './foo.ts';`) - SystemJS updated and file extensions are now _required_ (though the spec issue is still under discussion) on imports (without setting some legacy settings in `System.config`). So when compiling with `...
1
**Migrated issue, originally created by Anonymous** it is a PITA to get a function index to work right using sqlalchemy. for those that aren't familiar... postgres , oracle and a few other dbs all allow for indexes to be created as a function the idiomatic example is: create unique index user_email_address_uidx ...
**Migrated issue, originally created by Anonymous** The following query: list(session.query(Employee, Employee.company)) unexpectedly returns 5-element tuples [e1, 1, u'e1', u'employee', 1), (Employee e2, 2, u'e2', u'employee', 1), (Employee e3, 3, u'e3', u'employee', 2...
0
As Kubernetes moves to support more multi-tenant use cases and to increase security in general, it would be helpful if there was a way to firewall pods from other pods, ideally using something simple like labels. Is there a preferred approach to support this use case? If this is implemented via dynamic iptables rule...
I'd like to update a replication controller's name using `kubectl`, but am unable to do so. Basically, I want to mimic the `rolling-update` command where it creates a temporary rc name and then renames it. There are the steps I'd like to take: kubectl rolling-update app app-tmp -f app-rc.json kub...
0
# Checklist * I have read the relevant section in the contribution guide on reporting bugs. * I have checked the issues list for similar or identical bug reports. * I have checked the pull requests list for existing proposed fixes. * I have checked the commit log to find out if the bug was alrea...
# Checklist * I have verified that the issue exists against the `master` branch of Celery. * This has already been asked to the discussion group first. * I have read the relevant section in the contribution guide on reporting bugs. * I have checked the issues list for similar or identical bug reports....
0
For example, pressing `Alt+F` should open `File` menu, then press `->` to move to `Edit` menu. On Windows 7/8, this does not work after the main editor is focused, except for the welcome page. On Ubuntu Linux (Unity), the menu bar can be activated normally by keyboard. Atom version: 0.201
The normal Windows `Alt+{letter}` menu shortcuts don't work in Atom. Holding `Alt` highlights the relevant letter in each menu name, but then pressing the letter doesn't open the menu. For example, `Alt+F` should open the File menu, but instead the Key Binding Resolver shows it invoking the following: ...
1
I am not sure if the title is clear enough. The reason for this issue for me is the spatial plugin for neo4j (https://github.com/neo4j/spatial). If you want to use neo4j with the spatial plugin completly via cypher and the rest api over http, it is not possible to configure an autoindex which takes care of adding nod...
Using neo 2.0.1, the query: match (n:States) where n.name =~ '.*rul.*' return n.name order by n.name desc limit 200 returns result after 14 secs. Number of n:States nodes is about 450 000, number of nodes fullfilling the condition is about 130 000 and count with the same condition ret...
1
* Electron Version: 2.0.2 * Operating System (Platform and Version): macOS 10.13.4 * Last known working Electron version: 1.7.12 This has been noticed when trying to upgrade VS Code to Electron 2.0.2 in microsoft/vscode#52196 **Expected Behavior** Characters with opacity in a monospace font should be render...
* Electron version: 1.7.6 * Operating system: Windows 10 ### Expected behavior Every time some the user clicks a button that downloads a file in the browser the event "will-download" should be fired. ### Actual behavior Behavior 1. The event "will-download" is fired only for the first time some file is downlo...
0
I have not thought it out, but there was a (now cleared out) issue about `np.nditer` not allowing to access the `it.operands` after the `with` statement is finished. For return operands, accessing it only after finishing everything doesn't seem unreasonable though. EDIT: Example code: import numpy as ...
See some discussion in #10951. The issue is that the nditer `operands` attribute does not always refer to the actual operand array, but rather to the temporary buffer/copy of the operand array, despite what the nditer docstring says. This is a problem for code like: >>> def square(a): ... wit...
1
### System info * Playwright Version: [v1.36.1] * Operating System: [Windows container on GitLab.] * Browser: [Chrome, Chromium] * Other info: After upgrading to v1.36.1 I ran the Playwright job in GitLab and I got some error messages and Playwright tests don't run .The errors displayed after running `npx p...
### System info * Playwright Version: 1.30.0 * Operating System: windows 10 * Browser: chromium ### Source code * I provided exact source code that allows reproducing the issue locally. **Config file** // playwright.config.ts export default {} **Test file (self-contained)** ...
0
By following the Templates section on Best Practices book, I should have the following code in my controller: public function indexAction() { return $this->render('default/index.html.twig'); } This throw the following exception: Template name "default/index.html.twig" is...
Hello, I have update to 2.1.5... and now in all my translated site i heve this error: An exception has been thrown during the rendering of a template ("[ERROR 94] Validation failed: no DTD found ! (in n/a - line 2, column 21) [ERROR 1877] Element '{urn:oasis:names:tc:xliff:document:1.2}trans-unit': Duplicate key-...
0
# Summary of the new feature/enhancement I want to extend my keyboard layout to allow entering specific Unicode characters that are not accessible via the plain keyboard layout. Specifically, as a German speaker who spends 99% of the time coding and 1% writing short emails or chat notices in German, I want to extend...
FancyZone Editor v2 **Current list of like-to-have improvements** * Improved Multi-monitor awareness and editing * Easier renaming * Better initial screen. Currently it is all about creating versus what i have done in the past. This would allow for easier hot swapping of layouts. One unified screen showing pr...
0
# Summary of the new feature/enhancement As a developer we are always working with multiple terminal windows at the moment, tabs make it easier, but makes it difficult in certain scenarios. If we have an ability to split the terminal screen vertically and horizontally just as ConEmu allow. It would be great. Use Ca...
![image](https://user- images.githubusercontent.com/18356694/68697343-41ea2380-0544-11ea-8218-601b57fdd835.png) This is the megathread for tracking all the work related to Panes in the Windows Terminal. ### 1.0 Features 1.0 Features * Original issue: #532 -> added in #825 * #991 Panes should be resizable with...
1
Hi, Is there a way to run batches with QuestionAnsweringPipeline rather than just one example? Thanks.
# 🖥 Benchmarking `transformers` ## Benchmark I'm trying to benchmark QA model with `bert-large-uncased-whole-word-masking- finetuned-squad`. But it seems it is extremely slow e.g. 3-4 sec for 1 question with 2 contexts. I feel there is something I'm missing in pipeline. ## Sample Code: def answer(...
1
[Enter steps to reproduce below:] 1. ... 2. ... **Atom Version** : 0.166.0 **System** : linux 3.13.0-35-generic **Thrown From** : Atom Core ### Stack Trace Uncaught Error: Atom can only handle files < 2MB for now. At /usr/share/atom/resources/app/src/project.js:355 Error: Atom can ...
I really like having different panes but that aren't very friendly to the keyboard. For example if I want to open a new file into a split right pane, I have to open an EXISTING file into the pane, have two copies of it open long enough for me to CLICK into the new file then open the file I want on the right side of ...
0
Hello, I've been using the search engine with powertoys run a lot. Something I've noticed is that every time I try and run an application I use less frequently, the search engine only brings up files with a similar name, essentially every program I have installed has smaller bin with the same name. It would be incred...
I tend to search for already running processes quite frequently. It would be awesome to write something like this `Chrome @running` Do you think this concept can be generalized as a search query mechanism for Power Toys Run?
1
# What / Why Hi There, i have been trying to install the dependencies to a web-application my company is building. When attempting a "npm install", this returns an error. I Have added files to help. ## When Whenever i do an "npm install" ## Where a clone of a repository that resides on bitbucket ## How ### Cur...
### *Updated* as of 01/15/2021 **Note: Please readthis doc before filing a new issue.**
1
# Summary of the new feature/enhancement Can we hide app icon in taskbar after setting complete. and have a hot to show in desktop! # Proposed technical implementation details (optional)
I would love to see an option to hide the tray icon.
1
##### System information (version) * OpenCV => 4.2.0 * Operating System / Platform => Windows 10 64 Bit * Compiler => MSVC++ 14.24 ##### Detailed description The static variables named "__initialization_mutex" are never freed, causing (false) memory leak detections. For example one such variable is in modu...
From question asked on stackoverflow: http://stackoverflow.com/questions/32845535/opencv-3-0-visual-studio-memory- leak-detector-false-positive If I enabled memory leaks detector in Visual Studio (to detect leaks in my application) I have always some additional memory leaks from OpenCV and it's very difficult to fin...
1
##### Issue Type: “Feature Idea” ##### Ansible Version: `c6b26ff` ##### Summary: Hi, I need to dump all the vars available at certain steps of playbook so I tried to follow this tip. At first it looks like it does what I need but then I noticed that dumping `vars` gives me variables specified only in role's ...
Currently if we are trying to register an instance that has not yet been registered with the elb an exception is thrown as follows: Traceback (most recent call last): File "/home/ubuntu/.ansible/tmp/ansible-1388916053.26-72858643329411/ec2_elb", line 1412, in main() File "/home/ubuntu/.ansible/tmp/ansible-13...
0
Is there interest in adding the mish activation function to `jax.nn`? > It has a much smoother curve vs relu, and in theory, that drives information > more deeply through the network. It is slower than ReLU, but on average adds > about 1-3% improvement vs ReLU. - LessW2020, Fastai forums
While implementing setdiff1d, I've come across this weird case where the `np.in1d` would return duplicate items if it finds such items and the `np.in1d` implementation would return the set-like array. I've attached a code sample to reproduce this below: from jax import numpy as jnp # version: 0.2.3 ...
0
### Version 2.6.10 ### Reproduction link https://jsfiddle.net/ae82rfnv/ ### Steps to reproduce While operating, carefully notice of the transitions Working flow 1. tick first box (parent transition plays) 2. tick second box (child transition plays) 3. untick second box (child transition plays) 4. untic...
### Version 2.5.22 ### Reproduction link https://jsfiddle.net/wx91uLft/ other: https://jsfiddle.net/ae82rfnv/ ### Steps to reproduce * Show/hide elements with the "Toggle" button. * Show/hide elements with the "Toggle Ticked" button. Shows a workaround. ### What is expected? All transitions should be tri...
1
So here's my setup (using pandas 0.16.2): >>> midx = pd.MultiIndex.from_product([['bar', 'baz', 'foo', 'qux'], ['one', 'two']],names=['first','second']) >>> df = pd.DataFrame(np.random.randint(10,size=(8,8)),index=midx) >>> df 0 1 2 3 4 5 6 7 first second ...
xref #2567 In [27]: data = pd.DataFrame({'hr1': [514, 573], 'hr2': [545, 526], ...: 'team': ['Red Sox', 'Yankees'], ...: 'year1': [2007, 2008], 'year2': [2008, 2008]}) ...: In [28]: data Out[28]: hr1 hr2 team...
0
The following throws a very confusing error (pandas 0.13.1): pd.DataFrame([[1,"abc", 1]], columns=["a", "b", "a"]).describe() File "C:\Program Files\Python 3.3.3\lib\site-packages\pandas\core\frame.py", line 3790, in describe numdata = self._get_numeric_data() File "C:\Program Files\Python 3.3.3\lib\site-packag...
In [88]: idx = pd.Index([1, 2, 3]) In [89]: idx.summary() Out[89]: 'Int64Index: 3 entries, 1 to 3'
0
## Bug Report * I would like to work on a fix! **Current Behavior** My config is set to `>=0.5% in GB`, but now adding this parameter brings the target version for Chrome down to v4. I've tried adding `>=0.5% in GB and not chrome` but no combination seems to shift the Chrome version. When it gets to `>=40% in G...
The only place I saw "I'd like to use JavaScript inside .babelrc is here: #4449, so I am opening a proper issue about `.babelrc.js`. ### Expected Behavior I would like to be able to provide: .babelrc.js module.exports = { plugins: [ ["babel-plugin-transform-cool", { isCool: m...
0
All the downloadable packages are named "atom.x86_64.rpm" , could you please specify the version in the package names , it will be so helpful Thank you
Can we get the version appended to the rpm, deb and dmg packages as they are built. I can't speak to dmg for mac, but it is considered standard practice to include the version and release as part of the filename in rpm and deb packages, especially since atom doesn't update itself and there are no YUM repos (yet).
1
`LoggingProxy.write()` currently always returns `None` (because in Python2 that was the correct return type!) From the Python docs: > `write(s)` > Write the string s to the stream and return the number of characters > written. Therefore methods that rely on `sys.stdout.write()` expect `LoggingProxy` (which `cel...
# Checklist * I have verified that the issue exists against the `master` branch of Celery. * This has already been asked to the discussion group first. * I have read the relevant section in the contribution guide on reporting bugs. * I have checked the issues list for similar or identical bug reports....
0
For certain well-chosen inputs, `group_var_float64` may return small negative values due to roundoff error. This then interferes with e.g. computing aggregate standard deviations: >>> import pandas as pd >>> import numpy as np >>> df = pd.DataFrame({'a': (0, 0, 0), 'b': 0.832845131556193 * np.o...
I propose adding a pipe method to GroupBy objects, having the same interface as `DataFrame.pipe`/`Series.pipe`. The use case is reusing a GroupBy object when doing calculations, see use case example below. ## Use case A pipe is useful for succintly reusing Groupby objects in calculations, for example calculating p...
0
0.189.0 crash often...... when I copy text
I'm using Atom ver. 0.189.0 on Ubuntu 14.04.2 LTS. When I copy a piece of text in atom and I try to paste it the right-click menu either won't show up or will show up without giving me option to paste. The paste shortcut doesn't work either and it creates issues even if I try to copy and paste text from other program...
1
Example: https://github.com/symfony/symfony/blob/v3.1.3/src/Symfony/Component/Security/Core/Authentication/AuthenticationProviderManager.php#L33 Could be like: /** * @var AuthenticationProviderInterface[] */ private $providers; Or at least: /** * @var array ...
Hi, I recently upgrade from sf 2.3.9 to 2.3.10 and i'm surprised that elements cannot be removed from collections in forms. But after i debugged the symfony form's core, i found that there's a problem with the method onSubmit in class Symfony\Component\Form\Extension\Core\EventListener\ResizeFormListener. This is ...
0
I am using torch1.5 + cuda10, call cuda-function with c++ code and use it in python by pybind. 1、paste my c++ code, name bind_cudevice.cc 2、compile bind_cudevice.cc with my g++ compile code 3、paste my python code named test.py 4、Finally you will see core dump, this core only with cuda10+torch1.5 My Environme...
## 🐛 Bug I am using cusolverDn in c++ and import it to python with pybind11. Segment Fault after use cusolverDnCreate() and cusolverDnDestroy() with torch. NOTE: ### **1: When the demo run with Torch1.2,it run success, the SegFault disappear, does it mean Torch 1.5 has some bug?** ### **2: This SegFault only ...
1
# Environment Windows build number: windows 10 PowerToys version: 0.16.1 PowerToy module for which you are reporting the bug (if applicable): FancyZOnes and Window Walker # Steps to reproduce Open chrome in two desktops, each window in different zone go to 1st zone, 1st chrome window, ...
This issue is to keep track of all the FancyZones bugs related to Virtual Desktops. * Different layouts fight when assigned to different virtual desktops **FIXED** * Fancy Zones window re-arrange every active desktop switch **FIXED** * Windows don't stay in position **FIXED** * Windows losing zones after swi...
1
Is there a reason why allow-env does not support a whitelist? I like the idea of knowing explicitly what environment variables the program can access. Often a program should only be able to access a few variables such as `DEBUG`. Example invocation DEBUG=* deno run --allow-env=DEBUG,TEST main.tsx ...
Currently `--allow-env` gives program unlimited permission to access any environment variable. It's much strong privilege and there should be more limited permission control for them. Like `--allow-net=:9999`, how about these? `--allow-env=DEBUG`, `--allow- env=DENO_DIR,DENO_INSTALL` `Deno.env()` should also be re-...
1
The following code works in requests 2.7.0 but raises an assertion error in 2.8.0: import requests session = requests.session() session.headers.update({'x-api-key': 'blah', "Accept-Encoding": "gzip, deflate", "User-Agent": "magnet-sdk-python"}) session...
In version `2.7.0` I was using `Requests` constructor with `json` parameter specified, like: json_data = [ ... ]; r = requests.Request('POST', url, json=json_data) And in the `2.8.0` version this code does not work, because I do not specify `data` parameter. Inside constructor we get `self.da...
1
##### System information (version) ##### Steps to reproduce ##### Issue submission checklist * I report the issue, it's not a question * I checked the problem with documentation, FAQ, open issues, answers.opencv.org, Stack Overflow, etc and have not found solution * I updated to latest OpenCV version and...
##### System information (version) * OpenCV => 4.2.0 * Operating System / Platform => Windows 64 Bit * Compiler => Visual Studio 2019 ##### Detailed description I built and installed OpenCV 4.2.0 from source on Windows following guides from this blog post. The build and installation finished without error an...
1
Previously with the chocolatey based install I was able to open a command prompt and type `atom .` to open atom in the current folder, and after that command executed, my prompt would simply continue and allow me to do other things in the folder. After the new install, when I type `atom .` I get the following output...
After loading 146 I have a problem starting atom. I use `atom --dev .` in my console and instead of just starting atom it shows debug stuff I'm not familiar with and never returns to a prompt. It runs in the foreground instead of separately. This also happens in safe mode. This is what I see ... C:\ap...
1
Hello. Thank you for SQLAlchemy! It makes working with DB in Python a dream! I am wondering if I have run into a possible bug. I am getting a funny error when I have ENUMs in my tables in that the `before_create` statement seems to be ignored when the first CREATE statement is not CREATE TABLE, and thus failing to ...
**Migrated issue, originally created by Michael Bayer (@zzzeek)** from sqlalchemy import create_engine, event eng = create_engine("mysql://scott:tiger@localhost/test", echo='debug') @event.listens_for(eng, "first_connect", insert=True) # make sure we're the very first thing @even...
1
### Describe the workflow you want to enable Would be cool to have a preprocessor that maps dates (str or unixtime) to its' respective date parts: dayofmonth, dayofweek, hour,etc. There's any reason this is not included in sklearn? In case not, I could do a PR ### Describe your proposed solution > > > from skle...
### Describe the workflow you want to enable Do we want to add a transformer for pandas datetimes? We haven't really added much based on pandas yet but this would be a pretty natural thing to add. You could argue that you can do something like `FunctionTransformer(lambda X: X.dt.dayofweek)` or similar for the ot...
1
# Checklist * I have verified that the issue exists against the `main` branch of Celery. * This has already been asked to the discussions forum first. * I have read the relevant section in the contribution guide on reporting bugs. * I have checked the issues list for similar or identical bug reports. ...
-I'm using celery Version: 4.1.1 In the celery Task I'm using group, chain and chord from celery To excute the task I need to set the --concurrency=4 everything works fine When I call pytest, using the worker for test (celery_session_worker) to test this task, a timeout excpetion occured. Can you please advise...
0
### System info * Playwright Version: v1.31.0 * Operating System: macOS 13.2.1 Chip Apple M2 * Browser: Chromium * Other info: ### Source code **Playwright Server:** import * as playwright from "playwright"; export type BrowserTypes = "chromium" | "firefox" | "webkit"; expo...
### System info * Playwright Version: [v1.32.2] * Operating System: [Windows 10] * Browser: [Firefox] ### Source code * I provided exact source code that allows reproducing the issue locally. **Config file** // playwright.config.ts import { defineConfig, devices } from '@playwright/test...
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 When running an npm script with a colon (`:`) in its name, Windows will return a number of different errors. Sometimes the error is ...
### 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 I am unable to run scripts defined in my package.json. `npm run <script>` outputs `The filename, directory name, or volume label synt...
1
I think that bootstrap should include icons on alert messages (errors/warnings/info/etc) by default. Having icons on alert messages would increase WCAG 2.0 (accessibility) across the web. The icons would allow colorblind users to understand messages easier. Drupal had to solve this problem recently. Here's the issue...
Bootstrap version 2.3.1 Samsung S3 default android browser android 4.1.1 the <select> looks identical to an <input> \-- there's no dropdown "icon" on the right side.. for multiple <select multiple="multiple"> there's no "scrollbar" or content to duplicate, use default browser, surf to: http://twitter.github.io...
0
I don't know what happened
## Bug Report When i test `RuleAlteredJobAPIImpl.stopClusterWriteDB` method `lock.tryLock()` execute succeed, but the `lock.isLocked()` return false. ### Which version of ShardingSphere did you use? master `b4f7482` ### Which project did you use? ShardingSphere-JDBC or ShardingSphere-Proxy? ShardingSphere-Prox...
0
I decided to try and run a node project of mine with the following arguments: $ deno run --node-modules-dir --allow-env --allow-sys ./src/main.ts --ext ts It gave back the following error: error: Parsing version constraints in the application-level package.json is more strict at th...
I have a node module `test_node` which is locally installed within the deno project into a `node_modules` folder via: `npm install --save ../test_node` package.json: { "dependencies": { "test_node": "file:../test_node" } } When I run with the node-modules-dir flag: `deno ru...
1
**Do you want to request a _feature_ or report a _bug_?** bug **What is the current behavior?** We are trying to create an external module which will be imported in main app. Here is the module : export const MyHelloComponent = (props) => { const [test, setTest] = useState(); return...
I want to save a class instance, not just plain object, with `useRef` hook. And, I dont want to construct it each time hook function is invoked. Is it possible to do that? My thoughts were: const instanceRef = useRef(() => new Instance()) But `useRef` does not accept the _initial value_ as a functio...
0
## 🐛 Bug We have a number of machines with Threadripper CPUs, and 2 NVIDIA GPUs, some have 1070ti cards some 1080 some 1080ti and one with titanXp, they all displayed this behavior, when switching to using data parallel, training would fail, i.e. accuracy would not go up. We first saw this in our code base, but it ...
I'm having trouble getting multi-gpu via `DataParallel` across two Tesla K80 GPUs. The code I'm using is a modification of the MNIST example: import torch import torch.nn as nn import torch.nn.functional as F import torch.optim as optim from torchvision import datasets, transforms f...
1
Due to the way MSYS sandboxes file paths, paths passed to `cl.exe` are expanded into values which are invalid outside of MSYS.
I anticipate a lot of "GEE I WONDER WHY I DIDN'T THINK OF THAT" when newcomers come into the channel asking how to make their types hashable, since the hash trait has some weirdo type signature, and the answer is "Derive this other typeclass you've never heard of before." Why can't we just make it be #[deriving(Hash...
0
Unlike the VS Code installer for Windows, the VS Code uninstaller for Windows is not signed. You can fix this by using the `SignTool` directive in your Inno Setup script. See http://www.jrsoftware.org/ishelp/index.php?topic=setup_signtool For dual signing it's easiest to use Inno Setup 5.5.8 instead of 5.5.6 as you ...
At first, moving lines up and down didn't seem to work at all, but then I found a stranger issue. Notice how line 6 becomes a mix of lines 5 and 7: ![bug](https://cloud.githubusercontent.com/assets/22350/15774263/c4dca018-297b-11e6-807a-319997effbfe.gif) Here's the buffer, notice the first line is empty, so you can...
0
Edit: Issue has been exported to #8156 So I deleted content from here so that there is no duplication!
### Version 2.6.11 ### Reproduction link https://codesandbox.io/s/epic-neumann-m8hqz ### Steps to reproduce Open link ### What is expected? Should display button under the text ### What is actually happening? Button is not displayed * * * I try to add separate vue component in svg. This component has foreg...
0
Updated to the latest version of Atom 0.121.0. When opening Atom I am now forced into full screen mode.. Toggling the mode doesn't seem to fix the issue either. Possibly related to #3256 and #3257? Attached is a screenshot: ![screen shot 2014-08-13 at 7 51 19 pm](https://cloud.githubusercontent.com/assets/5354908/...
![screenshot_49](https://cloud.githubusercontent.com/assets/7317458/3932689/5819bcd0-246f-11e4-8973-451a17f7685f.png) stick on the bar at the top - no window around. fresh install from www.atom.io \- version 0.122.0
1
In PR #8354 we noted that the autograd engine always clears its final callbacks on execute(): auto Engine::execute(const edge_list& roots, const variable_list& inputs, bool keep_graph, bool create_graph, ...
Currently, `final_callbacks_` of an autograd engine is a vector shared by all backward passes on this engine. The autograd engine clears final callbacks at the beginning of the backward call. With reentrant backward calls, the final callback enqueued by the original backward call will be cleared by the reentrant ones...
1
Describe what you were doing when the bug occurred: 1. 2. 3. * * * ## Please do not remove the text below this line DevTools version: 4.2.0-a8b8ffb89 Call stack: at e (chrome- extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:154414) at e (chrome- extension://fmkadmapgofadopljbjfkapdkoienihi/b...
PLEASE INCLUDE REPRO INSTRUCTIONS AND EXAMPLE CODE I got this error when I click 'Ranked'. * * * ## Please do not remove the text below this line DevTools version: 4.0.4-3c6a219 Call stack: at chrome- extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:11:11441 at Map.forEach () at commitIndex (chrome...
1
http://build.golang.org/log/a9043ae6a94865c40b47c457535a29c01a0f7449 ##### ../misc/cgo/testsanitizers FATAL: MemorySanitizer can not mmap the shadow memory. FATAL: Make sure to compile with -fPIE and to link with -pie. FATAL: Disabling ASLR is known to cause this error. FATAL: If runnin...
What steps will reproduce the problem? Try to tokenize valid HTML where CDATA section contains 'tags' What is the expected output? No tokenization inside CDATA section is done. See http://www.whatwg.org/specs/web-apps/current-work/multipage/tokenization.html#cdata-section-state ...
0
The workbench on visual studio online on Azure has a nice power-shell terminal to let user work with their workplace in cloud. Other mature IDE products also have term window in their workbench. That way, user can interactively exec some command without switch between desktop and vscode window.
It would be great if vscode has integrated terminal feature refer vim or atom https://atom.io/packages/term3 I saw this suggestion pending in uservoice(https://visualstudio.uservoice.com/forums/293070-visual-studio- code/suggestions/7752357-integrated-terminal) and repost here since it has specific repo
1
#### Problem description: ".resample" documentation too vague url: http://pandas.pydata.org/pandas- docs/stable/generated/pandas.DataFrame.resample.html e.g.: **rule:** "The offset string or object representing target conversion" No idea what is meant by that but a more helpful description to amateurs like me see...
Reference docs (see: http://pandas.pydata.org/pandas- docs/stable/generated/pandas.Series.resample.html): * Add to docs the list of options that can be passed to `fill_method`. Some of which are `pad`, `bfill`, `ffill`. \-- The list seems to be documented for the `method` on `fillna`: http://pandas.pydata.org/pa...
1
* I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior There is a search page with infinite height(lazy load paging) for scrolling.When i clicked an item of search results on this page, i go to search detail page.That's ok for now.Then i want to go back the s...
Getting this when I try to reference a separate project (`repo/b/components/layout.js`): ModuleParseError: Module parse failed: /path/to/repo/a/node_modules/react-hot-loader/webpack.js!/path/to/repo/b/components/layout.js Unexpected token (65:17) You may need an appropriate loader to handle thi...
0
I tried to produce a stand-alone example but couldn't so far. Maybe the answer is already apparent though. This started happening just recently (maybe after updated pandas to 0.17.1) but worked well before. I'm doing a multi-column `agg` in a groupby. One of the columns is a datetime of which I want the first ele...
Hi all, I've found an inconsistency between pandas 0.17 and 0.16.2 when aggregating on UTC timestamps. Here is a snippet to reproduce the problem: import numpy as np import pandas as pd np.random.seed(42) data = pd.DataFrame({ 'factor': np.random.randint(0, 3, size=60), ...
1
#### Description Clustering with MiniBatchKMeans produces indexing error. I have a crontab doing some clustering every hour. This error manifests around 4-5 times in a day. I assume the kmeans initialization is stochastic? Unfortunately right now I can't find a dataset for reproducing because the error happens sto...
#### Description Fitting a (20242848, 5) numpy array using any more than 4 clusters results in IndexError #### Steps/Code to Reproduce from sklearn.cluster import KMeans src = gdal.Open(fname) img = src.ReadAsArray() X = img.transpose(1,2,0).reshape(-1, img.shape[0]) print X.shape ...
1
_Original tickethttp://projects.scipy.org/scipy/ticket/1705 on 2012-07-20 by trac user ale.fener, assigned to unknown._ Hi all. I was using the class gaussian_kde with a similar code snippet: density = gaussian_kde(data) xs = numpy.linspace(xmin, xmax, 2*len(data)) ys = density(xs) the problem is that when ...
_Original tickethttp://projects.scipy.org/scipy/ticket/1181 on 2010-05-28 by trac user jakebiesinger, assigned to unknown._ Creating a gaussian_kde with integer data causes the evaluate function to return all 0's. **Some info** : $ python --version Python 2.6.5 $ ipython --Version 0.10 ...
1
Pulling #28356 (comment) out to a new issue since this second example doesn't seem to be exactly the same as the previous fix. In this case, a code which compiles a function call in the global scope is okay, but when the same function call is compiled in a local scope then compilation hangs. Using a recent nightly wi...
How the heck does anyone get anything done in Julia 0.6.2 on 64-bit linux (ubuntu 16.04). It takes 22 seconds to load the plotting package `Gadfly` ??? It's not precompilation time, since it happens even after the package has been precompiled once. If I restart Julia, I _still_ have to wait, sometimes even _longer_ t...
0
Sorry if this is a duplicate, but I didn't find anything... Why does: `ax.xaxis.set_ticks_position('right')` set`horizontalignment = 'left'` for the tick labels? fig,ax=plt.subplots() ax.plot(np.arange(-10,10)) ax.yaxis.set_ticks_position('right') I'm not clear on why the ticks should ...
import matplotlib.pyplot as plt import matplotlib.axes as maxes fig = plt.figure() ax = maxes.Axes(fig, [0.1, 0.1, 0.9, 0.9]) print(fig.get_children()) returns a list with no axes.... [<matplotlib.patches.Rectangle object at 0x7f8d75707dc0>] For 3-d ...
0
# Environment Windows build number: [19041.330] PowerToys version: v0.19.0 PowerToy module for which you are reporting the bug (if applicable): PowerToys Run # Steps to reproduce Altering the shortcut of PowerToys Run to ‘Win’ key + letter key will cause shortcut conflicts. If you chan...
# Summary of the new feature/enhancement Although the intention of the shortcut guide is pretty great, I feel that the experience of forcing an overlay that covers the entire screen is quite jarring. This comes off as a very obstructive way of finding the shortcuts. I believe that the entire point of keyboard shortc...
0
IN MICROSOFT FORUM PEOPLE COLABORATE WITH SOLUTIONS IN ALL KIND OF WAYS IN GOOGLE ... "GURUS" CLOSE ISSUE FIRST - DRINK COFFE AND PLAY GAMES AT HOME GOOD LUCK ALPHABET !
by **Matthew.Ickstadt** : I noticed a TODO in time.go which was still present in 1afdecdd77c1: type Time struct { // sec gives the number of seconds elapsed since // January 1, year 1 00:00:00 UTC. sec int64 // nsec specifies a non-negative ...
0
### Problem description _SelectField_ fullWidth makes the dropdown wider than the field. Dropdown works fine without fullWidth. There may also be an issue with alignment, given how it looks in the docs? ![screen shot 2017-04-10 at 17 45 34](https://cloud.githubusercontent.com/assets/9392041/24867462/ee2f1614-1e...
# Problem Description 1. Create a Select Field explicitly specifying a width using autoWidth={true} with some MenuItem children 2. Open the drop down menu, the width of items more than select. # Versions material-ui - 0.14.4 react 0.14.3 Select ![fjabxjf](https://cloud.githubusercontent.com/assets/5664043...
1
* I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior The ListItemText component should change colour when an override is applied ## Current Behavior Currently in order to override it I have to disable typography; is there any way to apply the color whils...
I have a List that must be tightly packed. When I apply `dense` to it, it works great and displays just as I want. However, when I add it seems to ignore the `dense` setting. * I have searched the issues of this repository and believe that this is not a duplicate. I found this: #6098 but its a general observation...
0
Duplicate of : #14583 **Do you want to request a _feature_ or report a _bug_?** Bug **What is the current behavior?** Issue loading the js chunk files on IE11 (only). With the latest version of react 16.7.0 our app (which uses Suspense and Lazy) doesn't load all the needed js chunks. You need to navigate ar...
**Do you want to request a _feature_ or report a _bug_?** feature(maybe more like a discussion) **What is the current behavior?** Assume that we have one custom hook: /* Typing with TS */ // to make this example reasonable, // assuming that `fetchUser` and `fetchOrders` fetch data from di...
0
If you can provide contextmanger for sns.set_theme ,it will be very convenient for contrel axes theme. ![image](https://user- images.githubusercontent.com/33288114/111090474-cbf83100-856a-11eb-80cd- cce2341c3603.png)
It is not convenient for to set theme for local axes. ![image](https://user- images.githubusercontent.com/33288114/111060687-c30b4f00-84d9-11eb-9c89-f709983b29d4.png)
1
# Environment Windows build number: 10.0.18363.836 PowerToys version: 0.18.1 PowerToy module for which you are reporting the bug (if applicable): Settings # Steps to reproduce Install as Admin Log on as Admin and configure (including run at startup) Log off Log on as Standard User...
# Environment Windows build number: Microsoft Windows [Version 10.0.18363.836] PowerToys version: 0.18 # Steps to reproduce * Right click on the tray icon * Select Settings # Expected behavior Settings windows appears and allows me to make changes # Actual behavior The windows appear...
1
Declaration of Symfony\Bundle\AsseticBundle\Factory\Worker\UseControllerWorker::process() must be compatible with Assetic\Factory\Worker\WorkerInterface::process(Assetic\Asset\AssetInterface $asset, Assetic\Factory\AssetFactory $factory)
Q | A ---|--- Bug report? | yes Feature request? | no BC Break report? | no RFC? | no Symfony version | 2.8, 3.x I am dealing with a problem when I was scraping a specific website, which the content is not created properly. So I could catch if there is any written in the file, the domCrawler stops the ...
0
**TypeScript Version:** 1.8.9 / (1.9.0-dev.20160409) **Code** /// <reference path="react.d.ts"/> import * as React from 'react'; const Test = ({children}) => <span>{children}</span>; <Test>123</Test>; **Expected behavior:** No errors. **Actual behavior:** ...
say I have: class Parent extends React.Component<{children:any}, {}>{ render() { return <div> {this.props.children}</div> } } class Container extends React.Component<{},{}> { render() { return <Parent> //typescript shows error here cause no 'ch...
1
### Preflight Checklist * I have read the Contributing Guidelines for this project. * I agree to follow the Code of Conduct that this project adheres to. * I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** * 10...
### Preflight Checklist * [ x] I have read the Contributing Guidelines for this project. * [ x] I agree to follow the Code of Conduct that this project adheres to. * [ x] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details Transparent failed ...
1
Hello. I'm trying to make my own camera with blackjack and hookers :) Doing it mostly by using the source of THREE.FirstPersonCamera and have faced a problem with updating the scene calling: this.supr.update.call( this ); I can't call directly render()-function because it belongs to different scope...
Sometimes I get this error. Steps to reproduce the behavior: 1. Load a gltf model with r124, Idk 2. Look into browser console 3. See error _**Code**_ let manager = new THREE.LoadingManager, loader = new GLTFLoader( manager ); ... loader.load( config.path, function( result ) { // no...
0
### Apache Airflow version Other Airflow 2 version (please specify below) ### What happened I have a three node airflow cluster, after upgrade 2.6.0 from 2.3.4, task can't show log in webui. and when task in running state, i can see log in webui, however, after task is failed or sucess, task log is gone, only left...
**Description** The old documentation for First time contributor's should be reviewed and incorporated in Apache Airflow Blog **Use case / motivation** To remove documentation duplication and clean it up. **Related Issues** #10178
0
I customized and downloaded bootstrap. The modal backdrop in the customized version is too dark. It is not the behaviour when downloading 3.0 directly
Hi! I just generated a customized version and the modal background is totally black (I also generated a version without any change to be sure it wasn't me that caused that): ![image](https://camo.githubusercontent.com/7c884cd09470c8345f0304ad6c0a9768a9b9ad1b1cf415c28d5eb6df1beb82ab/68747470733a2f2f662e636c6f75642e6...
1
### Preflight Checklist * I have read the Contributing Guidelines for this project. * I agree to follow the Code of Conduct that this project adheres to. * I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** 12.0.0-b...
### Preflight Checklist * I have read the Contributing Guidelines for this project. * I agree to follow the Code of Conduct that this project adheres to. * I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** * 12...
1
When outputting `debugger` keywords in my code and connecting my IDE to the node debugger it is breaking in the compiled code, not the uncompiled code. Sourcemaps are stripped from custom codes/pages/etc. The commons.js and main.js files follow the sourcemaps settings (`devtool: cheap-module-eval-source-map` in webp...
# Bug report ## Describe the bug viewport tag gets duplicated in the browser (there's no custom viewport tag provided). ## To Reproduce This occurs on our site, but I've noticed that nextns.org has the same issue, so the instructions are for it: 1. Go to https://nextjs.org 2. Wait for the page to load 3. I...
0
Currently (as of TypeScript 0.9), TypeScript supports overloading on constants, but string constants only. This seems like a slightly arbitrary restriction, although I do agree that strings are the most obvious case where this is necessary. I do think there is (at least) one more case that comes up frequently though...
For instance, in the following example where we declare the return type as an array type, we go from function foo(): blah[] {/**/ to function foo(): blah[]{ /**/ Notice the lack of whitespace between the `blah[]` and the `{`.
0
##### ISSUE TYPE * Feature Idea ##### COMPONENT NAME gce module gce_metadata module ##### ANSIBLE VERSION ansible 2.5.0b1 config file = /work/ansible/git/ansible/ansible.cfg configured module search path = [u'/home/ansible/.ansible/plugins/modules', u'/usr/share/ansible/plugins/modu...
##### ISSUE TYPE * Feature Request ##### COMPONENT NAME module: yum ##### ANSIBLE VERSION ansible 2.3.2.0 config file = /ifs/ansible.cfg configured module search path = [u'/opt/ansible/ansible_boot/.virtenv/ifs/lib/python2.7/site-packages/ansible/modules', u'/ifs/library'] pytho...
0
# Bug report ## Describe the bug If we use `next/dynamic` to import components in several files, we experience a flashing "loading..." text when the client mounts. If we only import one place, it works fine. It also works fine in development. ## To Reproduce Codesandbox example below shows that the `One` compo...
# Bug report ## Describe the bug If we use `next/dynamic` to import components in several files, we experience a flashing "loading..." text when the client mounts. If we only import one place, it works fine. It also works fine in development. ## To Reproduce Codesandbox example below shows that the `One` compo...
1
### Describe the issue: In a very specific context, numpy incorrectly asserts that `0 + 1 == 2`! ### Reproduce the code example: import numpy as np # only works in fresh interpreter, possibly uninitialized variable? assert np.add(0., 1, where=False) == 2. assert np.add(0., 1, where=F...
First of all, thank you so much for the work on Numpy--an incredible contribution to science and progress. ### Reproducing code example: Numpy has excellent support for functional programming patterns, and the hundreds of `np.*` functions I regularly use act as pure functions with no side effects. The current beha...
1
Challenge Steamroller has an issue. User Agent is: `Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.116 Safari/537.36`. Please describe how to reproduce this issue, and include links to screenshots if possible. My code: var result = []; function...
#### Challenge Name Mainly JavaScript challenges #### Issue Description We've had many coding issues made on GitHub (a list of some from the past few months: #9532, #9137, #9118, #8940, #9058, #8436, #8266, #8156, #8092 [comment within this issue], #7655, #7441, #7629, #7470, #7453, #7442, #5290, #4819, #4733, #46...
1
When displaying an image with `matshow`, the values `x,y` of the cursor position is displayed. It would be useful to also display the value of the array at this position (tuple for RGB image with imshow).
In Matlab, imshow pets you see the data value under the mouse cursor. This would be helpful in Matplotlib. I'm thinking it would go at to bottom of the window where the mouse-position text is. This seems like it should be easy to add. I'm just not sure where I need to look to add it. If someone can tell me where to ...
1
When selecting a new 'Canvas zone' I should, as a user, click on 'edit layout'. However, I am able to click on 'Apply'. The screen closes, but nothing happens and the zone is never created. ![image](https://user- images.githubusercontent.com/9866362/94425985-2a804d00-018d-11eb-8105-4390bfe1dba3.png) Additionally, t...
If no custom layout exists the entry "create new custom" could be automatically selected. And instead of the button 'Apply' the button 'Edit selected layout' should be selected. ### Expected behavior If I switch to "custom Layouts" and there is no Layout exists, the entry "create new custom" is selected. That ind...
1
If I run a test with `shuffle(np.arange(10), random_state=0)` ~~I will get a different result when another test was run before.~~ it is more complicated...
When I run `nosetests sklearn` everything looks fine, If I do `nosetests sklearn/svm/tests/` I get an error in `test_sparse.py`, but when I do `nosetests sklearn/svm/tests/test_sparse.py` I get no error. I guess this has something to do with the shuffling of the dataset or other random things. I though...
1
Hi, i have example of own defined hook which returns always memorized callback `setValue`: **Problem** const [value, setValue] = useAppState( ... ); Then `setValue` used in hook which required deps, for example useEffect: useEffect(() => { if (value != 'a')...
Right now only `useRef` and other first-party hooks are allowed to return a stable result that is not required to be listed in the dependencies array of other hooks. We have the `react-hooks/exhaustive-deps`' `additionalHooks` option to specify additional hooks that take dependencies arrays, but we don't have a way ...
1
### Model description Hi, My name is Alexander, I am writing to you on behalf of Silero, a company maintaining our project silero-models. We noticed that our models are rehosted here - https://huggingface.co/spaces/pytorch/silero_tts or here https://huggingface.co/spaces?search=silero. We did not explicitly gra...
Hi, My name is Alexander, I am writing to you on behalf of Silero, a company maintaining our project silero-models. We noticed that our models are hosted here - https://huggingface.co/spaces/pytorch/silero_tts or here https://huggingface.co/spaces?search=silero. We did not explicitly grant Hugging Face, Inc. any...
1
On Elasticsearch 1.2.1, running the command PUT /vd-rsa-2014-06-10-17/_settings { "index" : { "cache.filter.expire" : "5m" } } returns: { "error": "ElasticsearchIllegalArgumentException[Can't update non dynamic settings[[index.cache.filter...
On Elasticsearch 1.2.1, running the command PUT /vd-rsa-2014-06-10-17/_settings { "index" : { "cache.filter.expire" : "5m" } } gives mes: { "error": "ElasticsearchIllegalArgumentException[Can't update non dynamic settings[[index.cache.filter.expire]] for open indices[[vd- rsa-2014-06-10-17]]]", "stat...
1
I tried using "keyboard.press(control+shift+k)" in the msedge browser to Duplicate Browser Tabs in the same state, but it gave an error. so Is there any way to Duplicate Browser Tabs. thanks.
### System info * Playwright Version: [v1.33.0] * 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 ...
0
### Preflight Checklist * [ I have read the Contributing Guidelines for this project. ] * [ I agree to follow the Code of Conduct that this project adheres to. ] * [ I have searched the issue tracker for an issue that matches the one I want to file, without success.] ### Issue Details * **Electron Version:...
* **Electron Version:** -4.0.4 * **Operating System:** -Window 10 ### Expected Behavior I'm checking for update in every 3 hours. So If update is available I'll create a dialog.showMessageBox popup and it will notify the user that update is available do you want to download. Again in next 3 hours the popup ...
0
#### Code Sample, a copy-pastable example if possible data_frame.groupby(pd.TimeGrouper('D', convention='start', key=time_column)).count() data_frame.groupby([pd.TimeGrouper('D', convention='start', key=time_column)]).count() give below two different outputs location pr...
#### Code Sample >>> df.groupby(pd.Grouper(freq='H')).agg({'value': 'mean'}) timestamp delta_t 2016-06-07 00:00:00 2.729111e+11 2016-06-07 01:00:00 NaN 2016-06-07 02:00:00 NaN 2016-06-07 03:00:00 NaN 2016-06-07 04:00:00 ...
1
# Bug report **What is the current behavior?** When I click the button to lazy-load a module which was already been prefetched (I can see it in the network tab), another network request for the same module is done. **If the current behavior is a bug, please provide the steps to reproduce.** Minimal repository: te...
I want to use webpack to bundle unit tests in the test-folder. Therefore I want to search the test-folder for js-files and add these files to the bundle created by webpack. Is it possible to add multiple entry points like `.addEntry()` in browserify?
0
Please go to Stack Overflow for help and support: https://stackoverflow.com/questions/tagged/keras If you open a GitHub issue, here is our policy: 1. It must be a bug, a feature request, or a significant problem with the documentation (for small docs fixes please send a PR instead). 2. The form below must b...
Currently, Keras builds the computational graph in a `top-down` fashion. That is, starting from the final output tensor and recursively calling `get_output()` until reaching the input. This is fine for `sequential` models, since layers are stacked linearly and the computational flow is a straight line. However, for `...
0
**Apache Airflow version** : `2.0.1` **Kubernetes version (if you are using kubernetes)** (use `kubectl version`): `Client Version: version.Info{Major:"1", Minor:"18", GitVersion:"v1.18.1", GitCommit:"7879fc12a63337efff607952a323df90cdc7a335", GitTreeState:"clean", BuildDate:"2020-04-10T21:53:58Z", GoVersion:"go1...
**Apache Airflow version** : 2.1.0 **What happened** : When I tried to call `logging.exception()`, the task instances fails. def func(): import logging logging.exception("some error message") with dag: p = PythonOperator( task_id='test', pytho...
0
File "C:\[path]\api\utilities\tokenizers.py", line 4, in <module> gpt2 = GPT2TokenizerFast.from_pretrained("gpt2") File "C:\[path]\venv\lib\site-packages\transformers\tokenization_utils_base.py", line 1750, in from_pretrained commit_hash = extract_commit_hash(resolved_vocab_files[...
Just some context, we use `TRANSFORMERS_OFFLINE=1` in the NeMo CI to ensure we load from the local cache. With the latest transformers version we noticed this bug in our CI! ### System Info * `transformers` version: 4.22.1 * Platform: Linux-5.15.0-41-generic-x86_64-with-glibc2.31 * Python version: 3.9.12 * ...
1