Leander Melms
Leander Melms
Probably too late, but change l.name **is** layer_name to l.name **==** layer_name: ```python conv_output = [l for l in model.layers if l.name == layer_name][0].output ```
Hi @gmanc2 you're right, the project is rather messy overall and was written by me as a proof-of-concept at the time. It's not much work to structure everything, but I'm...
Hi @qiuqiangkong would you mind uploading the full dataset at a different provider? Unfortunately, a baidu user account is required to download the files which I found impossible to create....
Yes, but unfortunately I've scheduled updating dependencies which require greater effort until I'm satisfied with the front-end implementation and the JS code, talking to the Scala backend. IMHO updating Jetty...
Having the same issue here. Did you manage to solve this?
Used Java 8. Sorry, should have read the instructions more carefully. Everything works now 👍
I've actually packaged ctakes 3.2.3 with java 8. There is a thread in the mailing list describing how to do this. But switching to java 7 did it for me....
In my case, when changing the DictionaryLookupAnnotatorDB to ```xml ``` it fails with **Initialization of annotator class "org.apache.ctakes.dictionary.lookup2.ae.DefaultJCasTermAnnotator" failed** Running the CVD / CPE from command line works fine; I've...
Sorry, figured it out. In accordance with the example in mitre/heart, I've changed `cmd/ie/main.go`: ```go server.DefaultConfig.Auth = auth.HEART("simple", "client_jwk.json", "http://localhost:8080/openid-connect-server-webapp/", "secret") ``` Requests of course return 403 now. I think...