Bai Zhuoran

Results 10 comments of Bai Zhuoran

Thank you very much, I have solved this problem by another way. The above problem occurred when I chose to download the plava 1.6.7 source code in ubuntu and then...

Hi, I tried TO execute the SET client_min_messages TO debug5; But I still didn't get any valuable information. Here's what I got after doing it in pgAdmin: DEBUG: StartTransaction(1) name:...

Yes, I have tried SET log_min_messages TO debug1; and I have run the PL/Java function in my ubuntu server.And it still hint these: Error: java.sql.SQLException LINE 1: INSERT into udt_test...

Yes, I have tried > SET log_min_messages TO debug1; before any first use of a PL/Java function and I have run the PL/Java function in my ubuntu server.And it still...

Hi, That's the details of my stacktrace, After some analysis, I still don't know what the problem is with my parse function. > java.sql.SQLException > at [email protected]/org.postgresql.pljava.internal.EntryPoints.doPrivilegedAndUnwrap(EntryPoints.java:341) > at [email protected]/org.postgresql.pljava.internal.EntryPoints.udtParseInvoke(EntryPoints.java:298)...

This is my parse method: ``` public static Point parse(String input) { Pattern pattern = Pattern.compile("\\((-?[0-9]+(\\.[0-9]+)?), *(-?[0-9]+(\\.[0-9]+)?)\\)"); Matcher matcher = pattern.matcher(input); if (!matcher.matches()) { throw new IllegalArgumentException( "Unable to parse...

This is the jar package I installed into PostgreSQL. [udt_test.zip](https://github.com/user-attachments/files/16040040/udt_test.zip) > You don't need to do anything. Java 11 is ok. I merely mentioned it is rather old, and newer...

But I don't know how to process my medical images into your BraTS example dataset, can you tell me how to process jpg medical images or MP4 medical videos into...

Thank you very much for your help, but I have a new problem now. Now I have some ultrasound images of the thyroid, some of which are labeled, and I...

> (3dunet) root@dsw-692855-7f756f5c44-m2cfh:/mnt/workspace/3DUnetCNN/examples/TH2024# python /mnt/workspace/3DUnetCNN/unet3d/scripts/train.py --config_filename TH2024_config.json > 2024-10-27 21:08:35,811 - root - INFO - Config: /mnt/workspace/3DUnetCNN/examples/TH2024/TH2024_config.json > 2024-10-27 21:08:35,812 - root - INFO - Work Dir: /mnt/workspace/3DUnetCNN/examples/TH2024/TH2024_config > 2024-10-27...