Samiur Rahman

Results 33 comments of Samiur Rahman

thanks for your explanations. i might have formulated my question wrong. yes, i would like to understand or measure how well my surrogate model fits or represents my teacher model....

here are some few example papers that talk about different evaluation methods for interpreters. the most i am interested in is number 2. 1. https://arxiv.org/abs/1906.02108 2. https://arxiv.org/abs/2008.05895 3. https://arxiv.org/abs/1910.02065

i agree with your perspective. :) also, these papers are not from very good journals. but my main focus was the metrics. i am not worried about their results, rather...

> In the Arduino IDE, which board I have to select to upload those sketches? > > thx Hello. i am struggling with this problem as well. Could you please...

Hi. Thank you so much for your time and nice explanation. I believe i was able to create the scripts that i needed according to your instruction. But i am...

If i write ``` from models.maml.maml import ModelAgnosticMetaLearningModel from networks.maml_umtra_networks import SimpleModel ``` i get `ModuleNotFoundError: No module named 'models'`

Hi, thanks for your quick reply. I have manages to solve the problem. Now i have another one. I have faced this problem before and i still haven't been able...

i think i did not understand how to use the parse_function. I have not used it anywhere. I need to implement that function. But i am not sure about where...

So let's say this is my subclass: ``` class MySubClass(JPGParseMixin,Database): def __init__( self, random_seed, num_train_classes, num_val_classes, ): self.num_train_classes = num_train_classes self.num_val_classes = num_val_classes super(MySubClass, self).__init__( settings.OMNIGLOT_RAW_DATA_ADDRESS, os.path.join(settings.PROJECT_ROOT_ADDRESS, 'data/'), random_seed=random_seed, input_shape=(28,...