Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wubinzzu/mgui
MGUI
https://github.com/wubinzzu/mgui
Last synced: about 2 months ago
JSON representation
MGUI
- Host: GitHub
- URL: https://github.com/wubinzzu/mgui
- Owner: wubinzzu
- Created: 2024-07-17T06:22:35.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-07-17T06:25:12.000Z (6 months ago)
- Last Synced: 2024-07-17T08:30:44.308Z (6 months ago)
- Language: Python
- Size: 305 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# MGUI
This is a Tensorflow implementation for MGUI and a part of baselines:>Bin Wu, Xiaoewn Yin, Xun Su, Mingliang Xu.
## Environment Requirement
The code has been tested running under Python 3.8.10. The required packages are as follows:
* tensorflow == 1.14.0
* numpy == 1.19.5
* scipy == 1.4.1
* pandas == 1.3.1## C++ evaluator
We have implemented C++ code to output metrics during and after training, which is much more efficient than python evaluator. It needs to be compiled first using the following command.
```
python setup.py build_ext --inplace
```
If the compilation is successful, the evaluator of cpp implementation will be called automatically.
Otherwise, the evaluator of python implementation will be called.