Skip to content

chaeAclark/blog_multinomial_classification

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Multinomial Classification

This repo is the model and evaluation code related to the blog post here.

The evaluate_models.py file has code that will train the One-vs-All, All-vs-All, and Hierarchical models.

The multinomial_class.py contains the class code for the All-vs-All, and Hierarchical models. The multinomial_class_orig.py contains similar class code for the All-vs-All, and Hierarchical models. The only difference between the two are that "..._orig.py" freezes every layer except the output layer, while "multinomial_class.py" trains the entire model.