Marcos Martínez Galindo

Results 5 issues of Marcos Martínez Galindo

Hi! Do you plan to release the code for MetaLM? It would be nice to try it. [https://arxiv.org/pdf/2206.06336.pdf](https://arxiv.org/pdf/2206.06336.pdf)

When I try to run the benchmark examples, I get this error: ``` Traceback (most recent call last): File "repos/pyg_autoscale/small_benchmark/main.py", line 8, in from torch_geometric_autoscale import (get_data, metis, permute, models,...

| Status | Type | ⚠️ Core Change | Issue | | :---: | :---: | :---: | :--: | | Ready | Feature | No | | ## Feature...

Fix issue #27 by changing regex from: ``` re.match(r"^[A-Z]{2}-[A-Z0-9]{2,3}-[A-Z0-9]{2,3}$", value) ``` to ``` re.match(r"^[A-Z]{2}-[A-Z0-9]{1,3}-[A-Z0-9]{2,3}$", value) ``` Closes #27

Hello, I see in [validation.py](https://github.com/ProjectBabbler/ebird-api/blob/master/src/ebird/api/validation.py) that the code for checking if it's a subnational code is: ```python def is_subnational2(value): return re.match(r"^[A-Z]{2}-[A-Z0-9]{2,3}-[A-Z0-9]{2,3}$", value) ``` However, some location codes (like in Ireland)...