-
Hi there,
first of all I wanted to say that I really appreciate your framework. It's nicely written and really helpful.
I have extensively gone through the whole code base to understand how you …
-
Hey guys,
I keep getting the following errors when I run the maml_miniimagenet.py example. I did not change anything on the code do you have any idea why that might be the case.
Downloading: .…
-
Hi,
I am trying to run the news_topic_classification.py in the text examples folder, but I keep running into the error mentioned here:
`Traceback (most recent call last):
File "news_topic_cla…
-
I tested the mnist example with default parameters:
**https://github.com/learnables/learn2learn/blob/master/examples/vision/meta_mnist.py**
But got result:
**Loss : 1.609 Acc : 0.200: 100%|██…
-
Dear all,
Thanks for sharing the excellent work! I saw the training datasets in the examples are from learn2learn or torchvision. If we want to try some new datasets, e.g. speech recognition datase…
-
https://github.com/learnables/learn2learn/blob/22dfb50aa5557162919f361f24df8353ec3441e4/examples/maml_toy.py#L45
change to 'maml.clone()'
-
Hi,
I failed to run the news_topic_classification.py, and it shows the following error:
**_requests.exceptions.ConnectionError: HTTPSConnectionPool(host='www.dropbox.com', port=443): Max retries e…
-
So I have a model with an RNN and a linear layer afterwards:
class BedPredictor(nn.Module):
def __init__(self):
super().__init__()
self.RNN = nn.LSTM(NUM_VARI…
-
https://github.com/learnables/learn2learn/blob/22dfb50aa5557162919f361f24df8353ec3441e4/examples/vision/maml_omniglot.py#L82
After having instantiated the train_tasks TaskDataset try to do:
```
f…
-
Hi there! I am building a neural network with MAML. Everything works fine until adapting the learner to the loss. Here is the code (slightly modified from the examples):
```python
import random
i…