Commit Graph

992 Commits

Author SHA1 Message Date
Nisreen Al-Basha
cd4db7c83a Test passing 2018-05-02 21:51:22 -04:00
Jeremy Howard
750e810963 Merge branch 'master' of github.com:fastai/fastai 2018-04-30 18:13:04 -07:00
Jeremy Howard
64aea869ea lesson 14 2018-04-30 18:12:58 -07:00
Jeremy Howard
d96a806b92 xl 2018-04-30 18:12:27 -07:00
Jeremy Howard
e21b14c58d Merge pull request #420 from noklam/master
Change unfreeze to freeze last layer fine tuning
2018-04-30 13:28:33 -07:00
Jeremy Howard
03bf511176 Merge pull request #423 from narudesu/patch-1
Correct property typo (self.data.path)
2018-04-30 13:26:16 -07:00
Jeremy Howard
337509704a Merge pull request #425 from talhadar/patch-1
change using self.data_path to self.data.path
2018-04-30 13:25:32 -07:00
Tal Hadar
6492d01e1d change using self.data_path to self.data.path
using self.data_path in line 37 causes an error: AttributeError: ‘ConvLearner’ object has no attribute ‘data_path’
2018-04-30 19:38:52 +03:00
Matěj Šmíd
09b8b92c59 Correct property typo (self.data.path)
I got an error when I ran the tutorial code of deep learning 1. It said that self.data_path was not defined, so I looked into learner.py and saw that on the line before this line, there was self.data.path used instead of self.data_path, so I believe that should be corrected.
2018-04-30 18:27:48 +02:00
GFK\noklam.chan
9f3666818c Correct unfreeze to freeze last layer 2018-04-30 17:33:04 +08:00
Jeremy Howard
7d0a033cec Merge pull request #411 from mcskinner/sampler-comments
add inline comments to SortishSampler biggest batch logic
2018-04-29 15:24:28 -07:00
Jeremy Howard
d56de94ae3 Merge pull request #410 from mcskinner/whitespace-fix
fix whitespace issues in dataset.py
2018-04-29 15:23:51 -07:00
mcskinner
13a09a8266 add inline comments to SortishSampler biggest batch logic 2018-04-29 14:22:47 -07:00
mcskinner
83170e186f fix whitespace issues in dataset.py 2018-04-29 14:04:46 -07:00
Jeremy Howard
b25cd595a5 Merge pull request #388 from mcskinner/lsuv-test
port LSUV initializer example into a pytest
2018-04-29 12:47:37 -07:00
Jeremy Howard
e95ad5e939 Merge pull request #390 from JannesKlaas/master
Learner write to tmp_name / models_name absolute paths.
2018-04-29 12:46:57 -07:00
Jeremy Howard
53a0fbfeac Merge pull request #393 from bharadwaj6/master
fix for metric calculation in model validate
2018-04-29 12:46:21 -07:00
Jeremy Howard
be51ba68b4 Merge pull request #394 from zchrissirhcz/master
update requirements.txt
2018-04-29 12:42:08 -07:00
Jeremy Howard
1f6b61d4e2 Merge pull request #404 from PiotrCzapla/travis-ci
Add travis ci to fix #286
2018-04-29 12:38:07 -07:00
Jeremy Howard
de1103f95c Merge pull request #406 from NEIA20/fixes-class-method-arg
Changes `self` arg to `cls` in class method
2018-04-29 12:36:54 -07:00
Jeremy Howard
1777a34840 Merge pull request #407 from NEIA20/adds-read-dir-comment
[docs]: Adds comment to `read_dir`
2018-04-29 12:36:31 -07:00
Jeremy Howard
fb27e6009c Merge pull request #408 from NEIA20/adds-folder-source-comment
[docs]: Adds comment to `folder_source` and updates a couple variable names
2018-04-29 12:35:53 -07:00
Jeremy Howard
4b46cf9917 Merge pull request #409 from mcskinner/sampler-test
add test for `text.py` sampler implementations
2018-04-29 12:33:15 -07:00
mcskinner
9f21874042 ensure that SortishSampler always puts the largest sample first 2018-04-29 00:09:42 -07:00
mcskinner
f29e102714 add test for text.py sampler implementations 2018-04-29 00:01:11 -07:00
Nisreen Al-Basha
04537aabb6 grammar 2018-04-28 21:09:45 -04:00
Nisreen Al-Basha
a286a53f05 Adds comment to folder_source. Updates variables 2018-04-28 21:07:30 -04:00
Nisreen Al-Basha
1a07c5835b Adds comment to read_dir 2018-04-28 20:45:40 -04:00
Nisreen Al-Basha
621345afdc Removes comment 2018-04-28 19:36:13 -04:00
Nisreen Al-Basha
a66345015a Changes self arg to cls for class method 2018-04-28 19:32:54 -04:00
Piotr Czapla
7934517173 Fix travis-ci crash
It fixes the seg fault crash seen in travis builds.

Mostlikely the crash was caused by the exception below that appears if
the torch, cv2 and mathplotlib aren't imported in a right order.
```
ImportError: dlopen: cannot load any more object with static TLS
```
see #286 for more details.

fix typos in .travis.yml
2018-04-28 10:44:15 +02:00
Piotr Czapla
f111ce322d Add py.test as test time dependency to travis-ci 2018-04-28 10:44:15 +02:00
Piotr Czapla
a328382371 Add support for pytest to travis 2018-04-28 10:44:15 +02:00
Piotr Czapla
99852af199 Run unittests in travis 2018-04-28 10:44:15 +02:00
Jeremy Howard
2eb29a3ed6 Merge pull request #399 from movefast/documentation
Added a batch to generate documentation from code
2018-04-27 16:02:56 -07:00
Jeremy Howard
df0aeafc04 Merge pull request #401 from NEIA20/clean-up-read-dirs
[docs]: Cleans up `read_dirs` and `folder_source` in `dataset.py`
2018-04-27 15:38:50 -07:00
Nisreen Al-Basha
dc9ccaae9e Restores key signature of read_dirs 2018-04-26 23:03:23 -04:00
Nisreen Al-Basha
27c440864f Cleans up folder_source 2018-04-26 22:49:56 -04:00
Nisreen Al-Basha
305cb4c872 Removes duplicate variable. Uses abbreviations 2018-04-26 22:46:01 -04:00
Derek Li
4bf2151464 changed to fstring 2018-04-25 23:07:45 -07:00
Derek Li
261b87abcd minor tweaks 2018-04-25 22:53:34 -07:00
Derek Li
34ff57f2b1 Merge branch 'master' of https://github.com/fastai/fastai 2018-04-25 17:21:26 -07:00
Derek Li
6a889f3516 added ascii docs generator batch 2018-04-25 17:19:00 -07:00
Chris1080Ti
b4a875f50b add necessary python packages for pip install 2018-04-25 12:48:46 +08:00
Bharadwaj Srigiriraju
fe4ee09f5a fix for metric calculation in model validate 2018-04-25 10:03:53 +05:30
mcskinner
72888e60da rename and use existing image, not new test-specific ones 2018-04-24 09:02:28 -07:00
Jannes Klaas
34842113e5 Switched from an extra write dir argument to writing to tmp_name or models_name if they are absolute paths.
See discussion in #337
2018-04-24 16:08:54 +02:00
Jeremy Howard
13be1b3881 Merge pull request #379 from sgugger/patch-2
Add plot to OptimScheduler
2018-04-24 06:48:05 -07:00
Jeremy Howard
9af1fa9730 Merge pull request #380 from Gokkulnath/patch-3
Clean Up : random module imported Twice
2018-04-24 06:47:37 -07:00
Jeremy Howard
91247414a3 Merge pull request #381 from Gokkulnath/patch-2
Clean Up : Remove from math import sqrt
2018-04-24 06:47:17 -07:00