Madnex
Madnex
Is anyone working on this? I would be happy to pick it up and improve the tests.
Hi! I have managed to fix most of the tests. However I have issues with the following ones: 1. `nltk/parse/corenlp.py: 9 passed and 33 failed.` I am getting errors indicating...
Okay, so is there a way to include issues 1-3 in the tests for the CI if we need specific setups? For the issue 4 I think it is a...
Wow, thanks for the quick fix 👍
> https://github.com/nltk/nltk/issues/2989#issuecomment-1222068304 I'm having issues implementing this workaround. I added the `setup_module()` inside the `hunpos.py`. ``` class HunposTagger(TaggerI): """ A class for pos tagging with HunPos. The input is the...
> https://github.com/nltk/nltk/issues/2989#issuecomment-1234094779 Thanks @tomaarsen for the detailed explanation. In fact that is exactly what I also tried, however I always used `python -m doctest nltk/tag/hunpos.py` where it continued to fail....
#3050 Added the PR. Let me know if something needs to be changed :)
Any solution for this? Edit: Needed to set the height of the map container to a fixed value.
Hi, got it working with ollama with the following setup: ```python from paperqa import Docs, OpenAILLMModel from openai import AsyncOpenAI local_client = AsyncOpenAI( base_url='http://localhost:11434/v1', api_key='ollama', ) docs = Docs( client=local_client,...
> ``> Hi, got it working with ollama with the following setup: > > > > > > ```python > > > from paperqa import Docs, OpenAILLMModel > > >...