mzhadigerov
mzhadigerov
How to get a confidence of detected faces out of `face_locations` function?
**Describe the bug** I'm trying to use Paddle model: `model = lp.AutoLayoutModel("lp://paddledetection/TableBank/ppyolov2_r50vd_dcn_365e")` I'm getting an error: `ImportError: PaddleDetectionLayoutModel requires the PaddlePaddle library but it was not found in your environment....
Is there any pre-trained model checkpoint I can use to test? Training takes too much time because of the batch_size
Can you share code to `fine-tune` the `fine-tuned` roberta model? Just a simple example containing one contract with all the required features is enough.
How to query from an existing index? I filled up an index in Pinecode using: ``` docsearch = Pinecone.from_texts([t.page_content for t in texts], embeddings, index_name=index_name) ``` Now, I'm creating a...
I'm using the pipeline for Q&A pipeline on non-english language: ``` pinecone.init( api_key=PINECONE_API_KEY, # find at app.pinecone.io environment=PINECONE_API_ENV # next to api key in console ) index_name = "langchain2" embeddings...
I have 3 pdf files in my directory and I "documentized", added metadata, split, embed and store them in pinecone, like this: ``` loader = DirectoryLoader('data/dir', glob="**/*.pdf", loader_cls=UnstructuredPDFLoader) data =...
Are you considering to add ability to use ensembling during document search?
### Issue you'd like to raise. Hi I want to pass multiple arguments to a tool, that was created using `@tool` decorator. E.g.: ```python @tool def test(query: str, smth: str)...
Hi! After I create an agent using `initialize_agent` , I can call the agent using `agent.run`. I can see the steps on the terminal e.g.: ``` Thought: Do I need...