# ResNet50-Tensorflow **Repository Path**: zzzxx/ResNet50-Tensorflow ## Basic Information - **Project Name**: ResNet50-Tensorflow - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-07-12 - **Last Updated**: 2022-06-05 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # ResNet-50 in Tensorflow ResNet-50 model writtern entirely in tensorflow. ## Directory Structure ``` Project |-- datasets | |-- dev_set | |-- test | |-- test_set | |-- train | `-- train_set |-- models |-- submissions |-- datalab.py |-- dataset_clusterer.py |-- util.py |-- make_file.py |-- model.py |-- predict.py |-- test.py `-- train.py ``` ## Model ![](images/resnet-50.png) ## Usage Run ```python dataset_clusterer.py``` to make batches of train data and test data and save them in ```./datasets/train_set``` and ```./datasets/train_set``` respectively. Run ```python train.py``` to train the model and save it to ```./models/``` Run ```python predict.py``` to make probability predictions and save the output to ```./submissions/sub_1.csv```