mirror of
https://github.com/lordmathis/CUDANet.git
synced 2025-11-06 09:44:28 +00:00
Split inception v3 source file
This commit is contained in:
@@ -2,13 +2,15 @@ import torchvision
|
||||
import sys
|
||||
|
||||
sys.path.append('../../tools') # Ugly hack
|
||||
from utils import export_model_weights, print_model_parameters
|
||||
from utils import export_model_weights, print_model_parameters, predict
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
inception = torchvision.models.inception_v3(weights=torchvision.models.Inception_V3_Weights.DEFAULT)
|
||||
inception.eval()
|
||||
|
||||
print_model_parameters(inception) # print layer names and number of parameters
|
||||
# print_model_parameters(inception) # print layer names and number of parameters
|
||||
|
||||
export_model_weights(inception, 'inception_v3_weights.bin')
|
||||
# export_model_weights(inception, 'inception_v3_weights.bin')
|
||||
|
||||
print(predict(inception, "./margot.jpg"))
|
||||
|
||||
Reference in New Issue
Block a user