text
stringlengths
20
57.3k
labels
class label
4 classes
Title: LSTM with more than one layer fails with "Cannot feed value ..." Body: I'm having an issue where I'm able to train a single layer LSTM without problem but adding a second layer results in a ValueError: Single layer example: ``` net = tflearn.input_data([None,1000,4]) net = tflearn.lstm(net,128,dynamic=True...
1medium
Title: loading tensorflow datasets into google colab Body: I am a student currently working on a project to make low quality images to high quality images using CycleGan. I have found a dataset on Tensorflow called div2k which have images that are of high and low resolution. I tried downloading it into my computer from...
1medium
Title: Display `pretty_datetime` Body: Show `ago` for last 48 hours, otherwise should prettier datetime.
1medium
Title: `mitmproxy --scripts broken.py` with a broken script does not properly handle the error and leaves terminal in a funny state Body: #### Problem Description I've noticed that when loading a broken script (e.g. syntax error) mitmproxy won't properly exit or keep running and show the error in the event log, as i...
1medium
Title: Inheriting UserMixin class from flask-login library on SQLModel model crashes the app Body: ### First Check - [X] I added a very descriptive title to this issue. - [X] I used the GitHub search to find a similar issue and didn't find it. - [X] I searched the SQLModel documentation, with the integrated search. -...
2hard
Title: [BUG] Bearer authentication example from documentation doesn't work Body: Copying this from the documentation: ``` from ninja.security import HttpBearer class AuthBearer(HttpBearer): def authenticate(self, request, token): if token == "supersecret": return token ``` Result...
1medium
Title: BUG: Cannot install arm-pyart 1.18.5 on macOS (arm64) Body: * Py-ART version: 1.18.5 * Python version: 3.12.4 * Operating System: macOS ### Description Trying to instal the package in a fresh venv on this arch errors as ```shell $ python -m pip install arm-pyart ... ERROR: arm-pyart has an invalid wh...
1medium
Title: Pinned columns (column config) do not work when hide_index=True 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 below to help repr...
1medium
Title: What scalar type is expected for DataFrame.divisions? Body: **Describe the issue**: On dask main, `DataFrame.divisions` is a `tuple[np.ndarrray]` where each element is a scalar ndarray: **Minimal Complete Verifiable Example**: ```python In [1]: import dask.dataframe as dd, pandas as pd In [2]: index = [1, 5, ...
1medium
Title: Issues with Running stylegan2_pytorch in gpu settings on colab notebook Body: It keeps raising AttributeError whenever torch_stylegan2.load_network_pkl() is called. The code that I have run: `import stylegan2_pytorch as torch_stylegan2 !mkdir networks !gdown https://nvlabs-fi-cdn.nvidia.com/stylegan2/net...
1medium
Title: Installation Issue [begineer] Body: ## ❓Question while I tried to download It's showing following error: I'm using windows OS. I already installed pytorch-lightning==2. version ```sh (venv) C:\Users\muthu\GitHub\TorchTutorials 😎>pip install aim Collecting aim Using cached aim-3.22.0.tar.gz (1.6 MB...
0easy
Title: ypeError: No matching definition for argument type(s) array(float64, 2d, C), array(int32, 1d, C), array(bool, 1d, C) Body: I am trying to reproduce example from readme. I get error in this line ``` # Generate signals fast_ma, slow_ma = vbt.MA.from_combinations(price, windows, 2) ``` The error message is: ...
1medium
Title: 异常,接口内容返回异常: status_code=2 Body: [ 💻 ]:Windows平台 [ 🗻 ]:获取最新版本号中! [ 🚩 ]:目前 14200 版本已是最新 [ 配置 ]:配置验证成功! [ 配置 ]:读取本地配置完成! [ 提示 ]:异常,接口内容返回异常: status_code=2 [2023-10-19 00:21:02,655] - Log.py] - ERROR: [ 提示 ]:异常,接口内容返回异常: status_code=2,Traceback (most recent call last): File "Util\Pro...
1medium
Title: ValueError: Preset 'chronos_tiny' was not found. Valid presets: ['best_quality', 'high_quality', 'medium_quality', 'fast_training'] Body: ![image](https://github.com/autogluon/autogluon/assets/67415290/5e140ffc-56fe-49a7-bd1b-00bd2492efe2)
1medium
Title: why? Body: Solara server is starting at http://aarch64-conda-linux-gnu:8765 ERROR: [Errno -2] Name or service not known
1medium
Title: the message "No products found." at browse.html by version 3.2.5 Body: Hi, thank you for nice library. Found a bug? Please fill out the sections below. ### Issue Summary By version 3.2.5, I created a product, product detail page was made, but there is no product on catalogue and category page. I ins...
1medium
Title: How to write this in tortoise Body: select count(*) from (select count(*) as count_1 from group GROUP BY user_id) tmp where count_1 > 300 How to write this in tortoise
2hard
Title: Keep orderedness information of lists Body: I was wondering if it is possible to know whether a `<list>` in the extracted output came from an `<ul>` or an `<ol>`. Even with `include_formatting` (which I don't need), this information is omitted. I saw that `<head>`, for instance, retains the level in the `rend...
1medium
Title: [vdsql] Polishing vdsql, list of issues Body: - [ ] #282: Select starting table in postgres from command-line - ...
1medium
Title: ModuleNotFoundError: No module named 'segmentation_models_pytorch.losses' Body: Hello! Thanks so much for your work! When I want to use the losses here, there is a error:ModuleNotFoundError: No module named 'segmentation_models_pytorch.losses'. Would you help me to solve this problem? Thank you very much!
1medium
Title: Could not create the task Open the Browser Console to get details 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 I'm simply trying to use the tool, b...
1medium
Title: Add support for SHAP package Body: SHAP is a general model attrition package: https://fburl.com/5lq7ho5y I have a use case to first use SHAP to explain a sklearn/xgboost classifier and then convert the model to pytorch. SHAP is not supported yet for model conversion. Is there a quick way to walk it around?
1medium
Title: Epoch configuration Body: Hi. I'm training to control the amount of epochs when finetuning but I see no option to control it in finetune_realesrgan_x4plus.yml. Thanks!
0easy
Title: Request Body Param is being sent as a `String` instead of an `Array` of `Integers` Body: My auto generated docs appear correct but when sending a POST, django is receive the parameter as a string. What it's expecting is ``` { 'ids': [<id1>, <id2>, ...] } ``` Django is instead receiving the following when...
1medium
Title: [Serve] Support event-based autoscaling Body: <!-- Describe the bug report / feature request here --> Right now, we only have QPS-based autoscaling, which works pretty well for a lot of situations. But honestly, it’d be awesome if we could generalize it to support event-based scaling too. By making the autosc...
1medium
Title: FIXED - Linux Mint install problems Body: Hi, after following your instructions, the installation step crashes (after downloading all dependencies) in the `pip3 install -r requirements.txt`: PLEASE help me to fix this error: I tried a few times to install it, but I get the same problem.... https://imgur.co...
0easy
Title: Should MutatingWebhook failurePolicy be `Ignore`? Body: /kind feature **Describe the solution you'd like** Not sure if this is a bug or a feature request, but the MutatingWebhook `failurePolicy`s are set to `Ignore`, which means it is easy to not notice if your webhook calls are failing. This was noticed wh...
1medium
Title: small window Body: Hello guys, I have a problem after deploying the app to Django (on PythonAnywhere). The dash app appears in a very small window. One option to solve this is to use 'ratio' argument. But is there any option like ratio=auto? ![smallwindow](https://user-images.githubusercontent.com/107844...
1medium
Title: 保姆级别教程(持续更新各类社区/非官方教程---- Body: (作者借楼编辑ing 社区视频教程: 奶糖 https://www.bilibili.com/video/BV1dq4y137pH
0easy
Title: Domain DKIM don't sign mail Body: Hello everyone, I don't think i'm the only one to have this issue. When I do all the configuration for domain and the DKIM box it's green, my mail don't pass dkim on gmail or other webmail, can someone help me to fix that please, i read some articles about openDKIM on mobodo...
1medium
Title: Unexpected error of type DispatchError raised while running data exploratory profiler from function spark_get_series_descriptions Body: ### Current Behaviour # converts the data types of the columns in the DataFrame to more appropriate types, # useful for improving the performance of c...
2hard
Title: Try using custom_callbacks. Counting accuracy takes a lot of time, so don't use it every epoch. Body: Try using custom_callbacks. Counting accuracy takes a lot of time, so don't use it every epoch. mean_average_precision_callback = modellib.MeanAveragePrecisionCallback(model,\ model_inference, data...
1medium
Title: Key(s) not found in format: <var_name> = '???' Error After upgrading to 1.0. Body: I have recently upgraded the tavern to 1.0 but after upgrading and changing all tests compatible to 1.0. Eg - ```body: -> json:``` in response. Almost tests are failing with format error. One scenerio: 1. data.yaml ``...
1medium
Title: How to generate context embedding for DKN?[ASK] Body: ### Description <!--- Describe your general ask in detail --> I notice that context embedding is not used in the [dkn_deep_dive.ipynb](https://github.com/microsoft/recommenders/blob/master/examples/02_model_content_based_filtering/dkn_deep_dive.ipynb). But...
1medium
Title: Requests exception: too many redirects Body: **Describe the issue**: running the following example experiment: `nnictl create --config .\nni\examples\trials\mnist-pytorch\config_windows.yml` getting this error: [2023-08-18 10:22:56] Creating experiment, Experiment ID: nu5kfm0o [2023-08-18 10:22:56] S...
1medium
Title: Add Float field to test schema Body: Neither [Neo4j](https://neo4j.com/docs/cypher-manual/current/syntax/values/) nor [RedisGraph](https://oss.redislabs.com/redisgraph/cypher_support/#types) support Decimal types, but Neo4j does support floats and RedisGraph 64-bit doubles, so it would be nice to add a field lik...
1medium
Title: Installing modified software not working properly Body: - OS: Windows 10 - PyQt version:5 I modified your software and adapted it to my needs and it works well when I run it from the source code. But when I tried to install it using pyinstaller, it doesn't read the images when I open a directory. Can you pro...
1medium
Title: Pokemon types are inverted Body: All the pokemon secondary type appear as the first element in the type list. The order is correct when I ran a local Django instance
1medium
Title: No module named 'luxwidget' when installing and activating the api Body: The console leaves me a "ModuleNotFoundError: No module named 'luxwidget'" when i try to run "jupyter nbextension install --sys-prefix --symlink --overwrite --py luxwidget" in cmd.
1medium
Title: Pluralization gives dubious results on some corner cases Body: Hi, Thanks for providing and maintaining this library. I noticed that some corner cases are not handled properly. Notably: ` from textblob import Word print(Word("lynx").pluralize()) # prints "lynges" print(Word("jeans").pluralize()) ...
1medium
Title: Peewee backend doesn't commit by default Body: I found this surprising, and it seems like a bug, but the Peewee backend doesn't save by default. It seems like it should default to committing, like the Django backend does. Here's a simple test case: ``` python from mixer.backend.peewee import mixer from models i...
1medium
Title: [Question] How to fix a jquery old version vulnerability? Body: ### Product Version 4.3.1 ### Product Edition - [X] Community Edition - [ ] Enterprise Edition - [ ] Enterprise Trial Edition ### Installation Method - [X] Online Installation (One-click command installation) - [ ] Offline Package Installation ...
1medium
Title: Bug in SURF sum_rect() Body: Shouldn't the lines 42 and 43 in file https://github.com/luispedro/mahotas/blob/master/mahotas/features/_surf.cpp be: ``` cpp y1 = std::min<int>(y1, integral.dim(0)-1); x1 = std::min<int>(x1, integral.dim(1)-1); ``` ?
0easy
Title: Streamlit - Add console output for Tasks Body: ### Problem Description Well to be able to see the action you got to view the logs in the device that you are hosting from. This is an issue as the multi user setup won't be able to remote into the host machine. ### Proposed Solution have a console output so that...
1medium
Title: packaging is a required dependency Body: ``` 2020-02-07 04:15:34,466 [INFO ] W-9000-model-stdout com.amazonaws.ml.mms.wlm.WorkerLifeCycle - import gluonnlp as nlp 2020-02-07 04:15:34,466 [INFO ] W-9000-model-stdout com.amazonaws.ml.mms.wlm.WorkerLifeCycle - File "/usr/local/lib/python3.6/site-packages/gl...
1medium
Title: Different image resize scales used in training & test pipeline in YOLOX_tiny config file Body: In yolox tiny config file : _https://github.com/open-mmlab/mmdetection/blob/main/configs/yolox/yolox_tiny_8xb8-300e_coco.py_ img_scale = (640, 640) is used in train_pipeline while (416, 416) is used in test_pipeline. ...
1medium
Title: Fix flaky Dask test behavior Body: There is some flaky behavior with Dask tests, that seem to be related to the tests that use the `cluster_scheduler` fixture. Sometimes these tests do not get run, or do not get reported as being run by codecov, while other times they do. One test that seems especially proble...
1medium
Title: Codec error when running Marvel Tutorial with Python 2 Kernel Body: To reproduce, execute marvel tutorial notebook with a python 2 kernel. The command: `plotter2.plot(unique_coappearences, heroes)` Produces the error: ``` --------------------------------------------------------------------------- UnicodeEnco...
1medium
Title: [Feature suggestion] Naming einops keras layers Body: Hello, it would be really nice if one could name the eniops layers just like any other keras layer. Right now, the following code triggers an error. ```python from einops.layers.tensorflow import Rearrange tf.keras.Sequential([ tf.keras.Input((224...
1medium
Title: question on service-to-service Body: Is it an issue that we expose models directly? For example in BookService we expose model in get method, and we also use models of Author repository. This implies that we are allowed to use those interfaces - CRUD, read all properties, call other relations, etc. Is exposing...
1medium
Title: Test for raised errors in `Scattering2D.forward` Body: One `TypeError` and three `RuntimeError`s may be raised by `forward`, but are not currently tested. For example, see [here](https://codecov.io/gh/kymatio/kymatio/src/82f21ed11e9152cd234e63af96d48300210429a9/kymatio/scattering2d/scattering2d.py#L122).
1medium
Title: Reachability Issue for private swarm Body: I am creating a private swarm using backbone peer hosted at aws EC2 instance and trying to connect my machine's GPU but getting reachability issues. I have followed the list of commands listed below. ```python3 -m petals.cli.run_dht --host_maddrs /ip4/0.0.0.0/tcp/3133...
1medium
Title: Use new refs pattern instead of legacy string pattern Body: React 16 introduced a new pattern for refs, described [here](https://reactjs.org/docs/refs-and-the-dom.html) - we are using the string pattern, described in that doc as "legacy". It's probably not a concern until it will be deprecated in React 18 (or la...
1medium
Title: '_FakeStack' object has no attribute '__ident_func__' Body: ### Environment win 11 Python 3.8.10 Flask-Appbuilder version: 4.5.0 pip freeze output: aliyun-python-sdk-core==2.13.36 aliyun-python-sdk-dysmsapi==2.1.2 aliyun-python-sdk-kms==2.16.2 apispec==6.6.1 async-timeout==4.0.2 attrs==23.2....
1medium
Title: Question on testing with python-dependency-injector Body: Hello and thank you for such a great library. I have a question regarding of how to test application, that uses python-dependency-injector library. Lets take simple usecase: ``` class EmailSender: def send(self, email): pass cla...
1medium
Title: !repos command fails with error '''Computer says nooo. See logs for details: b'repo_index' ''' Body: In order to let us help you better, please fill out the following fields as best you can: ### I am... * [ *] Reporting a bug * [ ] Suggesting a new feature * [ ] Requesting help with running my bot * [ ]...
1medium
Title: [BUG] - gevent.exceptions.InvalidSwitchError: Invalid switch into Event.wait(): () Body: Sorry, I'm from Russia, I use a translator. Your library is working properly, but often after a while such an error is thrown out Traceback (most recent call last): File "main.py", line 1283, in <module> _token_bo...
1medium
Title: datamodel-codegen produces class with missing body parts Body: **Describe the bug** Within the OSCAL schema is: ``` "EmailAddressDatatype" : { "description" : "An email address string formatted according to RFC 6531.", "allOf" : [ { "$ref" : "#/definitions/StringDatatype" }, ...
1medium
Title: Train batch size errors Body: [rank0]: AssertionError: Check batch related parameters. train_batch_size is not equal to micro_batch_per_gpu * gradient_acc_step * world_size 8 != 2 * 1 * 1 在前面的dist.world_size打印获取=4,但是依然不行
1medium
Title: Exporting probabilities over the learned vocabulary Body: Currently, the `extract_features.py` file supports extracting representations before the last output layer but I want to extract the final probabilities over the vocabulary. I modified the code with the following addition but it doesn't seem to work (the ...
1medium
Title: Add underperforming_group issue type among the Datalab defaults Body: Test issue manager with different datasets (Image, tabular etc.) to make sure that the underperforming group in the dataset is extracted successfully. List any failure cases that might need to be addressed before adding this issue type to th...
1medium
Title: Update tests to use modern versions of python Body: Change the build tests so they no longer use the obsolete versions of python and use currently supported ones.
1medium
Title: Unable to get local issuer certificate CentOS_7 Body: Hi, I'm trying to download the punkt package using nltk.download('punkt') command and I got the following error: [nltk_data] Error loading punkt: <urlopen error [SSL: [nltk_data] CERTIFICATE_VERIFY_FAILED] certificate verify failed: [nltk_data] ...
1medium
Title: IndexError in linear_binary when X and Y are the same with max-autotune enabled Body: ### 🐛 Describe the bug When the x and y are the same in the inputs with max-autotune enabled, an index error occurs. Simple reproducer: ``` class Model(torch.nn.Module): def __init__(self): super().__init__() ...
1medium
Title: 【项目推荐】Vue Vben Admin ,一个基于vite+vue3+antd的免费开源的中后台模版 Body: ## 推荐项目 <!-- 这里是 HelloGitHub 月刊推荐项目的入口,欢迎自荐和推荐开源项目,唯一要求:请按照下面的提示介绍项目。--> <!-- 点击上方 “Preview” 立刻查看提交的内容 --> <!--仅收录 GitHub 上的开源项目,请填写 GitHub 的项目地址--> - 项目地址:https://github.com/vbenjs/vue-vben-admin <!--请从中选择(C、C#、C++、CSS、Go、Java、JS、Kotlin、...
1medium
Title: CVAT Installation using Singularity instead of Docker? 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/) ### Is your feature request related to a problem? Please describe. I am trying...
1medium
Title: Add Context Menu Feature to Tabulator Body: #### Is your feature request related to a problem? Please describe. No #### Describe the solution you'd like Tabulator has a left/right click context menu feature where callbacks can be registered. Having a context menu option for rows and cells would let the deve...
1medium
Title: How to deal with this problem Body: ValueError: Tensor conversion requested dtype string for Tensor with dtype float32: <tf.Tensor 'args_0:0' shape=() dtype=float32>
1medium
Title: clean up FilterRetrieverdocstrings Body:
1medium
Title: UI - Text Filtering not displaying filters when watched site is added to a group with filters. Body: **Describe the bug** Given a watched website with text filters, if it is added to a group which has filters too, the text filters in the website edit page do not show anymore, but are applied. The system def...
1medium
Title: [RFC] ONNX next wheel build platform: for example manylinux-2.28? Body: # Ask a Question ### Question Sooner or later, we will have to decide when we want to switch to a new manylinux platform and how we want to organize the transition. Pytorch deals with it in the following way. (https://github.com/pyt...
1medium
Title: How to Override Deeply Nested Settings using Environment Variables? Body: Hello, Is it possible to override a deeply nested setting without having to redefine the entirety of the model? Below is a modified example based off of [Parsing environment variable values](https://docs.pydantic.dev/latest/concepts/...
1medium
Title: Why %%sql outputs timestamp in UTC instead of local format? Body: Same queries have different output. Looks like autoviz converts timestamp to UTC unnecessarily (We're in UTC+8). It's so annoying. How could we make it show in our local timezone? Sparkmagic version is 0.11.4 ![image](https://user-images.githubu...
1medium
Title: Plugin: 群聊总结 Body: ### PyPI 项目名 nonebot_plugin_summary_group ### 插件 import 包名 nonebot_plugin_summary_group ### 标签 [{"label":"群聊总结","color":"#b8e994"},{"label":"AI","color":"#1289a7"},{"label":"分析","color":"#0652dd"}] ### 插件配置项 ```dotenv GEMINI_KEY=xyz ``` ### 插件测试 - [ ] 如需重新运行插件测试,请勾选左侧勾选框
1medium
Title: singlehtml builder not available Body: ### Link to the documentation you'd like to improve https://jupyterbook.org/basics/build.html#types-of-build-outputs ### What to improve The information provided about the list of builders seems inaccurate: singlehtml builder doesn't seem to be available. ```python >...
0easy
Title: test_pipleline in RTMDet config file Body: Hello How are you? I am using the latest released version (3.2.0) of mmdetection. I found that there is an issue in test_pipeline of RTMDet config file. ![image](https://github.com/open-mmlab/mmdetection/assets/47862419/18249c00-66f7-4515-bb45-4e78bf2e2596) I t...
1medium
Title: how can I embed my mplfinance graph(mpf_animation_demo1.py) in Tkinter ? Body: Ask anything you want about mplfinance usage, project philosophy and/or priorities, or anything else related to mplfinance. Display the following animation graph on the tkinter,environment:python3.6 +windows10 desktop Below is mpf_...
1medium
Title: height_ratios ignored Body: Specified height_ratio=[1,4] below (or any other ratio) but it is being ignored. Current bottom axis looks squished otherwise. ``` #define lower y-axis range and upper y-axis range bax = brokenaxes( ylims=((0, 2), (3,10)), height_ratios=[1,4]) # Plot bax.plot('Year', 'B...
1medium
Title: Will my data base get lots of connections If there are many requests happen Body: <!--- Provide a general summary of the issue in the Title above --> ## Context I love zappa very much as my team can run the flask application on aws lambda. We don't have to worry our application will be offline someday. But ...
3misc
Title: Decimal numbers are sometimes being cut-off in sliders/range-sliders Body: ### Description Decimal numbers are sometimes being cut-off in sliders/range-sliders. ![Screenshot 2024-03-12 at 10 00 53](https://github.com/mckinsey/vizro/assets/90609403/c2ddec5f-b46a-480f-a0a3-44c07b9f0d7d) This seems to **o...
1medium
Title: jupyter-dash R library Body: Hello, Is there a way to create an R library so that I could run r-Dash in jupyter lab? Thanks! Elze
3misc
Title: [BUG] Unable to remove user group from permissions Body: ### Description When removing a user group from the permission panel, it is ignored on reload. Even when using bulk edit. ### Steps to reproduce 1. Add two or more user groups: ![Image](https://github.com/user-attachments/assets/dd44bd08-ee24-40bf-a2e...
1medium
Title: 多进程跑出现loss为0,eval loss为nan Body: 感谢您使用Issue提问模板,请按照以下步骤提供相关信息。我们将优先处理信息相对完整的Issue,感谢您的配合。 *提示:将[ ]中填入x,表示打对钩。提问时删除上面这两行。请只保留符合的选项,删掉其他。* ### 详细描述问题 采用多个进程微调chinese_lora_alpaca_plus_13b模型的时候出现loss为0,并且eval loss为nan,padding_side为right ### 运行截图或log ![image](https://github.com/ymcui/Chinese-LLaMA-Alpa...
2hard
Title: A s s e r t i o n f a i l e d ! Body: `python K:\cloning\Real-Time-Voice-Cloning-master\Real-Time-Voice-Cloning-master\demo_toolbox.py` A s s e r t i o n f a i l e d ! P r o g r a m : c : \ p y t h o n 3 8 \ p y t h o n . e x e F i l e : s r c / h o s t a p i / w d m k s / p a _ w i n _ w d m k ...
2hard
Title: Difference between ELMo embedding for sentence/separate tokens Body: Hello, I am trying to use ELMo embedder for further text classification task. I cannot find information on that, so forced to ask a question here. What is the conceptual difference between this `elmo([['вопрос', 'жизни', 'и' ,'смерти']]...
1medium
Title: How to incorporate vLLM in Lightning for LLM inference? Body: ### Description & Motivation [vLLM](https://github.com/vllm-project/vllm) is one of the most popular and effective tool for quick, large-scale LLM inference. Are there any existing examples of incorporating vLLM in Lightning? I have not found any so ...
1medium
Title: How to bind path to api endpoint? Body: Hey, I'm trying to bind dynamic path to api endpoint in BlackSheep just like we do in flask and quart. But it's not working. Example: In flask and quart it can be done like this: url: xyz.com/get/file/dynamic/path/to/file ``` @api.route('/get/file/<path:filepath>', me...
1medium
Title: error in pretrain an XLNet . train_gpu.py. Body: I have successfully ran `spm_train \ --input=$INPUT \ --model_prefix=sp10m.cased.v3 \ --vocab_size=32000 \ --character_coverage=0.99995 \ --model_type=unigram \ --control_symbols=<cls>,<sep>,<pad>,<mask>,<eod> \ --user_defined_symbols=<eop>,.,(,),"...
2hard
Title: Support Mercurial Body: I created at PR #155. I've added a new environment variable called USE_HG, which if set will use mercurial. I mainly left the existing API mostly alone, except two things: 1. I renamed `.git_info` to `.dvcs_info`, which returns the same data structure. 2. I moved run_command to a n...
2hard
Title: Support admonitions / alerts / callouts in markdown Body: ### Checklist - [x] I have searched the [existing issues](https://github.com/streamlit/streamlit/issues) for similar feature requests. - [x] I added a descriptive title and summary to this issue. ### Summary Implement support for alert blocks (aka admo...
1medium
Title: Jina AI install error on Ubuntu 22.04 and Python 3.12 system Body: **Describe the bug** The error pops up when i try to install the jina-ai python package on my Ubuntu machine. Building GRPC wheel failure. [jina install error.txt](https://github.com/user-attachments/files/16538089/jina.install.error.txt) *...
1medium
Title: [ASK] Modify ReadMe for question_answering folder Body: ### Description Update the notebook table with the correct naming of the notebooks and names. ### Other Comments **Principles of NLP Documentation** Each landing page at the folder level should have a ReadMe which explains - ○ Summary of what th...
0easy
Title: Relax pydantic <2.10.0 constraint once issues solved Body: With pydantic 2.10.0 we currently get errors like: ``` pydantic.errors.PydanticUserError: `Configuration` is not fully defined; you should define `Any`, then call `Configuration.model_rebuild() ``` It was working in pydantic version 2.9.2 Relax <2...
1medium
Title: Suggestion to add Zoom-CAM Body: Full paper: https://ieeexplore.ieee.org/abstract/document/9412980 GitHub Repo: https://github.com/X-Shi/Zoom-CAM Hi, I would like to suggest the addition of Zoom-CAM into this library. From the paper, the visualizations provided look promising.
1medium
Title: Getting AggGrid's state Body: Hey @PablocFonseca, thank you for such an amazing job on integrating AggGrid in Streamlit, I highly appreciate the efforts and happy to contribute if there are any known issues that need help from python side of things. One task I am having hard time to wrap my head around is get...
2hard
Title: [Migrated] Package custom modules Body: Originally from: https://github.com/Miserlou/Zappa/issues/1242 by [tista3](https://github.com/tista3) ## Description new setting: list of module names that will be packaged into zip ## Motivation I have many flask apps in my repository that shares common module. This...
1medium
Title: 在合成 长视频 的时候,能否新增pycuda ,用GPU加速合成,效率会快很多 Body: 我测试了14分钟的视频。花了20多分钟,而且是内存基本吃满的情况下,,,,
1medium
Title: Add SECURITY.md Body: Hey there! I belong to an open source security research community, and a member (@ktg9) has found an issue, but doesn’t know the best way to disclose it. If not a hassle, might you kindly add a `SECURITY.md` file with an email, or another contact method? GitHub [recommends](https://docs.g...
0easy
Title: NotImplementedError: Cannot copy out of meta tensor; no data! Body: │ │ │ 403 │ │ │ │ device_map = infer_auto_device_map( │ │ 404 │ │ │ │ │ self, max_me...
1medium
Title: Encountered Bug After Using PandasAI (Agent) Inside My App and Standalone with PyInstaller Body: ### System Info OS version: MacBook Pro, M1 Interpreter: 3.11.4 pandas-ai version: 2.0.32 ### 🐛 Describe the bug I'm implementing an app using PyQt5. To analyze my data, I integrated PandasAI. While runni...
1medium