mirror of
https://github.com/aladdinpersson/Machine-Learning-Collection.git
synced 2026-02-20 13:50:41 +00:00
9 lines
222 B
Python
9 lines
222 B
Python
# disable tensorflow debugging messages
|
|
import os
|
|
os.environ['TF_CPP_MIN_LOG_LEVEL'] = '3'
|
|
|
|
from googlenet import GoogLeNet
|
|
|
|
if __name__ == "__main__":
|
|
model = GoogLeNet(input_shape = (224, 224, 3))
|
|
model.summary() |