text
stringlengths
20
57.3k
labels
class label
4 classes
Title: Add `.quantile(foo=quantiles)` API? Body: ### Is your feature request related to a problem? Many of our methods allow the equivalent of `.shift(foo=5)`, where `foo` is a dimension name. But not `.quantile`! That requires `.quantile(dim="foo", [0,0.5,1])` ### Describe the solution you'd like I guess this is...
1medium
Title: System : Failed to execute 'open' on 'XMLHttpRequest': Invalid URL Body: Hi @tricktreat , Everything works in `CLI` mode. I tried to chat in web. ``` Human : Please answer all the named entities in the sentence: Iron Man is a superhero appearing in American comic books published by Marvel Comics. The cha...
1medium
Title: Examples fail to run, aborting with a raised "Unknown GLSL error format" Body: I tried a few examples, including https://github.com/glumpy/glumpy/blob/master/examples/gloo-antialias.py and they fail with the following error. I have just noticed that glxinfo is showing that direct rendering is not working. I am n...
2hard
Title: Link to examples broken Body: Hi @marcomusy , very minor issue: I found the link to the `surfIntersect.py` example broken (it's now called `surf_intersect.py`) - where could I fix this in the repo? If I stumble over these matters in the futures I can then simply send a small PR :) Best, Johannes
0easy
Title: Say() Function Producing Duplicate Messages in Channel Body: (Filling out the following details about bugs will help us solve your issue sooner.) ### Reproducible in: ```bash pip freeze | grep slack python --version sw_vers && uname -v # or `ver` ``` #### The `slack_bolt` version slack-sdk==...
2hard
Title: [Bug] In 0.22.0 load_checkpoint speaker_file_path = speaker_file_path or os.path.join(checkpoint_dir, "speakers_xtts.pth") Body: ### Describe the bug When performing this after fine tuning a model: def load_model(xtts_checkpoint, xtts_config, xtts_vocab): global XTTS_MODEL clear_gpu_cache() i...
1medium
Title: How to configure multiple folders in the same zip package Body: How should I write "config" in readme when all the data, such as train test, is in a zip file train floder and test floder in data.zip
3misc
Title: Add support for user defined column aliases Body: Currently, user defined aliases aren't correctly processed. Fix this and add full alias support.
1medium
Title: Add parameter axis to tversky loss Body: Add parameter axis to tversky loss similar to dice loss. I can implement that if someone give me green light :)
1medium
Title: Make Panel Extensions visible Body: Now that Panel extensions start to pop up I believe we should maintain a list somewhere. I thought about `panel-extensions` org. But that is not visible enough. I think we should have a page similar to our Panel Components page or integrated with the Panel Components page (li...
0easy
Title: [BUG] WebUI login only for admin users Body: ### Description After new installation of paperless-ngx 2.10.2 (docker) and import of documents via document_importer WebUI user login is only possible for users with admin rights ### Steps to reproduce 1. Delete browsing data 2. Enter https://localhost:8000 ![Sc...
1medium
Title: On fields if `pattern` parameter is added swagger execute request button when clicked has no effect Body: Here is the minimum code required to replay the error: ```python from flask import Flask, request from flask_restx import Resource, Api, fields app = Flask(__name__) api = Api(app) simple_em...
1medium
Title: Exported quantized model wasn’t reduced in model size Body: # Ask a Question I have a model from sentence- transformers/all-mini-L6-v2 and I have applied dynamic quantization on it that reduces the model size by 75% Initially 90 MB After Quantization: 25 MB But when I convert the model to onnx format using torc...
2hard
Title: Issue when execute on AMD Body: **Crash reports MUST be included when reporting bugs.** ![image](https://user-images.githubusercontent.com/52432007/174431658-825dcc5a-01de-4f30-b9b7-95567cfff84a.png) **Describe the bug** Just executed on an AMD PC with python version higher than 3.8 **To Reproduce** Run...
0easy
Title: Question: How to fix ImportError: DLL load failed: The specified procedure could not be found. Windows + Anaconda Body: **Here is what I have done so far to setup LabelImg** **Windows + Anaconda** Install Python, PyQt5 and install lxml git clone https://github.com/tzutalin/labelImg I then had to moved t...
1medium
Title: WidgetControl: display other widgets on the same map Body: See https://github.com/jupyter-widgets/ipyleaflet/blob/1a8e57375ee79ee08a76049ca33a61211b827b83/python/jupyter_leaflet/src/controls/WidgetControl.ts#L10 ![](https://miro.medium.com/v2/resize:fit:1400/format:webp/1*0SvmdK7ykkDXZ4oU-x6QzA.gif)
1medium
Title: Exporting yolov5 model as engine format never finishes Body: ### Search before asking - [X] I have searched the YOLOv5 [issues](https://github.com/ultralytics/yolov5/issues) and found no similar bug report. ### YOLOv5 Component Export ### Bug This is what happens when exporting with onnx format:...
2hard
Title: Use codon write python module instead of C? Body: Can I use codon write python module like C? If it is, where can I find examples?
3misc
Title: `None` RawKernel argument is turned into 0xffffffff instead of NULL pointer Body: ### Description I spent this evening chasing a memory corruption bug. As it turns out, the cause was that a `None` argument passed to a `cupy.RawKernel` turned into a pointer with the address `0xffffffff` (i.e. `-1`). I would have...
1medium
Title: [🕹️]Write a Article Comparing OpenBB and Other Financial Tools Body: ### What side quest or challenge are you solving? Write a Article Comparing OpenBB and Other Financial Tools ### Points 300 ### Description Wrote a article on medium comparing OpenBB and other financial tools ### Provide proof that you'v...
3misc
Title: Supporting inconsistent schemas in read_json Body: If you have two (jsonl) files where one contains columns `{"id", "text"}` and the other contains `{"text", "id", "meta"}` and you wish to read the two files using `dd.read_json([file1.jsonl, file2.jsonl], lines=True)` we run into an error ``` Metadata mismat...
2hard
Title: Introducing a Version of the Enhanced Mycodo Integration for Home Assistant HACS Body: Hello everyone, I'm thrilled to announce the release of an enhanced Mycodo integration for Home Assistant, specifically designed for compatibility with HACS. ### Release Information This is a **beta version** of the int...
3misc
Title: Superuser login fails after updating docker desktop Body: ### Actions before raising this issue - [X] I searched the existing issues and did not find anything similar. - [X] I read/searched [the docs](https://docs.cvat.ai/docs/) ### Steps to Reproduce _No response_ ### Expected Behavior _No response_ ### P...
1medium
Title: Why does Flask-SocketIO require sticky sessions? (and standard practices) Body: Hi, I was wondering why are sticky sessions required for hosting flask-socketio server. From my understanding, sticky sessions are basically used to route a request to the same server where the session originated. 1,) (this mig...
3misc
Title: [Ray Core] `ray.data.Dataset.repartition` not working consistently with doc/error message Body: ### What happened + What you expected to happen ``` ds = ds.repartition(num_blocks=x, target_num_rows_per_block=y) ``` Obviously it's conflicting to setting both. Calling this gives the error `ValueError: Either num_...
1medium
Title: SiamRPN vs SiamRPN++ Body: Hi! The models with the name "siamrpn" in MODEL_ZOO are the SiamRPN++ or the SiamRPN ones? Thank you!
3misc
Title: 2d106track Body: When will you release the pre-trained model 2d106track?
3misc
Title: In search of Swag Designer! Body: We continue to see the importance of building a high-quality dataset set for fine-tuning. To promote additional support, we want to offer people t-shirts, stickers, and other types of swag for hitting different internal milestones. If you would like to assist, feel free to post ...
3misc
Title: OSError [Error 2] – Incorrect Path and Missing .DS_Store File in Site-Packages Body: ### Checklist - [x] I have searched the [existing issues](https://github.com/streamlit/streamlit/issues) for similar issues. - [x] I added a very descriptive title to this issue. - [x] I have provided sufficient information bel...
2hard
Title: DNS configuration is not displayed Body: It is not possible to display DNS configuration help for a domain in the new UI.
1medium
Title: ChatInterface strips unused tags on display Body: ### Describe the bug put ``` test <test> test ``` Into ```python import gradio as gr def fn(a, b): print(a) return a with gr.Blocks() as demo: gr.ChatInterface(fn) demo.launch() ``` The displayed text only shows `test` and not the subsequent two...
1medium
Title: Trax Import Error Body: ### Description Hello, I am having issues with the tensorflow imports while using trax, I've never experienced the issue before and not sure how to solve it. ### Environment information --------------------------------------------------------------------------- NotFoundError ...
1medium
Title: Integration with fusionauth? Body: Hello, I'm hoping to use [Inventree](https://inventree.readthedocs.io/en/latest/) for our makerspace and connect it to [FusionAuth](https://fusionauth.io/) via django-allauth (Inventree already uses this library), however I can't see FusionAuth listed as an Auth provider. ...
1medium
Title: v2.8 Body: yarn install v1.22.10 [1/4] Resolving packages... success Already up-to-date. Done in 0.46s. yarn run v1.22.10 $ tsc && jupyter labextension build . Please supply at least one subcommand: check, disable, enable, install, link, list, uninstall, unlink error Command failed with exit code 1. info...
1medium
Title: Codegen should be able to know the `__typename` for an object Body: <!--- Provide a general summary of the changes you want in the title above. --> <!--- This template is entirely optional and can be removed, but is here to help both you and us. --> <!--- Anything on lines wrapped in comments like these will...
1medium
Title: Pytest integration examples are broken in the documentation Body: All terminal output examples are broken on the [pytest integration page](https://15r10nk.github.io/inline-snapshot/pytest/) in the documentation. <img width="686" alt="image" src="https://github.com/user-attachments/assets/0fef22e5-5372-4e0f-85...
1medium
Title: Form Methods Body: BaseForm only allows POST, GOTO and GET methods, defaults to POST. Any intention to expand this to include DELETE and PATCH? https://github.com/pydantic/FastUI/blob/cec25c61a7cc5a716d05d21039f95be3e8dac0e8/src/python-fastui/fastui/components/forms.py#L74
1medium
Title: 奇奇怪怪的报错 Body: Using model: Tacotron Using device: cuda Initialising Tacotron Model... \Loading the json with %s {'sample_rate': 16000, 'n_fft': 800, 'num_mels': 80, 'hop_size': 200, 'win_size': 800, 'fmin': 55, 'min_level_db': -100, 'ref_level_db': 20, 'max_abs_value': 4.0, 'preemphasis': 0.97, 'preemph...
2hard
Title: How to do sentence_dedup Body: ### Search before continuing 先搜索,再继续 - [x] I have searched the Data-Juicer issues and found no similar feature requests. 我已经搜索了 Data-Juicer 的 issue 列表但是没有发现类似的功能需求。 ### Description 描述 请问怎么做句子级的去重,有没有推荐的开源实现?谢谢 ### Use case 使用场景 _No response_ ### Additional 额外信息 _No response...
1medium
Title: How to add Bearer <JWT> in swagger-ui request Body: Hello, I have the same issue like : https://github.com/noirbizarre/flask-restplus/issues/315, but I can't find a solution. I a using the flask_restplus 0.11 I've been searching for a long time but I didn't found how to make query with jwt. My authorisation...
1medium
Title: Unable to upload a pdf file of size 2.92MB Body: ### Describe the bug `Error HTTP 413: 413 Request Entity Too Large nginx/1.18.0` I am using google colab with to run gradio interface and I am trying to upload a file of size 2.92 MB. I am seeing this error now, never seen this error. I have been using the same...
1medium
Title: [Discussion] How to install to High Sierra 10.13.6? Body: <!-- Please respect the title [Discussion] tag. --> Hello. Please help. I cannot seem to be able to install spleeter to MacOs High Sierra. Spleeter worked fine for me in Sierra but I now I cannot get it to work. I have tried every installation m...
1medium
Title: Search without diacritics Body: It is possible to implement search without diacritics. For example, to have the same search result when using the word Průhonice as Pruhonice?
1medium
Title: The problem of accuracy of Dnn_regression model using tflearn Body: Question 1. I want to check the accuracy of the regression result window, not binary_acc. Because of this, only the binary_acc is displayed in the tensorboard graph, and it is displayed as 0 only. Question 2. I would like to apply the loss ...
2hard
Title: TypeError: 'int' object is not subscriptable Body: I try to do inference on your pretrained model following: https://github.com/deepinsight/insightface/blob/master/examples/demo_analysis.py Here's my code: ``` import insightface from cv2 import cv2 app = insightface.app.FaceAnalysis() app.prepare(0, det_...
1medium
Title: NNI install in development mode on macOS M1 Body: I install nni from soruce code in development mode on apple M1 by following instructions from https://nni.readthedocs.io/en/stable/notes/build_from_source.html After install, I can import nni successfully. However, when I try some simple NAS tutorial in he...
1medium
Title: UniqueViolationError within a transaction (using get_or_create) Body: I noticed that when multiple concurrent executions of my `add_list` coroutine overlap, occasionally I get `UniqueViolationError`. I initially thought this was protected against by using a transaction. But it seems that the transaction does not...
1medium
Title: Evaluation metrics Body: Hi, Great job! For a fair comparison, is it possible to share the evaluation metrics code in the paper? Thanks
0easy
Title: Add file_name inside failed.json and success.json Body: Adding the file name inside `.json` files can help to create a track of generated resume for each job application ![image](https://github.com/user-attachments/assets/0196dea3-b61b-44db-b8e5-88d4c385f3d5)
0easy
Title: Server Error 500 after Bare Metal Update DB upgrade 1.4.2 -> 1.5.0 Body: I had a bare metal install of 1.4.2 running on buster. Now after upgrade to bullseye I installed 1.5.0 and just copied the paperless.conf file. Most of the stuff runs fine, but: While trying to access E-Mail accounts , E-Mail rules and ...
1medium
Title: 是否可以在批量下载视频的时候将获取到的链接保存到本地txt文件 Body: 获取到用户视频链接后,将这些链接和视频大小保存一份到本地txt
0easy
Title: [BUG] Bad compatibility check by testing the existence of a CHANGELOG.md file which is not always available depending on the way of CUTLASS library installation Body: In this code, if we have nvidia-cutlass package installed with pip, there will be no CHANGELOG.md file in the installed site-package directory, an...
1medium
Title: Comfy X Braile Body: ### Feature Idea [Cheesecake Johnson-] Original post https://civitai.com/articles/11100 https://www.youtube.com/watch?v=_p1vo9uwu18 https://www.youtube.com/watch?v=0fIg4rI4cDw&t=15s I thought of something uncommon! As Comfy supports TTS, it could also support Braille! Would be so cool...
1medium
Title: [BUG] Body: **Describe the bug** ValueError: ALLOWED_GUILDS is not defined properly in the environment file!Please copy your server's guild ID and put it into ALLOWED_GUILDS in the .env file.For example a line should look like: `ALLOWED_GUILDS="971268468148166697"` I have a 19 digit ID
0easy
Title: Unclear usage of the PNA model Body: ### 📚 Describe the documentation issue https://pytorch-geometric.readthedocs.io/en/latest/generated/torch_geometric.nn.models.PNA.html It's listed here that the **non-optional** arguments are: **in_channels, hidden_channels, num_layers, out_channels** which is consisten...
1medium
Title: Center Align Table Body: How do I center align the header and the rows within the table ? I have tried many things but nothing seems to be working.
1medium
Title: List comprehension failing with an empty list Body: The following very simple list comprehension works fine in the interactive Python interpreter, but fails if used in PyScript: `[x for x in []]` I would expect it to return an empty list (`[]`), as it does in the interactive interpreter: ``` >>> [x for...
1medium
Title: SLZB-06M integration - connect through VPN Body: ### The problem I have two SLZB-06M: one connected in network directly, other - throught VPN I try to use component to connect to SLZB-06M witch connected throught VPN. First stage was good - devace was added, but second stage (initializing with counter and etc...
1medium
Title: Using multi_joined with response object in object Body: @igorbenav I have more a question about get multi_joined. When i joined 2 table many to one. I can't not create response object in object. Example: I only create like that ```json "data": [ { "id": 0, "title": "string", "template...
1medium
Title: [DetectionDataset] - expand `from_yolo` to include support for OBB (Oriented Bounding Boxes) Body: ### Description In [supervision-0.18.0](https://github.com/roboflow/supervision/releases/tag/0.18.0), we added initial support for OBB; it's time to extend it to include dataset loading. Make the necessary ch...
1medium
Title: cancel_order not working Body: The cancel_order call in the REST api that calls Alpaca seem to execute fine but the order is still open. I tested this outside regular trading hours. Not sure if it works during normal trading hours. Regardless, it should throw an exception if the order was not cancelled.
1medium
Title: python: error while loading shared libraries: libpython3.6m.so.1.0: cannot open shared object file: No such file or directory Body: Tried to do a quick run of nbviewer but got this error. Can't find any solution after some preliminary research. My local python version is 3.6.5 Thank you!
1medium
Title: 如何开启多卡训练? Body: 【v1.2.2版本: 支持多卡训练】 我运行[examples/training_sup_text_matching_model.py]文件,发现是单卡训练,请问如何开启多卡训练?
1medium
Title: Kucoin - Unauthenticated subscription disconnects after 24 hours, fails to refresh token, and then cannot reconnect Body: **Describe the bug** Using an unauthenticated subscription to Kucoin's trade feed for a period of time (about 24 hours), Kucoin disconnects the websocket and then cryptofeed is unable to rec...
1medium
Title: How do ON DUPLICATE KEY UPDATE? Body: Table have a unique constrain on 2 fields. When i try to `await MyModel.create(**dict_of_data)` with exist entry in unique fields, i got error: `tortoise.exceptions.IntegrityError: (1062, "Duplicate entry...` Try `await MyModel(**dict_of_data).save(force_update=True)` r...
1medium
Title: Add docs about Configuration provider Body:
0easy
Title: sv changes bbox shape for object detection with YOLOv8?? Body: ### Search before asking - [X] I have searched the Supervision [issues](https://github.com/roboflow/supervision/issues) and found no similar feature requests. ### Question I've been using supervision, its tracker, annotators, ... Nice work!! Howe...
1medium
Title: pull: "No file hash info found" and checkout fails when pulling frozen imported url that is a directory that has subsequently changed Body: # Bug Report ## Description I have used `dvc import-url` to track a GCS directory that is updated daily with incremental new data. [The documentation](https://dvc.org...
1medium
Title: New release? Body: It seems there has not been a release since 0.22.0 in Feb 2021, but there have been several fixes. Can you release a new version?
0easy
Title: [Bug]: Alias recognition issue in stable-diffusion-webui Body: ### Checklist - [X] The issue exists after disabling all extensions - [x] The issue exists on a clean installation of webui - [ ] The issue is caused by an extension, but I believe it is caused by a bug in the webui - [X] The issue exists in th...
1medium
Title: Navigation Button with tooltip error when clicking it Body: **Describe your context** Please provide us your environment, so we can easily reproduce the issue. ``` dash 2.7.1 dash-auth 1.4.1 dash-bootstrap-components 1.3.0 dash-core-components 2.0...
1medium
Title: MultiSelectField returns null during query Body: Hi I am using the django-multiselectfield package and when I am making a query it always returns null. Am I missing some configuration because the other fields seems to working fine. My enum for the Multiselect field ``` DAYS = ( ('0', 'Sunday'), ...
1medium
Title: Examples are written for Python 2 Body: At the site: http://www.dnspython.org/examples.html The examples seem to be written for Python 2. They use print statements rather than print() commands.
0easy
Title: [BUG] Spurious warning about `gluonts` data containers when none is used Body: **Describe the bug** <!-- A clear and concise description of what the bug is. --> Getting warning to install 'orjson', 'ujson' while running a script that uses sktime and gluonts. **To Reproduce** <!-- Add a Minimal, Complete, and V...
1medium
Title: [BUG] `Patch` does not seem to work correctly for data updates of figures created with `make_subplots` Body: **Describe your context** Hi, I am Jonas, one of the core developers of [`plotly-resampler`](https://github.com/predict-idlab/plotly-resampler/). For our library, we created a custom component i.e., [...
1medium
Title: [BUG] Redundant fields required when using merge_builder in DeltaTableWriter Body: When merging data into a Delta table using `DeltaTableWriter` with the `merge_builder` param one needs to provide the source DataFrame and the target table name as arguments to `DeltaTableWriter`, even though they are already pass...
1medium
Title: Can callback be set to take effect with the current page or globally Body: Can callback be set to take effect with the current page or globally? Is this more reasonable?
1medium
Title: github3.models.GitHubError: 401 Requires username/password authentication Body: ##
1medium
Title: Call args/kwargs stored in a Spy can be overwritten without intention Body: Suppose I have the following class definition and test code (in `test.py`): ``` class AClass: def foo(self, x): return None def bar(self): x = {"data": [1]} self.foo(x) x["data"].appe...
1medium
Title: can i run this in google colab without any problem Body: and i tried too and i got this Running a test of your configuration... Found 1 GPUs available. Using GPU 0 (Tesla T4) of compute capability 7.5 with 15.8Gb total memory. Preparing the encoder, the synthesizer and the vocoder... Load...
1medium
Title: Failed to generate or install certificate! :( Body: Facing below issue when trying to run zappa certify ``` (myenv) root@ip-10-0-0-20:/home/ubuntu/zappa-s3-signature# zappa certify prod Calling certify for stage prod.. Are you sure you want to certify? [y/n] y Certifying domain cnd.doxbot.io.. Setting DNS ...
1medium
Title: Django 2.1 support Body: When will viewflow supporto Django 2.1? I'm mostly concerned about the view permission
1medium
Title: Add an argument to ignore --cookies-from-browser errors Body: ### DO NOT REMOVE OR SKIP THE ISSUE TEMPLATE - [X] I understand that I will be **blocked** if I *intentionally* remove or skip any mandatory\* field ### Checklist - [X] I'm requesting a feature unrelated to a specific site - [X] I've looked ...
1medium
Title: [WavLM] Finetuning for speaker diarization Body: I am intending on using WavLM and finetuning it for speaker diarization. My aim is to obviously get the DER's that is in Readme for WavLM. I tried to find some resources on how to even begin this, and found some things on speaker recognition and verification. Howe...
2hard
Title: [BUG] Merging PDF + PNG omits PNG Body: ### Description When attempting to merge a PDF-based document with another document that resulted from a PNG upload the merge process finishes without reporting any obvious error, but the resulting "merged" PDF is missing the page from the PNG-based document. No error is ...
1medium
Title: fsspec.exceptions.FSTimeoutError when downloading dataset Body: ### Describe the bug I am trying to download the `librispeech_asr` `clean` dataset, which results in a `FSTimeoutError` exception after downloading around 61% of the data. ### Steps to reproduce the bug ``` import datasets datasets.load_dataset...
1medium
Title: problem about the preprocess of face image before feed it into face recognition onnx model Body: I download the resnet 18 pretrained model(R18 | Glint360K | 72.07) for face encoding or face embedding or anything we call it, and it is onnx format. I do not know how to preprocess the aligned face image before feed...
1medium
Title: ES Autocomplete search queries should properly use boosted fields Body: ### Is your proposal related to a problem? The fixes to Elasticsearch boosting from #10653 never properly made it into autocomplete queries. This means that if you're using the autocomplete method to search pages, it will often give a highe...
1medium
Title: Heatmaps Body: Hello, Is it possible to get heatmaps from EasyOCR? Thank you in advance.
1medium
Title: Remove Direct Arm Compute Libray (ACL) Integration for Quantized Matmuls: `qlinear`/`qlinear_dynamic` Body: PR https://github.com/pytorch/pytorch/pull/148585 (temporarily) introduced a direct ACL implementation for `qlinear` and `qlinear_dynamic` for AArch64 when `USE_MKLDNN_ACL` is set. This direct ACL implemen...
2hard
Title: [BUG] Settings keep resetting Body: **Describe the bug** Seemingly by random, my settings keep getting reset **To Reproduce** Steps to reproduce the behavior: 1. Search a couple times 2. Settings get reset **Deployment Method** - [ ] Heroku (one-click deploy) - [ ] Docker - [ ] `run` executable - [...
1medium
Title: train meachine translation OOM Body: ### Description ![屏幕快照 2021-04-22 上午10 18 34](https://user-images.githubusercontent.com/33311822/115646780-5f383980-a355-11eb-93f0-f8438d825f55.png) Can you tell me why even I set batch_size to 4, also occur OOM problem ? I know maybe the OOM problem because of model s...
2hard
Title: Alternative solution for 21 Body: You can also use: ```python np.tile(np.identity(2),(4,4)) ```
3misc
Title: Bug: For external Executors, passing entire address to `host` does not work Body: The following syntax, which is supported for the gateway, does not work for external executors: ```python f.add(host='grpc://localhost:1234', external=True) ``` Instead, host and port have to be precised separately: ```p...
1medium
Title: test_messages, maybe a mistake, maybe my error Body: Current block is: ``` def test_messages(client): """Ensure that user can post messages""" login(client, app.config["USERNAME"], app.config["PASSWORD"]) rv = client.post( "/add", data=dict(title="<Hello>", text="<strong>HTML</...
1medium
Title: Importing words throws numpy deprecation warning Body: Warning: DeprecationWarning: `np.float` is a deprecated alias for the builtin `float`. To silence this warning, use `float` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.float64`...
0easy
Title: Error reported when NNI was used to prune Albert-tiny Body: **Describe the issue**: I'm just pruning the linear layer. Everything seemed fine, but the following problem occurred when I was about to use the ModelSpeedup module to speed up the model. ``` device = torch.device("cpu") inputs =(torch.LongTens...
2hard
Title: Don't use deprecated `is_int64_dtype` and `is_period_dtype` functions Body:
1medium
Title: Extending connections using relay on same level as edges. Body: I have been pulling my hair out tying to solve this one. I would appreciate some help with this. Graphene Relay specs limits me to having my api calls received in the following format: ``` QUERY: { allSpecies { edges { node { ...
2hard
Title: Preset config should take priority over include Body: We need to write a test that makes sure a preset's `config` section overrides the config from any other preset specified in the `include` section.
1medium