text stringlengths 20 57.3k | labels class label 4
classes |
|---|---|
Title: Activity plugin missing docs
Body: ## CKAN version
2.10.1
## Describe the bug
I added the configuration "ckan.auth.public_activity_stream_detail = True" and marked the dataset public but in dashboard not appeat Activity Stream and in activity table does not record the activities.
### Additional details
... | 0easy |
Title: Improve inference export script
Body: `inference/server/export.py`
- Add ability to filter by conditions
- Include a filter for only chats which have at least one assistant message with score != 0
- Include a filter for specific date ranges
- Consider performance improvements such as use of lazy loading fr... | 0easy |
Title: [ASGI] close() not called if iterating over resp.stream raises an exception
Body: At the time of writing, the `close()` method of [`resp.stream`](https://falcon.readthedocs.io/en/stable/api/request_and_response_asgi.html#falcon.asgi.Response.stream) is only called if the provided generator is successfully exhaus... | 0easy |
Title: DOC: error when creating a dev env
Body: In the current [documentation](https://doc.xorbits.io/en/latest/development/contributing_environment.html) for creating a dev env, the way of building and installing Xorbits is not correct.
```bash
# Build and install Xorbits
python setup.py build_ext -i
python setu... | 0easy |
Title: Add Multilingual Heading Support
Body: Right now the app always outputs the headings in English. It would be nice to add options for other languages, as the prompts seem to be working with other languages as well. | 0easy |
Title: Add Code Cov to frontend/backend for e2e testing
Body: We should have our playwright tests publish to code cov | 0easy |
Title: Using TFP distributions directly in `sample` primitive
Body: Quoted from [the forum](https://forum.pyro.ai/t/sample-from-the-mixture-same-family-distribution/3178/6): The current wrappers in `numpyro.contrib.tfp` seems to not work for special distributions like MixtureSameFamily. For now, to make it work, we'll ... | 0easy |
Title: 稳定的依赖包是哪些版本?
Body: 好多依赖版本拉的最新的就一直报错
| 0easy |
Title: Link of type test_case not recognized as proper type in generated report
Body: ### Bug report:
#### Steps to reproduce:
- run simple test:
```
import allure
@allure.testcase('TC-1')
def test_foo():
assert 0
```
- generate result: `allure generate --clean %alluredir%`
- check links section of gen... | 0easy |
Title: docs: parameter and return types
Body: @Fix types in docstrings under:
Parameters
------------
Returns
--------
to utilize our new auto-typing where possible: https://github.com/cleanlab/cleanlab/pull/412
Sphinx can now automatically insert the type for us in the docstring (based on type annotation in the ... | 0easy |
Title: Menu is always highlighting "home" category
Body: 
Even selecting another category "home" item keeps highlighted.
| 0easy |
Title: Inconsistency with raising CSRFError
Body: The Flask-WTF docs state:
> When CSRF validation fails, it will raise a CSRFError.
However, this appears to only be true, if this optional code has been used:
from flask_wtf.csrf import CSRFProtect
csrf = CSRFProtect(app)
When that code is not used,... | 0easy |
Title: Minor Error in Inertia and Relative Volatility Index Documentation
Body: While `Inertia: inertia` is calculated correctly, the documentation, https://github.com/twopirllc/pandas-ta/blob/47d8da67e1bd46476f5f7547c48ccb67598e63ed/pandas_ta/momentum/inertia.py#L17-L25, states`Relative Vigor Index` instead of the `Re... | 0easy |
Title: Feature: make typer optional and move to `faststream[cli]` distribution
Body: Also we should update documentation accordingly | 0easy |
Title: HTTPFound is marked as deprecated, so what should I use for redirects?
Body: ### Describe the bug
All the examples on the aiohttp documentation use `HTTPFound` for redirects, but they're also deprecated and will be removed soon, so I want to know the most future-proof way to implement redirects.
### To Reprodu... | 0easy |
Title: Enhancing Project Documentation: Inclusion of Library Dependencies in README
Body: ### Is your feature request related to a problem? Please describe.
Currently, project documentation often lacks a structured representation of the libraries and dependencies used, causing ambiguity for newcomers and even experien... | 0easy |
Title: [Feature request] Add apply_to_images to Affine
Body: | 0easy |
Title: Float and Decimal widgets should use LANGUAGE_CODE
Body: Hi!
When exporting a FloatField, DecimalField, etc. the result uses the `.` as decimal separator. I was just wondering if instead, it should use the decimal separator for `LANGUAGE_CODE` defined in `settings.py`.
https://github.com/django-import-expo... | 0easy |
Title: Warn on large files when using resources_
Body: Users can tell Ploomber to track changes to configuration files via [resources_](https://ploomber.readthedocs.io/en/latest/api/spec.html?highlight=resources_#tasks-params-resources), however, to track changes, we compute a file hash which may take too long if the f... | 0easy |
Title: [BUG] GroupedPredictor doesn't allow for nans in input
Body: The `GroupedPredictor` raises an error (`ValueError: Input contains NaN, infinity or a value too large for dtype('float64').`) even if the `estimator` can handle missing values itself.
```python
from sklego.meta import GroupedPredictor
import nump... | 0easy |
Title: [BUG] Confusing handling of edgeless cypher queries
Body: ```
import neo4j
import graphistry
NEO4J = {
'uri': "bolt://***********:7687",
'auth': (******, *********)
}
graphistry.register(bolt=NEO4J, username=*******, password=****, api=3, protocol="https", server="hub.graphistry.com", token=*****... | 0easy |
Title: using https://github.com/marketplace/actions/python-coverage-comment
Body:
Since we no longer use [coverage](https://github.com/marketplace/codecov) service, we can use this [action](https://github.com/marketplace/actions/python-coverage-comment) to display the coverage
## For community
⬇️ **Please click... | 0easy |
Title: [FEATURE] Allow set Accept-Language
Body: <!--
DO NOT REQUEST UI/THEME/GUI/APPEARANCE IMPROVEMENTS HERE
THESE SHOULD GO IN ISSUE #60
REQUESTING A NEW FEATURE SHOULD BE STRICTLY RELATED TO NEW FUNCTIONALITY
-->
**Describe the feature you'd like to see added**
Allow set `Accept-Language` in headers in `Re... | 0easy |
Title: extend active learning with multiple annotators to multi-label datasets
Body: Requested in the [Slack community](https://cleanlab.ai/slack)
Objectives:
1) Make a multi-label version of the `get_active_learning_scores` function:
https://docs.cleanlab.ai/master/cleanlab/multiannotator.html#cleanlab.multian... | 0easy |
Title: Kaufman's Adaptive Moving Average (KAMA) - calculation issue
Body: ```python
import yfinance as yf
from pandas_ta.overlap import kama
import mplfinance as mpf
ticker = yf.Ticker("SPY")
minute_data = ticker.history(period="7d", interval="1m")
kama_results = kama(minute_data["Close"])
addplot = [
m... | 0easy |
Title: icdf of beta distribution is not implemented
Body: ```python
>>> import numpyro.distributions as dist
>>> d = dist.Beta(1, 5)
>>> d.icdf(0.975)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/home/ayaka/venv/lib/python3.10/site-packages/numpyro/distributions/distribution.p... | 0easy |
Title: BUG: NEXRAD Level3 DPR product reading
Body: I am doing project on Quantitative Precipitation Estimation using WSR 88D Radar. I am comparing NEXRAD L3 Digital Precipitation Rate with actual Rain Rate from TRMM GV Rain Gauges.
Looks like the data being read in the below snippet does not scale the rain rate da... | 0easy |
Title: Difficulty emulating vanilla anchor tags with dcc.Link
Body: The `dcc.Link` component renders as `<a>` tags without an `href` attribute, since the routing is all taken care of in the React side of things. This means that out of the box these links don't receive the default linkified browser styles of underline ... | 0easy |
Title: WorkflowRunUpdateReplayWithResponse with a workflow run ID that doesn't exist returns a 200
Body: It should return an appropriate status code. | 0easy |
Title: JS - Right bar navigation
Body: The [docs](https://ploomber.readthedocs.io/en/latest/user-guide/deployment.html) have a right bar that shows the contents of the current article
`.
For now, we need better error reporting. | 0easy |
Title: Warn when `distinct()` is used outside of aggregated functions
Body: Discussed in #11518
The alternatives could be:
- at compile time: you could do it at compile time by passing a kw flag that "distinct" looks for , indicating the appropriate context. if flag not there, boom. would have to find a way to make... | 0easy |
Title: Add CI for jupyter notebook example `workflow_by_code.ipynb`
Body: ## 🌟 Feature Description
<!-- A clear and concise description of the feature proposal -->
CI that it can't detect the errors in the report.
So I think it would be better to add such a check in our CI. (It may be some command like jupyter ... | 0easy |
Title: The flag allow_population_by_field_name is not recognized
Body: I have two models `User`, `Review` and their `ModelFactory`s.
```python
from pydantic import BaseModel, Field
from pydantic_factories import ModelFactory
class User(BaseModel):
login: str
class Review(BaseModel):
body: str... | 0easy |
Title: Marketplace - agent page - please fix margins between section headers, dividers and content
Body: ### Describe your issue.
<img width="921" alt="Screenshot 2024-12-16 at 21 49 16" src="https://github.com/user-attachments/assets/594350cc-79f1-42ec-8d62-770c0ba79b8c" />
<img width="1425" alt="Screenshot 2024-1... | 0easy |
Title: support for alternative notebook PDF converters (e.g. webpdf)
Body: (see #672 and #658 for context)
There are a few engines to convert `.ipynb` to `.pdf`, however, we only support the default one provided by nbconvert, which depends on pandoc and text. It has a few downsides such as not being able to render e... | 0easy |
Title: Text is layered on the send button (and settings) in the chat
Body: One user noticed this:

 to SQLModel, does not generate sub-factories as expected when using `Relationship`, despite explicitly calling `Use`. ... | 0easy |
Title: www: remove HSTS header from port 80
Body: | 0easy |
Title: api: remove timezone support
Body: Server-side timezone awareness is unnecessary complexity. We should deal with timezone conversions at the presentation layer (client).
We're not using the functionality anyways (it's merely enabled so that one has to use Django's `now()` function instead of the standard Pyth... | 0easy |
Title: Changelog: Single file?
Body: I think it's far easier to comprehend across multiple versions when release notes are just text, in a single file - without extra distractions / spacing / etc. Is it possible to just to have a single changelog file?
Example: https://github.com/SeleniumHQ/selenium/blob/selenium-... | 0easy |
Title: Enhancement: Auto-register factories as pytest fixtures
Body: It would be super handy to have some method that would easily create a fixture out of a factory. For example:
```python
class SomeLongNamedModel(BaseModel):
id: UUID
@register_fixture # Or some better name?
class SomeLongNamedModelFac... | 0easy |
Title: Retire prefetch_generator
Body: We're using this dependency in one spot, where it can be replaced with ~5 lines of native code.
Would be great to remove it | 0easy |
Title: Replace the obsolete JS media type
Body: [RFC-4329](https://www.rfc-editor.org/rfc/rfc4329) is obsolete.
According to [RFC-9239](https://www.rfc-editor.org/rfc/rfc9239),
- Changed the intended usage of the media type "text/javascript" from OBSOLETE to COMMON.
- Changed the intended usage for all other scr... | 0easy |
Title: `SklearnTransformerWrapper` fails when FunctionTransformer used with non-numerical columns
Body: The `SklearnTransformerWrapper` will throw an error if I try to use it for non-numerical columns, even though some scikit-learn transformers are able to handle non-numerical columns.
Consider the following example... | 0easy |
Title: Implement a node multiselect feature for the d3 web frontend
Body: **The problem:**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
Currently the d3 web frontend only offers a very simple search that highlights a given subset of nodes, based on a single search term.... | 0easy |
Title: Update "AWS Lambda Bolt Python Examples" page to include Lambda URL
Body: On 6th of April AWS added new feature - Lambda Function URLs: Built-in HTTPS Endpoints for Single-Function Microservices
It's cheaper, simpler and faster to setup, than API Gateway. If you don`t require the advanced functionality, such as... | 0easy |
Title: Add `[obsoletes]` to setup
Body: See https://github.com/googleapis/python-bigquery-sqlalchemy/blob/ac25c4c70767ca85ce5934136b4d074e8ae2ed89/setup.py#L99
We should add a line saying that this replaces `gsheetsdb` (https://pypi.org/project/gsheetsdb/). | 0easy |
Title: Enable to use custom logger in WebClient, WebhookClient (async/sync)
Body: As mentioned at https://github.com/slackapi/bolt-python/issues/219#issuecomment-765055772, there is no way to pass a custom `logging.Logger` instance to `WebClient` etc. This is not a specific need for the Bolt issue. We can add `logger: ... | 0easy |
Title: FAQ item "How do I consume a query string that has a JSON value?" is outdated
Body: The default value of `falcon.RequestOptions.auto_parse_qs_csv` was changed to `False` in v2.0 and handled in https://github.com/falconry/falcon/issues/842 and https://github.com/falconry/falcon/pull/1318.
The FAQ item https://... | 0easy |
Title: [Feature request] Add apply_to_images to BaseCropAndPad
Body: | 0easy |
Title: `cirq.Simulator` final_state_vector is not normalized
Body: **Description of the issue**
The final state vector of `cirq.Simulator.simulate` may acccumulate enough numerical error that it may not have unit norm. similar to #5916
**How to reproduce the issue**
```py3
q0 = cirq.LineQubit(0)
circuit = cirq... | 0easy |
Title: Create contributing.md
Body: Anthony gave a lot of guidelines on how to contribute on this PR: https://github.com/numerique-gouv/impress/pull/340
It's be great to formalize that into a CONTRIBUTING.md file at the root of the repo that we reference to people who start making prs. | 0easy |
Title: Quick Start Tutorial Needed
Body: Loving this project.
I feel like this project would benefit from a short quick start tutorial that demonstrate common methods such as:
**Create item**
```
mutation = Operation(schema.Mutation) # note 'schema.'
mutation.create_item(input=dict(id="23432")).__f... | 0easy |
Title: Representations from representation_models are generated twice when nr_topics="auto".
Body: ### Discussed in https://github.com/MaartenGr/BERTopic/discussions/2142
<div type='discussions-op-text'>
<sup>Originally posted by **siddharthtumre** September 10, 2024</sup>
Hi @MaartenGr
While using nr_topic... | 0easy |
Title: A Keyerror in pandasai code should be handled well
Body: ### System Info
pandasai - 1.3.2
### 🐛 Describe the bug
**Question asked - Plot a scatter plot to show the relation between hexometer and denominator**
The above question was asked in Pandasai to do testing. Please note that there is no column call... | 0easy |
Title: Use alternative mechanism(s) to upgrade shillelagh
Body: `shillelagh.functions.upgrade` uses `pip` to upgrade the module. This is a hidden dependency that is not automatically installed.
If using a different package manager such as `uv` I have to add `pip` as a requirement for my project, which doesn't seem... | 0easy |
Title: Permissions should not be checked in serializers
Body: ## Bug Report
**Problematic behavior**
As discussed in PR https://github.com/numerique-gouv/impress/pull/329, some permissions are checked in serializers which may not be a best practise.
**Expected behavior/code**
Permissions should be checked in pe... | 0easy |
Title: [Error Message] Improve error message in SentencepieceTokenizer when arguments are not expected.
Body: ## Description
While using tokenizers.create with the model and vocab file for a custom corpus, the code throws an error and is not able to generate the BERT vocab file
### Error Message
ValueError: Mismat... | 0easy |
Title: Force validate_args to be keyword arguments
Body: This will help some forum users avoid issues like using `HalfNormal(loc, scale)` for HalfNormal distribution. In such case, validate_args will take the value of `scale` (because HalfNormal does not have loc parameter) and raise some misleading errors. | 0easy |
Title: Update various regex escape sequences
Body: The latest versions of Python are more strict wrt. escape in regex.
For instance with 3.6.8, there are 10+ warnings like this one:
```
...
lib/python3.6/site-packages/nltk/featstruct.py:2092: DeprecationWarning: invalid escape sequence \d
RANGE_RE = re.compile... | 0easy |
Title: [Feature] support sgl-kernel cu128 build
Body: ### Checklist
- [ ] 1. If the issue you raised is not a feature but a question, please raise a discussion at https://github.com/sgl-project/sglang/discussions/new/choose Otherwise, it will be closed.
- [ ] 2. Please use English, otherwise it will be closed.
### Mo... | 0easy |
Title: Ability to modify swagger strings
Body: The built-in openapi support is great! Kudos to that. However, it would be nice if there were ways to modify more swagger strings such as page title, `default`, `description` etc. Not a very important feature but would be nice to have to make swagger docs more customizable... | 0easy |
Title: Discord User ID & DM Support
Body: The ability to DM the bot would be helpful in addition to just being able to message it on a server. Instead of a server ID, you could add a user ID. On that note, if you could add one user ID as having all features without needing roles that would simplify the process. | 0easy |
Title: Chromedriver link is out of date
Body: My tests were failing because I followed the link on the docs, which points to a pretty old version of the driver.
The latest version is here: http://chromedriver.storage.googleapis.com/index.html?path=2.9/
If you want I can fix it and submit a PR?
| 0easy |
Title: Add the method to check equality in Block Kit model classes
Body: ### Reproducible in:
#### The Slack SDK version
All versions
#### Steps to reproduce:
```python
from slack_sdk.models.blocks import DividerBlock
DividerBlock() == DividerBlock()
```
It happens with any pair of equivalent blocks.
... | 0easy |
Title: Keeping binder-env synced when we make a new release
Body: Our binder examples use a docker image built from [this environment](https://github.com/ploomber/binder-env), however, whenever we release a new ploomber version, we want to re-built the environment, to always serve examples with the most recent version.... | 0easy |
Title: Expand environment variables in argumentfile
Body: My request is to enable the expansion of environment variables inside of the argumentfile.
**Background**: when RF reads additional path-like arguments from an argumentfile, arguments like `--pythonpath` or `--output` are hardcoded. There is currently no wa... | 0easy |
Title: ENH: add dwithin predicate and associated distance to sindex query / spatial join
Body: PyGEOS and Shapely >= 2.0 support spatial index queries with `dwithin` predicate, but in order to use it we need to add support for the distance parameter to `sindex.query()` and `sjoin()`.
| 0easy |
Title: "Guess" the test file from changed module
Body: Let's say you've changed `house/serializers.py`. Would be nice to run the tests of `house/test_serializers.py` or even the tests that were related.
To keep in mind:
- There is an option on pytest to specify [test paths](https://docs.pytest.org/en/latest/refer... | 0easy |
Title: `IMPORT_EXPORT_SKIP_ADMIN_LOG` is not tested
Body: **Describe the bug**
There is no integration test to check whether `IMPORT_EXPORT_SKIP_ADMIN_LOG` works if enabled.
There should be integration tests which ensure that admin log creation is skipped appropriately.
[This test](https://github.com/django-impo... | 0easy |
Title: one hot encoder has the option to automatically drop the second binary variable for binary categorical variables
Body: We need to add one parameter to the init method of the one hot encoder, called for example automate_drop_last_binary that when True, will automatically return 1 binary variable if the original v... | 0easy |
Title: Fix strict typecheck for cirq importers
Body: **Description of the issue**
Clients importing from cirq fail strict type checking as follows:
```
$ mypy --strict -c "from cirq import Circuit"
<string>:1: error: Module "cirq" does not explicitly export attribute "Circuit" [attr-defined]
```
This is be... | 0easy |
Title: Implement keyboard.send_keys_directx(...): use scan codes for DirectX games
Body: The potential solution is found on Reddit: https://www.reddit.com/r/learnpython/comments/7yquo6/moving_mouse_in_a_unity_window_with_python/
This is a DirectInput scan codes:
http://www.gamespp.com/directx/directInputKeyboardSca... | 0easy |
Title: Probability Calibration Curve
Body: When performing classification one often wants to predict not only the class label but also the associated probability to give a level of confidence in the prediction. The `sklearn.metrics.calibration_curve` method returns true and predicted probabilities that can be visualize... | 0easy |
Title: Option to pass "smoothing_level" to ES model
Body: **Is your feature request related to a current problem? Please describe.**
Yes, we are using ES model to predict the value of the timeseries, now when the next point is being predicted, it is giving a very high weightage to the last point(s). So say if there wa... | 0easy |
Title: Add detail to the openers_file list
Body: **Is your feature request related to a problem? Please describe.**
Currently if you have a lot of opener_files, 2 issues arise.
1. It's increasingly difficult for people to know which opener_file does what
2. If the opener has an author or a repository there is no go... | 0easy |
Title: Why is the version of FastAPI fixed in the install_requires?
Body: Currently fastapi/pydantic versions are fixed in `setup.py`:
```
requirements = [
'fastapi==0.52.0',
'pydantic==1.4',
'contextvars;python_version<"3.7"'
]
```
Is there a reason not to use `>=` instead?
If compatibility is... | 0easy |
Title: Reduce CI run time
Body: We have quite a few long running tests that take up a few seconds. Even if we only clean up the top 10 we should be able to shave at least a minute off the CI | 0easy |
Title: [DOC] The suggested aldryn-search package does not work anymore with django>=4
Body:
## Description
https://docs.django-cms.org/en/latest/topics/searchdocs.html
The above documentation page suggest `aldryn-search` package which does not work anymore with django >4.0 (bug with Signal using `providing_args... | 0easy |
Title: Ulimit low on MacOS, but incorrect way to update it
Body: ```
Open file descriptor limit (256) is low. File sync to remote clusters may be slow. Consider increasing the limit using `ulimit -n <number>` or modifying system limits.
```
But on MacOS 15 you can not do that anymore
```
$ ulimit -n 4096
$ launchctl ... | 0easy |
Title: Zip file - Windows paths
Body: <!--- Provide a general summary of the issue in the Title above -->
## Context
When deploying a Django app (over 50mb) from a Windows 10 machine the tarball retains the Windows directory separators '\\\\', when deployed to Lambda this causes the error "No module named 'django.co... | 0easy |
Title: Method to remove InlineKeyboardButton from markup
Body: As i understand, now InlineKeyboardMarkup is just a dict with lists, so method like pop() will be useful and make code cleaner, at least for newbies like me.
For now, to make dynamic inline keyboard with deleting buttons after user clicks on them i need t... | 0easy |
Title: [DOCS] Add reference to pyod
Body: It's a related project with *many* outlier detection models. It would help folks if we add a reference in our outlier docs.
https://github.com/yzhao062/pyod
| 0easy |
Title: Change config file default name
Body: Our default config path is `.scanapi.yaml`, which is not so explicit as it could.
https://github.com/scanapi/scanapi/blob/master/scanapi/settings.py#L5
Some other possibilities:
- scanapi.conf (like [redis](https://redis.io/topics/config), or [postgresql](https://ww... | 0easy |
Title: Speed up test by using shared global variable
Body: Use pytest fixture global variable to share dataframes to prevent having to load in the test dataset every time across the different tests. For example:
 after it finished running.
Describe what's the expected behaviour and what you're observing.
## Environment
Provide at least:
- OS: any
- `pip list` of ... | 0easy |
Title: Regression for usage of pip options
Body: ## Issue
Since version 4.0 tox fails when encountering pip options as part of the dependencies.
The following example works fine with tox <4.0, but doesn't work with tox >=4.0 anymore.
```
$ cat requirements.txt
--no-binary pydantic
$ cat tox.ini
[tox]
env... | 0easy |
Title: `client` parameter in `Consumer` constructor doesn't work as documented
Body: ## Precondition
Consider the following consumer:
```python
class GitHub(uplink.Consumer):
@uplink.get("/users/{username}")
def get_user(self, username):
"""Get a single user."""
```
## Steps to recreate
... | 0easy |
Title: handling extra keyword arguments
Body: If the user passes in non-hypertools keyword arguments, we should pass them to our plotting backend. This is somewhat non-trivial in that we need to handle the case where the user wants different values for different elements of the to-be-plotted data list. I think what ... | 0easy |
Title: Add a parameter in the API to translate html
Body:
Maybe you could add a parameter (format: text or html) in the API to allow translating html?
Thanks to [https://github.com/argosopentech/translate-html](argosopentech/translate-html)
I can do a pull request if interested. | 0easy |
Title: [DOC] Add Raises to docstrings for methods that can raise exceptions
Body: ### Describe the issue linked to the documentation
We mostly do not document the errors raised and the reasons for them. It would be good to do so. This should be done incrementally and is a good first issue.
1. Pick and estimator a... | 0easy |
Title: deSEC DNS Authenticator plugin for Certbot (Let's Encrypt)
Body: Let's write a plugin like this one: https://github.com/certbot/certbot/tree/master/certbot-dns-cloudflare | 0easy |
Title: Incorrect Description of Changing cell type
Body: [Changing Cell's Type](https://euporie.readthedocs.io/en/latest/apps/notebook.html#changing-a-cell-s-type) has incorrect description .
It is explaining `how to close notebook` instead of `how to change cell's type`.
Corresponding [file](https://github.com/joouh... | 0easy |
Title: consider having .train() and .customized_train()
Body: .train() will just call .customized_train() with a series of defaults in place.
it'll have a much simpler interface, which would be nice.
| 0easy |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.