-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdl_projects.mdk
More file actions
74 lines (58 loc) · 2.1 KB
/
dl_projects.mdk
File metadata and controls
74 lines (58 loc) · 2.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
---
title: Deep learning 100+ projects
subtitle: Deep learning 100+ projects series
summary: through those projects you will be a Deep learning engineer
authors:
- admin
tags: []
categories: []
date: "2019-05-30T00:00:00Z"
featured: false
draft: false
# Featured image
# To use, add an image named `featured.jpg/png` to your page's folder.
image:
caption: ""
focal_point: ""
# Projects (optional).
# Associate this post with one or more of your projects.
# Simply enter your project's folder or file name without extension.
# E.g. `projects = ["internal-project"]` references
# `content/project/deep-learning/index.md`.
# Otherwise, set `projects = []`.
projects: []
---
**Projects**
- 1. comments classification
this is the first deep learning project use the baby neural network,
it is a binary classification.
it have some problems, the accurate is low.
please fix the problem.
[data:](http://www.cs.cornell.edu/people/pabo/movie-review-data/rt-polaritydata.tar.gz) http://www.cs.cornell.edu/people/pabo/movie-review-data/rt-polaritydata.tar.gz
[more data:]( http://www.cs.cornell.edu/people/pabo/movie-review-data/) http://www.cs.cornell.edu/people/pabo/movie-review-data/
'''sh
安装nltk(自然语言工具库 [Natural Language Toolkit](http://www.nltk.org/))
$ pip install nltk
$ python
Python 3.5.2 (v3.5.2:4def2a2901a5, Jun 26 2016, 10:47:25)
[GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import nltk
>>> nltk.download()
下载nltk数据:
$ python
Python 3.5.2 (v3.5.2:4def2a2901a5, Jun 26 2016, 10:47:25)
[GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import nltk
>>> nltk.download()
ntlk有详细安装文档。
测试nltk安装:
>>> from nltk.corpus import brown
>>> brown.words()
['The', 'Fulton', 'County', 'Grand', 'Jury', 'said', ...]
'''
there are problems with this neural networks, that result not work
there are couple of tips for you to figure it out:
1. Is it get enough data?
2. How about the capacity of networks?