Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/wubinzzu/mgui

MGUI
https://github.com/wubinzzu/mgui

Last synced: about 2 months ago
JSON representation

MGUI

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.