Results 15 comments of Anton Lee

I'm happy to be assigned to this if someone else isn't better suited

Additionally I would like to see a flag for using a subsampled test set. I've found Core50 test set to be needlessly large. In fact the Core50 authors end up...

I would like to use this code snippet as well. Would an open source software license be possible?

https://github.com/yu-rp/KANbeFair/blob/main/src/data/special.py

@Thrameos I'm working on a test and it seems emoji still don't work although that appears to be a different reason.

The emoji thing seems to be a problem with java itself ``` java -classpath "😊/mypackage.jar" mypackage.MyClass Error: A JNI error has occurred, please check your installation and try again Exception...

Since Java appears to have difficulties with emojis in classpaths, it's probably impossible to fix this issue. The important thing is to support non-English character sets that are likely in...

I fixed the hanging issue and packaged it with the related tests in `test_startup.py`. These are run as sub-processes using `subrun'. I'm running into an issue with them failing on...

Last week I tried fixing this on windows but ran into some other issues related to UTF-8 vs UTF-16 character encoding on Windows in the JNI. It will likely take...

- Launching Java with non-ascii class paths appears impossible on Windows (https://stackoverflow.com/questions/20052455/jni-start-jvm-with-unicode-support). To resolve this issue, I tried adding the classpath after initialization since this supports Unicode. But the change...