API

The Interaction Evaluater

In order to test the package on a X task you can follow this tutorial - make a link and a demo.
Below, you find the source code for ...

if __name__ == '__main__':
                            parser = ArgumentParser()
                            parser.add_argument('--path_raw', type=str, default='./data/raw/crossword')
                            parser.add_argument('--path_std', type=str, default='./data/std/crossword')
                            parser.add_argument('--path_cache', type=str, default='./cache')
                            parser.add_argument('--verbose', action='store_true')
                            args = parser.parse_args()
                        
                            asset = CrosswordAsset(args.path_raw, args.verbose)
                            asset.print_summary()
                     

Transformers

This sections provides codes and tasks whatever to be done for transformer models.

Others ... non seq-to-seq

This sections provides codes and tasks whatever to be done for other models or something.

The Interaction Visualizer

In order to test the package on a X task you can follow this tutorial - make a link and a demo.
Below, you find the source code for ...