text
stringlengths
20
57.3k
labels
class label
4 classes
Title: [BUG] An error occurred during TTS: Incorrect padding Body: **Describe the bug** [-] An error occurred during TTS: Incorrect padding It Mooviepy then fails to find the mp3 file
1medium
Title: Slow groupby after adding column from array Body: I have an original file with 100M lines. I create a dfv by importing it from .csv via vaex.from_csv. I filter some of the data frame according to certain conditions to create dfv_filtered. I run groupby and aggregate via sum on one of the columns. This runs fine ...
2hard
Title: Text block detection Body: Hi Team.. Is there a way to detect text blocks using this tool? ![image](https://user-images.githubusercontent.com/53309257/120204603-a237d780-c246-11eb-9cb4-b31915f7ccb7.png) In example above, I need the entire text content to be detected as a block (which is address) than se...
3misc
Title: Error 429 + Scraper gives up Body: Many moons ago, Internet Archive added some rate limiting that seems to also affect Wayback Machine. ( See discussion on similar project here https://github.com/buren/wayback_archiver/issues/32 ) The scraper scrapes too fast, and gets IP banned for 5 minutes by Wayback Ma...
2hard
Title: How to replace the optimizer, can you give specific steps? Body: ### Search before asking - [x] I have searched the Ultralytics YOLO [issues](https://github.com/ultralytics/ultralytics/issues) and [discussions](https://github.com/orgs/ultralytics/discussions) and found no similar questions. ### Question How ...
1medium
Title: YOLO + OpenCV: Stream Decoding Issues Body: ### Search before asking - [x] I have searched the Ultralytics YOLO [issues](https://github.com/ultralytics/ultralytics/issues) and [discussions](https://github.com/orgs/ultralytics/discussions) and found no similar questions. ### Question I am attempting to use YO...
2hard
Title: [Regression] IterableDataset is broken on 2.20.0 Body: ### Describe the bug In the latest version of datasets there is a major regression, after creating an `IterableDataset` from a generator and applying a few operations (`map`, `select`), you can no longer iterate through the dataset multiple times. The is...
2hard
Title: 已Start Body: 已Start 本機器ID: 408D5C42CC08 _Originally posted by @lookoupai in https://github.com/yeongpin/cursor-free-vip/issues/4#issuecomment-2585373086_
3misc
Title: TorchModuleWrapper serialization issue Body: I would like to open this issue to revive a discussion started in a previous issue [(#19226)](https://github.com/keras-team/keras/issues/19226). While the previous issue seems to be inactive, the potential bug seems to still be present. I hope this is fine. The prob...
1medium
Title: [FEATURE] Create a New Topbar Component Body: #### **Overview** The **default top bar** in every Preswald app is currently **hardcoded** inside `preswald/frontend/layout/`. This should be refactored into a **separate Preswald component**. ### Adding a new component https://docs.preswald.com/addnewcomponent ...
1medium
Title: Dynamic configuration / environment variables / etc with book builds Body: ### Describe the problem/need and solution Currently we use a static configuration file (`_config.yml`) for all of the book's configuration. However, there are some cases where you want to dynamically choose configuration at build time...
1medium
Title: Why is there no options to set node and edge nonnull on connection field? Body: I've been trying to set nonnull to node and edge on connection field because a frontend engineer told me that he've got a lot of things to handler if node and edge are nullable. is there a specific reason node and edge set to null...
1medium
Title: Fix Frontend Failing Test: paddle - tensor.torch.Tensor.__gt__ Body:
1medium
Title: EELS remove background doesn't work Body: Hi. I want to remove EELS SI background using s.remove_background with fixed energy window. A "interactive" option works well. (Setting energy window manually) ```highlossalign.remove_background(background_type = "Power law", zero_fill=True, fast=True)``` But...
1medium
Title: [BUG] ModuleNotFoundError: No module named 'mars.lib.sparse.coo' Body: <!-- Thank you for your contribution! Please review https://github.com/mars-project/mars/blob/master/CONTRIBUTING.rst before opening an issue. --> **Describe the bug** It seems that the `SparseNDArray` type does not support `COONDA...
1medium
Title: DoH3 or HTTP3 Body: **Motivation** We can utilize HTTP/3 in DoH implementation. Cloudflare, Google and NextDNS server already support this! <img width="1125" alt="Screenshot 2024-01-03 at 01 23 10" src="https://github.com/rthalley/dnspython/assets/125150101/a760e0c8-8553-4f65-a303-faa393aeef97"> *NextDNS ...
1medium
Title: Fix Ivy Failing Test: paddle - elementwise.divide Body:
2hard
Title: add JSON field example Body: expose key, value as property and test response with pydantic
1medium
Title: Fact caching with smart gathering can miss facts when plays use different gather_subset sets Body: ### Summary The lack of ability to set a global `gather_subset` means that when using fact caching with `gather_facts: smart`, the facts collected are determined by the `gather_subset` of the first play that run...
1medium
Title: AttributeError: module 'PIL.Image' has no attribute 'ANTIALIAS' Body: When I try to use easyocr on any image, I get this error: AttributeError: module 'PIL.Image' has no attribute 'ANTIALIAS' According to (https://stackoverflow.com/questions/76616042/attributeerror-module-pil-image-has-no-attribute-antialias...
1medium
Title: Load elmo-constituency-parser from archive failed Body: ## Checklist <!-- To check an item on the list replace [ ] with [x]. --> - [ ] I have verified that the issue exists against the `main` branch of AllenNLP. - [ ] I have read the relevant section in the [contribution guide](https://github.com/allenai/...
1medium
Title: the program does not open, but there are no errors Body: Hello, I try to run the program, but it doesn't start, and there are no errors. IDE returns exit code 0. System applications such as notepad, calculator are launched. I thought it was a matter of rights, I put all the necessary programs and tools in P...
1medium
Title: OSError: cannot load library '/var/task/tartiflette/language/parsers/libgraphqlparser/cffi/libgraphqlparser.dylib': /var/task/tartiflette/language/parsers/libgraphqlparser/cffi/libgraphqlparser.dylib: cannot open shared object file: No such file or directory. Additionally, ctypes.util.find_library() did not man...
2hard
Title: IndexError: Invalid key: 0 is out of bounds for size 0 Body: ### Describe the bug I am trying to fine-tune llama2-7b model in GCP. The notebook I am using for this can be found [here](https://github.com/GoogleCloudPlatform/vertex-ai-samples/blob/main/notebooks/community/model_garden/model_garden_pytorch_llama2_...
1medium
Title: lineplot of empty dataframe with hue in seaborn 0.13.0 Body: MWE ``` df1 = pd.DataFrame({}, columns=["aa", "bb", "cc"]) # empty dataframe # df1 = pd.DataFrame([(1, 2, 3), (2, 1, 3)], columns=["aa", "bb", "cc"]) # with this, it works sns.lineplot(df1, x="aa", y="bb") # works sns.lineplot(df1, x="aa", y="bb",...
1medium
Title: Where is the update one click Body: I cant see the new update avalibale on the one click installer website IOPaint is outdated since v1 ![image](https://github.com/user-attachments/assets/83238c27-bceb-48c3-9006-54014cf82388)
1medium
Title: flask-sqlalchemy session close seems not work Body: I have a question about flask-sqlalchemy, precisely about sqlalchemy. When executing one function, processes are recorded in database. Whenever after recording db, I added db.session.close() to get session back to pool. but while function is executed, I c...
1medium
Title: Add TopK node to a pretrained Brevitas model Body: We are working with FINN-ONNX, and we want the pretrained models from Brevitas that classify the MNIST images to output the index (class) instead of a probabilities tensor of dim 1x10.To our knowledge, the node responsible for this is the TopK. Where do we h...
1medium
Title: PydanticOmit failing with duplicated union field Body: ### Initial Checks - [x] I confirm that I'm using Pydantic V2 ### Description When using a custom type that omits its JSON schema (by raising `PydanticOmit` in its `__get_pydantic_json_schema__` method), the schema generation behaves inconsistently. In a ...
1medium
Title: pytorch_lightning.utilities(module) and lightning_utilities (package) Body: ### Outline & Motivation In the future release, is it possible to recommend which one to use when both contains similar functions? e.g., usage of lightning-utilities 0.11.9 with strict linting/LSP support working ``` from lightning_...
1medium
Title: On mac, flask fab create-app fails until to deactivate / reactivate the venv Body: If you'd like to report a bug in Flask-Appbuilder, fill out the template below. Provide any extra information that may be useful Responsible disclosure: We want to keep Flask-AppBuilder safe for everyone. If you've discovered...
1medium
Title: Change logs missing. Body: Really appreciate the work being doing by the contributors. ### Issue: The version [0.2.2](https://pypi.org/project/pyppeteer/#history) in pypi misses change logs. How different is it from the code of 0.0.25 is something which we need to find out by doing a diff. ### Desired R...
1medium
Title: test_awatch_log is flaky Body: The `test_awatch_log` is flaky and fails on slow systems and/or systems under heavy load. I can reproduce it by running two games (Krunker and SuperTuxKart) while simultaneously running the test on my laptop. What happens is that the number of messages containing "DEBUG" goes below...
1medium
Title: Training crash when using XLA profiler on XLA accelerator and manual optimization Body: ### Bug description training loop crash when running on XLA profiler + manual optimization. ### What version are you seeing the problem on? v2.4 ### How to reproduce the bug ```python Training on XLAProfile + Manual Opt...
2hard
Title: [Proposal] Expand slot management to resource management Body: ## Motivation Currently Mars use slot for resource management and bands allocation which just consider cpu/gpu but no memory. Mars always allocate one slot which represents one core cpu or gpu for a subtask. It works well most time. But there are ...
2hard
Title: How do you start a project from scratch? Body: Are there docs for using `zappa init` without an existing python project?
0easy
Title: SDXL InPainting: Mask blur option is negated by forced binarization. Body: The SDXL InPainting pipeline's documentation suggests using `pipeline.mask_processor.blur()` for creating soft masks, but this functionality is effectively broken due to the implementation order. Please let me know if I'm missing somethin...
1medium
Title: Local ChatGPT server connection randomly timing out Body: ### Description When i try to access my local OpenAI compatible API using my local ip and the port, sometimes the connection stops working and i have to restart the AGiXT backend to make it work again. The API i'm using is RWKV Runner (the RWKV World mo...
1medium
Title: How to compute loss using eval mode in val. py file for YOLOv5 Body: ### Search before asking - [X] I have searched the YOLOv5 [issues](https://github.com/ultralytics/yolov5/issues) and [discussions](https://github.com/ultralytics/yolov5/discussions) and found no similar questions. ### Question Due to resear...
1medium
Title: [BUG] shift_auto_shape_color config for semantic segmentation on Windows 10 not working Body: - OS: Windows 10 - Labelme Version: 4.2.10 The "shift_auto_shape_color" config doesn't seem to be working. I'm on Windows 10 and am running this command (based on the semantic segmentation example): ``` labelme ...
1medium
Title: [Bug]: Matplotlib and Herbie Body: ### Bug summary I am having an issue regarding MPL when using Herbie lately. This has been happening the past few weeks ### Code for reproduction ```Python !pip install xarray matplotlib pygrib numpy pandas basemap cartopy metpy Herbie-data eccodes==2.38.3 from herbie impor...
1medium
Title: Bug when using Lasagne `mask_input` parameter Body: When initializing layers, the `incoming` and `incomings` arguments are resolved when they happen to be strings. However, those are not the only ones that may reference other layers. The `mask_input` parameter from recurrent layers also references another layer....
1medium
Title: Declarative partitioning support Body: Is there a way to mention partition key in the model?
1medium
Title: I want to implement a multi-task network for segmentation and keypoints .what do i need to do Body: ### Search before asking - [x] I have searched the Ultralytics YOLO [issues](https://github.com/ultralytics/ultralytics/issues) and [discussions](https://github.com/orgs/ultralytics/discussions) and found no simi...
1medium
Title: Fine-tune the model. Body: Thank you very much for your guidance. I would like to fine-tune the model using my own custom dataset. Could you please provide the relevant training code?
1medium
Title: 如何同时训练两个模型? Body: ### Is there an existing issue for this bug? - [X] I have searched the existing issues ### 🐛 Describe the bug 在官方文档中给出了训练一个model的例子: ``` colossalai.launch(...) plugin = GeminiPlugin(...) booster = Booster(precision='fp16', plugin=plugin) model = GPT2() optimizer = HybridAdam(model.p...
1medium
Title: DOC: dtype member docstrings are not tested Body: ### Issue with current documentation: Over at #28001 we discovered that `np.dtype.kind` is not being tested via doctests. I think the problem is in doctests itself, where [it only checks certain items in `obj.__dict__`](https://github.com/python/cpython/blob/790...
1medium
Title: [PR] Speed up e2e tests and make them exiting gracefully Body: > <a href="https://github.com/nolar"><img align="left" height="50" src="https://avatars0.githubusercontent.com/u/544296?v=4"></a> A pull request by [nolar](https://github.com/nolar) at _2019-10-28 17:19:13+00:00_ > Original URL: https://github...
1medium
Title: Graphene Django is incompatible with django-filters 2.0.0 Body: When using graphene-django along with `django-filter` 2.0.0 I get an error trying to use the graphql endpoint. A brief example: ``` class Query(object): projects = DjangoFilterConnectionField( MyProjectNode, filterset_class=MyPr...
1medium
Title: Server TLS handshake failed. Certificate verify failed: unable to get local issuer certificate Body: #### Problem Description IE and some apps encounts the "Server TLS handshake failed. Certificate verify failed: unable to get local issuer certificate" error. But it works in Chrome #### Steps to reproduce th...
1medium
Title: Headless Logout should return 200 instead of 401 Body: I find it a bit unusual that the Headless Logout endpoint returns 401 on a successful logout. Shouldn't it return 200 instead? I am not an expert on this topic by any means - so please feel free to enlighten me! :)
1medium
Title: Adding intermediate information in a custom augmentation Body: Apologies in advance if a version of this has been asked before, but I wasn't able to find any info. I have a custom augmentation that takes an image and a bounding box, expands the bbox randomly within limits and then crops. If i want to also access...
1medium
Title: Project: UI Revamp Body: ### Short Description UI isn't up to date. Reworking UX is complex, it'll will take time and effort. If we're seeing value in modernizing UI so it's prettier, not getting deep in rethinking flows and interactions, it's a comparably low hanging fruit. ### Problem hypothesis Old lookin...
1medium
Title: chat frontend no longer active, fix readme Body: From Readme: > How To Try It Out > Chatting with the AI > > The chat frontend is now live [here](https://open-assistant.io/chat). Log in and start chatting! Please try to react with a thumbs up or down for the assistant's responses when chatting. but the...
0easy
Title: Parsing Dash initial_arguments broken in v1.6.1 Body: I've identified a regression in release 1.6.1 that causes a bug when parsing `initial_arguments` as a serialized string. We have an app that uses `initial_arguments` as follows. The `dash_initial_arguments` is a *string* of serialized JSON that is generate...
1medium
Title: Move the old Jina/Docarray relation docs from DocArray documenation to the jina one Body: # Context DocArray is moving into its own organization and reference to the jina project are slowly beeing removed. Therefore we will loose this documentation at some point in docarray : https://docarray.jina.ai/fund...
1medium
Title: [CG, Core] Illegal memory access with Ray 2.44 and vLLM v1 pipeline parallelism Body: ### What happened + What you expected to happen We got the following errors when running vLLM v1 PP>1 with Ray 2.44. It was working fine with Ray 2.43. ``` ERROR 03-21 10:34:30 [core.py:343] File "/home/ray/default/vllm/vll...
2hard
Title: Code for VisionT5Model Body: ### Feature request So right now you can't use T5 as decoder block in VisionEncoderDecoderModel , I wrote a code here which almost does that trying to get some help if it covers everything I need and can use it directly I am planning to use it for a OCR code base ``` python impor...
2hard
Title: 麻烦检查一下代码,basestring是什么鬼 Body: ``` if isinstance(text, basestring): ``` 就这几行,确定是basestring,不是str吗??
1medium
Title: [BUG] Support React.memo() equal function in react functional component develope Body: When I develop dash component in react functional component, if I set the `equal` function to prevent some unnecessary redraw, the component won't be generated after the build: ![image](https://github.com/plotly/dash/assets...
1medium
Title: python Tabula : FileNotFoundError: [WinError 2] The system cannot find the file specified Body: # Summary of your issue I'm getting an error while reading a pdf file via tabula # Environment Write and check your environment. - [ ] `python --version`:3 ? - [ ] `java -version`: 8? - [ ] OS and it's vers...
1medium
Title: Why is undetected_chromedriver automatically updated? Body: Why is undetected_chromedriver automatically updated?
1medium
Title: FastCRUD seems to only be compatible with fastapi>=0.100.0,<0.112.0, is it intentional? Body: When installing fastcrud via uv a get the following: $ uv add fastcrud==0.15.0 × No solution found when resolving dependencies: ╰─▶ Because fastcrud==0.15.0 depends on fastapi>=0.100.0,<0.112.0 and your project...
1medium
Title: AttributeError: 'asyncpg.pgproto.pgproto.UUID' object has no attribute 'replace' Body: * GINO version: 1.0.1 * Python version: 3.8.2 * asyncpg version: 0.20.1 * PostgreSQL version: 12.3 (Ubuntu 12.3-1.pgdg20.04+1) ### Description I'm trying to use UUID value as unique Id in my model ``` from . imp...
1medium
Title: Figure level plot BUG Body: When I set the fontdict in g.set_yticklabels(fontdict={'fontsize': 16, 'fontweight': 'bold'}) , the labels of the y tick will loss while g.set_xticklabels(fontdict={'fontsize': 16, 'fontweight': 'bold'}) will not. Is this a BUG? ![Xnip2023-02-09_09-17-27](https://user-images.githubu...
1medium
Title: JSON.parse error in examples/server Body: I am trying out this example: https://github.com/jlaine/aiortc/tree/master/examples/server I can get to the server. But when I try to start either audio/video I get the following error: **SyntaxError: JSON.parse: unexpected character at line 1 column 1 of the JSON d...
1medium
Title: Bug Report: Kurtosis at constant columns values Body: ### Current Behaviour I am trying to generate a report but it but it throws an error. ``` 187 descriptive_statistics = Table( 188 [ 189 { 190 "name": "Standard deviation", 191 "value": fmt_numer...
1medium
Title: the link "https://www.jaided.ai/custom_model.md" is lost could you provide again? Body:
0easy
Title: [Tutorial 2.1 error] TypeError: where(): argument 'other' (position 3) must be Tensor, not int Body: It happened in tutorial 2.1. Details are as follows: Traceback (most recent call last): File "condional_prompt.py", line 112, in <module> loss = prompt_model(inputs) File "/opt/conda/lib/python3.7/sit...
1medium
Title: Adding spark to the latest dependency checker lowered the checker's reported pandas version Body: Making an issue to track this for now. Possibly pyspark 3.3 will allow us to use pandas 1.4 with pyspark
1medium
Title: New key management hard-crashes on a bad key Body: Following on from #2994 discussions... The new key management is v0.8.1 is handy, but it hard crashes if it encounters a bad key: ``` beat: Starting... 2025-02-14 14:18:13 da9ef9a76ffe augur[7] INFO Retrieved 16 github api keys for use WARNING: The key 'redact...
1medium
Title: C-c (KeyboardInterrupt) hangs pudb when running event loop Body: I am using a library (https://github.com/getsenic/gatt-python/blob/master/gatt/gatt_linux.py) that implements its own event loop. When I call the .run() method in this library, eventually I would like to interrupt it, but it seems that pudb does no...
1medium
Title: Bash API description for Image component is wrong Body: ### Describe the bug The `Image` component creates a wrong description for the bash API documentation. Instead of using the `url` flag, it uses the `path` flag with an url. The provided gradio sketch produces the following example bash message: ```bash c...
1medium
Title: Feature: add `pages` support in `project` Body: ## Description of the problem, including code/CLI snippet I was not able to determine how to access to [`/api/v4/projects/:id/pages`](https://docs.gitlab.com/ee/api/pages.html) with python-gitlab. I'm not sure to have searched well, but the [`Project`object](htt...
1medium
Title: Error 500 upgrading from 8.2.0 Body: Error (Full Traceback): Traceback (most recent call last): File "/home/pi/Mycodo/env/lib/python3.7/site-packages/flask/app.py", line 2446, in wsgi_app response = self.full_dispatch_request() File "/home/pi/Mycodo/env/lib/python3.7/site-packages/flask/app.py", li...
1medium
Title: 有办法发送语音吗 Body: 大概需求就是把本地的音频,当作语音发出去?
1medium
Title: Feature request: Include Tooltip in Input style widgets Body: When one is creating a form and wants to include a `pn.widgets.TooltipIcon`, they are required to manually set a label for that input for it to be properly aligned with the input. Consider the code below. A set of inputs is created, where some of t...
2hard
Title: Add a CONTRIBUTING file Body: https://docs.github.com/en/communities/setting-up-your-project-for-healthy-contributions/setting-guidelines-for-repository-contributors
0easy
Title: 'Venv' is not used for some reason? Body: ### Description For some reason, `watchfiles` does not use `python` from activated `venv`? Is it expected or not? ### Steps to reproduce Yes, I'm sure I have activated venv, and it's being used. Steps to reproduce: 1. Create `venv` 2. Activate it 3. Ins...
1medium
Title: Blank Screen when load ComfyUI on M2 Mac Body: ### Expected Behavior Start ComfyUI ### Actual Behavior When I start comfyUI I have blank screen ### Steps to Reproduce Start comfyUI ### Debug Logs ```powershell No errors To see the GUI go to: http://127.0.0.1:8188 [ComfyUI-Manager] default cache updat...
1medium
Title: [ActiveRecordMixin] model not persisted unless I call db.session.commit() Body: When I call `model.create(...)`, it isn't persisted in the database unless I call `db.session.commit()` after. What am I doing wrong?
1medium
Title: [Core] map_batches cannot guarantee a stable batch_size, but if drop_last=True is set, it can be guaranteed (although data will be lost). Can we consider adding this parameter to map_batches? Body: ### Description map_batches cannot guarantee a stable batch_size, but if drop_last=True is set, it can be guarante...
1medium
Title: [OTHER] Taipy unable to assign a state variable, apparent leak between clients? Body: ### What went wrong? 🤔 I've been stuck on a really critical bug for the past week. It's preventing pages from loading, and the only current workaround is restarting the server. It occurs (seemingly) random, even with automate...
2hard
Title: web.DataReader + "fred": Failed Downloads Body: Running this in jupyter notebook: start = datetime.date.today() - datetime.timedelta(days=5 * 365) end = datetime.date.today() df = web.DataReader(["sp500", "NASDAQCOM", "CBBTCUSD"], "fred", start, end) Gives me this error: [*********************100%%***...
1medium
Title: IndexError: Cannot choose from an empty sequence Body: ### Description When I tried to train the a deterministic model in reinforcement learning project, I suddenly got this IndexError in 60000 steps. I didn't change any code in the T2T project. Now, I can't continue training. It shows File "/home/guest/tens...
1medium
Title: State of the library Body: Hello, I notice that there have been only 2 commits merged in the past 2 years. There is nothing wrong with this, especially if nobody is being paid to maintain the library. However, if this library is not likely to see much future development for whatever reason, it might be good...
3misc
Title: Running Bolt for Python apps on IBM Cloud Functions (FaaS) Body: I am trying to use IBM cloud faas. I tried some steps, but failed :( . Any help with an example will be appreciated. IBM cloud faas documentation https://cloud.ibm.com/docs/openwhisk?topic=openwhisk-prep#prep_python_local_virtenv
1medium
Title: [docs] Pyinstaller with Dynaconf raising `UnicodeDecodeError` Body: Pyinstaller Compiles the Dynaconf Modules and loaders so when _dynaconf.loader.py_loader_ tries to load files from the inspect stack trace it tries to read compiled pyc files and fails on UnicodeDecodeError. The fix is to pacakage dynaconf and ...
1medium
Title: Support for Free-Form Query Parameters Body: **Is your feature request related to a problem? Please describe.** Given an API that accepts arbitrarily-named query parameters like: /my-endpoint/?dynamic_param1=value&dynamic_param2=value2 We'd like to be able to append arbitrary key/values to the query str...
1medium
Title: [BUG] possible bug with trash and filename templates Body: ### Description With latest 2.13.0, I've encountered a few issues after configuring custom storage path with expression referencing custom field. I'm running paperless on Proxmox/bare metal installed via tteck's script. There are two issues I've encou...
2hard
Title: ValueError: Unknown split "validation". Should be one of ['train']. Body: I only run: python train.py --config config/train_cord.yaml --pretrained_model_name_or_path "naver-clova-ix/donut-base" --dataset_name_or_paths '["naver-clova-ix/cord-v2"]' --exp_version "test_experiment" It has such an error, why? Than...
1medium
Title: Can I reuse a single client object for each event? Body: Hi, I'm trying to make a slack bot in OOP-fashioned way. ```pyhotn @app.event('reaction_added') def handle_reaction_added_event(ack, say, event, client): ack() eventHandler.run(client, say, event) class EventHandler: def run(self, ...
1medium
Title: Loading of saved model returns Error: "This BERTopic instance is not fitted yet. Call 'fit' with appropriate arguments before using this estimator." Body: **Edit: Nvm, I just forgot to actually save the loading into a variable... Previously saved several models using the following code: ```python3 from ...
0easy
Title: use move_mean and set window&min_count =1, diff result Body: ``` import bottleneck as bn a = [0.008196721311475436, -0.01626016260162607, 0.012396694214876205, -0.016326530612245076, 0.008298755186722151, 0.004115226337448442, 0.0, -0.008196721311475436, -0.008264462809917252, -0.00416666666666668, -0.01255230...
1medium
Title: Introduce @xt.method Decorator for AI Code Generation Compatibility Body: We could introduce `@xt.method` decorator in Nextpy for defining event handlers within state classes. This feature is intended to enhance code readability, standardize the declaration of methods handling state changes, and align with AI ...
1medium
Title: `ak.flatten` raises `np.AxisError` for `unknown[unknown]`, but not for `unknown` Body: ### Version of Awkward Array 2.1.1 ### Description and code to reproduce To reproduce the problem; ```python3 [ins] In [1]: import awkward as ak ...: ak.__version__ Out[1]: '2.1.1' [ins] In [3]: empty = ak.A...
1medium
Title: Can no longer install versions 1.5.10-1.6.5 Body: ### Bug description Hey everyone, I have been working on the same server for the past few months ( w/ RTX6000) without issue Recently, I tried to re-install lightning 1.5.10 (new virtual environment, python 3.9.18), and got the error below I tried versions up...
1medium
Title: [Bug]: optimizer state not saved Body: ### Describe the bug Thank you for developing and maintaining this invaluable module! We would like to save the state of the optimizer at the end of each epoch. The `save_optimizer_state` parameter of the `fine_tune` function seems to be designed for this purpose. H...
1medium
Title: TODO : 3D 热力图 Body: 大佬,还有个小建议,就是这个统计图可以做成3D的么,就是根据自己每次跑步的距离长短来定义高度,像下面这样。 ![QQ图片20220216202504](https://user-images.githubusercontent.com/79169717/154264238-4928c0f9-1c78-4ec6-8ac0-180cb6e040d3.png) 我是用的这个大佬的脚本生成的这种3D的统计图,当然我技术比较菜,不了解其中的原理,仅仅是一个小提议哈🙈 ——————> https://github.com/yoshi389111/yoshi389111 ...
1medium
Title: 网页多端访问的时候,某些文件会冲突,目前不支持并行多个运行是么 Body: 开启了两个页面,同时跑两个任务,其中一个成功,另外一个提示: PermissionError: [WinError 32] 另一个程序正在使用此文件,进程无法访问。: 'final-1.mp4.tempTEMP_MPY_wvf_snd.mp3' Traceback: 目前不支持并行多个同时运行是么?
1medium