Raimund Schnürer

Results 4 comments of Raimund Schnürer

@sven-h Your snippet works well. I tried: ```python sparql = SPARQLWrapper("http://dbpedia.org/sparql") sparql.setQuery("SELECT DISTINCT ?geometry WHERE { geo:geometry ?geometry}") sparql.setReturnFormat(JSON) results = sparql.query().convert() ``` It works with Python 3.7, but the...

Hi sven-h, I used virtualenv instead of conda. An openssl binary is not available there. I tried adding pyOpenSSL, but it did not help. I noticed that sparqlwrapper works fine...

@anilesec I faced a similar problem. When using the `sign_method="depth"` parameter, the artefacts disappear in your example mesh. The surface seems to be more rough though: ![comparison](https://user-images.githubusercontent.com/9949879/132854346-11cba1e9-7645-436f-96cb-49d00e44c30f.PNG)

Here my attempt to adapt the code. Now ten tasks are performed and summed in each step: ``` def train_maml(model, epochs, dataset, lr_inner=0.01, batch_size=1, log_steps=100): #MOD # ... optimizer =...