Shreyansh Singh

Results 7 issues of Shreyansh Singh

I have some problems with the following code snippet. I am extracting text from the PARA level, but then since I want to identify superscripts as well, I am going...

I trained a model with the following architecture. ``` model = Sequential() model.add(Conv2D(32,(7,7), input_shape=(224, 224, 3), padding='same', activation='relu')) model.add(MaxPooling2D(pool_size=(2, 2), strides=(2, 2))) model.add(BatchNormalization()) model.add(Conv2D(64,(5,5), padding='same',activation='relu')) model.add(MaxPooling2D(pool_size=(2, 2), strides=(2, 2))) model.add(BatchNormalization())...

I am trying to use the pre-trained VGG16 model of Keras and trying to convert it to a tfe model. All the layers in VGG16 are implemented in TFE, except...

I wanted to know if there exists a way to use dictionaries in the .mpc format files like the Matrix and Array ones.

Is there any way to use this action to push to a public ECR repository?

I was trying to run the AWR algorithm on the HalfCheetah environment as given in the README. So, first of all there is no `run.py` code in the folder of...

## How to reproduce Using almost the same code from the tutorials ```python from tqdm import tqdm import os from torch.optim import Adam from transformers import AutoModelForCausalLM, AutoTokenizer, AutoModelForSeq2SeqLM import...