Machine-Learning-For-Research / Dogs-Cats

Licence: other
猫狗二分类图片识别

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Dogs-Cats

SENet-for-Weakly-Supervised-Relation-Extraction
No description or website provided.
Stars: ✭ 39 (+77.27%)
Mutual labels:  dl
animethemes-dl
THIS PROJECT HAS BEEN ABANDONED. Downloads anime themes from animethemes.moe. Supports Batch download and MAL/AniList connecting.
Stars: ✭ 21 (-4.55%)
Mutual labels:  dl
gb-dl
A python based utility to download courses from infosec4tc.teachable.com , academy.ehacking.net and stackskills.com for personal offline use.
Stars: ✭ 33 (+50%)
Mutual labels:  dl
rbbcc
BCC port for MRI - this is unofficial bonsai project.
Stars: ✭ 45 (+104.55%)
Mutual labels:  dl
COVID-Net
Launched in March 2020 in response to the coronavirus disease 2019 (COVID-19) pandemic, COVID-Net is a global open source, open access initiative dedicated to accelerating advancement in machine learning to aid front-line healthcare workers and clinical institutions around the world fighting the continuing pandemic. Towards this goal, our global…
Stars: ✭ 41 (+86.36%)
Mutual labels:  dl
tensorflow-labsheets
Lab worksheets for the Applied Deep Learning Course.
Stars: ✭ 17 (-22.73%)
Mutual labels:  dl
COVID-19-AI
Collection of AI resources to fight against Coronavirus (COVID-19)
Stars: ✭ 25 (+13.64%)
Mutual labels:  dl
100-days-of-ai
人工智能 100 天
Stars: ✭ 14 (-36.36%)
Mutual labels:  dl
awesome-list-of-awesomes
A curated list of all the Awesome --Topic Name-- lists I've found till date relevant to Data lifecycle, ML and DL.
Stars: ✭ 259 (+1077.27%)
Mutual labels:  dl
deeplearning-paper-notes
Reading notes on deep learning papers---深度学习论文阅读笔记
Stars: ✭ 36 (+63.64%)
Mutual labels:  dl
deep-significance
Enabling easy statistical significance testing for deep neural networks.
Stars: ✭ 266 (+1109.09%)
Mutual labels:  dl
neptune-client
📒 Experiment tracking tool and model registry
Stars: ✭ 348 (+1481.82%)
Mutual labels:  dl
text2video
Text to Video Generation Problem
Stars: ✭ 28 (+27.27%)
Mutual labels:  dl

Dogs-Cats

猫狗二分类图片识别

模型结构

两个卷积层 + 两个FC层

def __init_network(self):
	nw = network.Network(self.input)

	nw.conv2d(filter_shape=[3, 3, 3, 16], strides=[1, 1, 1, 1], name="Conv1")
	nw.max_pool(ksize=[1, 2, 2, 1], strides=[1, 2, 2, 1], name="Pool1")

	nw.conv2d(filter_shape=[3, 3, 16, 16], strides=[1, 1, 1, 1], name="Conv2")
	nw.max_pool(ksize=[1, 2, 2, 1], strides=[1, 2, 2, 1], name="Pool2")

	nw.fc(50 * 50 * 16, 256, name="Fc1")
	nw.dropout(self.keep_prob, name="Drop1")

	nw.fc(256, 2, activation=tf.nn.softmax, name="Fc3")
	return nw.output()
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].