PRATIK C

Results 44 comments of PRATIK C

> > Am I missing something? > > I think you are missing, that Flair creates Flair-models and not hugging face models. You can see how to use them by...

Any answer on this. How to avoid overfitting on smaller data-points. Is `dropout` only option?

Hi @makcedward @manishiitg , any recent improvements to create `NER synthetic data`. Original_text=`My name is Pratik. I live in India' Augmented can be: 1. `My name is Jon. I live...

> Hi @pratikchhapolika, without a full traceback of the errors, we can't tell if this is a `transfomers` issue or a issue in your custom modeling code. This is the...

Hi @jon-tow @python273 Why we have multiple .bin files inside `stabilityai/stablelm-base-alpha-7b`? When we load the model which bin file is loaded?

> What GPU are you running on? eos_token looks wrong in your last snippet. Can you just use the provided pipeline? I don't think you need an attention mask either....

> trainer.train() @srowen I am doing Prompt-Tuning and training the model using `Trainer API` and then saving model in local using `trainer.save_model("dolly3b_demo_model")`. Do I need to upload in Hugging face?...

How to modify the default prompt here, using the above scenario and example: ``` from langchain_core.callbacks import BaseCallbackHandler class TestCallback(BaseCallbackHandler): def on_llm_start(self, serialized, prompts, **kwargs): print(f"Prompts: {prompts}\n\n") def on_llm_end(self, response,...