File size: 160 Bytes
322e083
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
from idiomify.fetchers import fetch_alpha


def main():
    model = fetch_alpha("overfit")
    print(model.bart.config)


if __name__ == '__main__':
    main()