Dmitry Labazkin

Results 27 comments of Dmitry Labazkin

@Gallaecio Sorry, I was wrong yesterday that the order of spider / pipeline initialization matches the behavior for my case - I saw in logs that initialization has the following...

@Gallaecio I added the following code to my pipeline object which executes export: ```python def __init__(self): self.logger.info("Initialization") @classmethod def from_crawler(cls, crawler): pipeline = cls.__new__(cls) pipeline.logger = logging.getLogger(cls.__name__) pipeline.logger.info("Creation") pipeline.__init__() crawler.signals.connect(pipeline.spider_closed,...

I don't have much practical experience in DL, but I suppose the following: - The first picture has dimension annotations which are more specific to CNN than to sequences. And...

> I did not realize I need to allow discussions to have dicussion. I never use them yet. Tell me if you prefer discussion, else, we can discuss here. It...

More and more formats of the latest version of the book are created, @DannyDannyDanny great work :) Maybe our efforts can be combined in the future and as an idea...

Hello @ryanshrott, Try to run agent using `await agent_chain.arun`, not `agent.run`: https://python.langchain.com/en/latest/modules/agents/toolkits/examples/playwright.html#:~:text=result%20%3D%20await%20agent_chain.arun(%22What%20are%20the%20headers%20on%20langchain.com%3F%22)%0Aprint(result)

> > Hello @ryanshrott, > > Try to run agent using `await agent_chain.arun`, not `agent.run`: https://python.langchain.com/en/latest/modules/agents/toolkits/examples/playwright.html#:~:text=result%20%3D%20await%20agent_chain.arun(%22What%20are%20the%20headers%20on%20langchain.com%3F%22)%0Aprint(result) > > when running the sample code, it shows, > > ``` > result...

I found that the first version that has this warning is the latest one (0.0.198), before that there were no such warnings.

This problem is also in further sections of the same tutorial.

Probably also by the same reason slicing using `[:num_tokens, :num_tokens]` is not required in `MultiHeadAttention` class in section "3.6.1 Stacking multiple single-head attention layers".