tudelft3d / SUMS-Semantic-Urban-Mesh-Segmentation-public

SUMS: Semantic Urban Mesh Segmentation.
GNU General Public License v3.0
56 stars 14 forks source link

The trained model cannot be extracted #1

Closed amiltonwong closed 2 years ago

amiltonwong commented 2 years ago

Hi, authors,

After I downloaded the provided trained model in gz file, and execute the command tar zxvf trained_model.gz, I got the following error:

gzip: stdin: not in gzip format
tar: Child returned status 1
tar: Error is not recoverable: exiting now

Is that something wrong with the trained_model.gz file? Would you provide a corrected one? (and saved in zip format is better)

Thanks

WeixiaoGao commented 2 years ago

Hi, the trained model is not being used for direct decompression. You can read it directly with the code provided by setting the configuration file to 'Test_config'. And it depends on the Boost libraries Serialization and IO Streams (compiled with the GZIP dependency). For more information please refer to the CGAL classification package.

amiltonwong commented 2 years ago

OK, got it. Is it a trained model using tensorflow package?

WeixiaoGao commented 2 years ago

No, just CGAL classification package.

amiltonwong commented 2 years ago

Thanks