TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Fast.ai releases new deep learning course, libraries, and book

799 pointsby amardeepover 4 years ago

28 comments

toshover 4 years ago
I do recommend getting the book that just came out (I did, it is fantastic)<p><a href="https:&#x2F;&#x2F;www.amazon.com&#x2F;Deep-Learning-Coders-fastai-PyTorch&#x2F;dp&#x2F;1492045527" rel="nofollow">https:&#x2F;&#x2F;www.amazon.com&#x2F;Deep-Learning-Coders-fastai-PyTorch&#x2F;d...</a><p>that said: fast.ai also released a draft of the book available here (including the notebooks) <a href="https:&#x2F;&#x2F;github.com&#x2F;fastai&#x2F;fastbook" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;fastai&#x2F;fastbook</a><p>edit: if you can afford it, getting the book is a great way to support the authors
评论 #24237825 未加载
评论 #24237455 未加载
评论 #24238010 未加载
评论 #24243323 未加载
toshover 4 years ago
for those unfamiliar with fast.ai:<p>it is a practitioner-style style deep learning course that instead of starting with the fundamentals starts with examples and results and then over time, layer by layer reveals what it is all about and how it works in detail until you ask yourself &quot;that is all there is?&quot;. a great way to make a seemingly unapproachable topic approachable.<p>you don&#x27;t need big data, you don&#x27;t need a GPU, you don&#x27;t need to install a ton of dependencies, you only need a browser (to access jupyter notebooks).<p>last but not least: this is kind of the &quot;definitive version&quot; of the course as it now comes with a book, a new version of the library (re-written in a more thoughtful way) and with new versions of recorded lectures&#x2F;lessons based on the book w&#x2F; way better audio quality (compared to the previous ones).<p>If you ever were curious about deep learning but did not find the time to take a look or thought it was unapproachable: now is a great time to dive in and this is a great course (&amp; book &amp; library &amp; community) to do so
评论 #24237975 未加载
评论 #24238329 未加载
评论 #24240795 未加载
评论 #24240842 未加载
losvedirover 4 years ago
Oh, neat! I went through an earlier version of the online course when I was just trying to understand what this &quot;deep learning mumbo jumbo&quot; was all about, and it was the clearest, and easiest to follow, and most interesting one available, by a long shot! One of the assignments had you train an image recognization model based on google image results, and after a shockingly small amount of work and time I had a model that could distinguish a picture of a game of Go from a game of Chess almost perfectly. That was a huge eye-opener for me.<p>That was maybe 1-2 years ago at this point and I had wanted to take another look. What a perfect opportunity! And I&#x27;m excited it sounds like there might be a little more discussion of non-DL ML and applications in tabular data (where I&#x27;d have the most likely use for it), as well as the nitty gritty like deployments and use in production!<p>Any progress on the Swift front? Is that mentioned &#x2F; used &#x2F; discussed at all in this new course?
评论 #24240549 未加载
评论 #24240440 未加载
cube2222over 4 years ago
Not interested much in deep learning, but wanting to be somewhat on top of it to understand it well, I&#x27;ve done a few courses and skimmed a few books which are available.<p>The fastai video course was, with a big gap, the best, most understandable, most practical and most enjoyable of them.<p>Just wanted to say this. Thanks so much for creating it and regularly keeping it up to date!
评论 #24238708 未加载
fpgaminerover 4 years ago
A question for Jeremy, perhaps. For the longest time the fast.ai courses have used Adam and one-cycle, at least for CV tasks. More recently Ranger and flat-cos have been dominating the Imagenette leaderboards. I guess I&#x27;m curious if fast.ai intends to switch over to teaching that policy instead of one-cycle?<p>I guess more generally I&#x27;m curious what criteria the fast.ai team uses for deciding what techniques to teach. My feeling is that the courses have always taught the training techniques that are a healthy mix of SOTA, generally applicable, and easy to use.<p>Ranger + flat-cos has seemed like a really robust combo, and easy to use. So yeah, just interested in whatever internal discussions fast.ai may have had about it and other potential replacements for Adam + one-cycle.
评论 #24241167 未加载
colmvpover 4 years ago
I took fast.ai a few years ago, and then again a year or so ago. I like their lectures and their methodology of teaching which enabled me to meet a lot of interesting people in my city, but I ended up just building models using vanilla PyTorch instead of using their library as an added layer just because it felt like they were tweaking and revamping their code so often that at times it was kind of hard to connect the docs with the latest code.
评论 #24237856 未加载
burkeover 4 years ago
Bought the book and trying out the lesson 1 notebook, but man, I can&#x27;t seem to make this work. Colab can&#x27;t import fastbook with the GPU runtime, and the TPU and CPU ones are too slow. Gradient gets a little further, but fails with &quot;self.recorder already registered&quot; on the &quot;#id first_training&quot; cell. Maybe I&#x27;m too dumb to be a data scientist, but I didn&#x27;t expect to have to do this kind of debugging right off the bat.
评论 #24239315 未加载
评论 #24239324 未加载
punnerudover 4 years ago
Took this course two times, first when they used TensorFlow and afterwards based on PyTorch. Like how it is practical from early on and updated on new research. Recommend trying to build networks from scratch in combination with the course, so you don’t become to dependent on the fast.ai framework.
评论 #24237941 未加载
TinyBigover 4 years ago
This course and the accompanying libraries were very good when they were released and have only improved over the past several years. I will echo what others have said - the courses are very approachable and practical.<p>Fast.ai changed the course of my career and helped give birth to deep learning as a practice at my place of work. Thank you Jeremy!
tmabrahamover 4 years ago
People have had a lot of negative things to say about fastai v1, claiming it is not very flexible and intuitive and only good for the certain Kaggle-type problems. I would recommend them to check out fastai v2 as a serious competitor to other PyTorch-based frameworks like PyTorch Lightning, Catalyst, Ignite, etc. It&#x27;s very easy to work with default deep learning problems, but for more complex and unique problems, the mid-level&#x2F;low-level API and callbacks make it quite painless to use fastai in your workflow. Plus there&#x27;s tons of community support (forums.fast.ai + Discord), even for a package maintained by only a few people. Check it out!
naveen99over 4 years ago
Jeremy should update his JavaScript course as well. He might be one if the few people to make it look less messy than it is everywhere else. The fast.ai course is wonderful. Definitely recharged my own interest in deep learning.
评论 #24241358 未加载
评论 #24241784 未加载
pandemistover 4 years ago
Has anyone gone through a career change (to something in data science &#x2F; ML) after going through courses like fast.ai? If so, how difficult &#x2F; easy was that change?
评论 #24241175 未加载
mrg3_2013over 4 years ago
This is great! Looking forward to trying it out. I explored it while back when I was looking for a deep learning library that can take a tabular data file and build a multitask predictive model involving different datatypes (for example, some columns may be be text). Uber&#x27;s ludwig library does it. Would love to check it out.
kriroover 4 years ago
Amazing news. I pre-ordered the book a while ago and am a bit surprised (positively) it&#x27;s over 600 pages now. The German Amazon page still says 350 pages btw.<p>Worked with fast.ai for a couple of projects starting &lt;1.0 and with the first MOOC. You&#x27;re doing great work and it&#x27;s really appreciated.
评论 #24244530 未加载
Abishek_Muthianover 4 years ago
Hi Jeremy, congratulations on the new releases and thank you.<p>I see that the original <i>ML</i> course[1] link has been removed from the home page. Does it mean it&#x27;s been invalidated due to integration of ML lessons with the DL courses?<p>I was pointing those who wanted to learn ML but don&#x27;t have good access to proper Internet to the old ML course with custom scripts to make installation of requirements for those course in inexpensive SBC like Jetson Nano or similar. I was planning to make those setup public, but should I refrain from doing that because of Fast.ai v2? If so, is the cloud compute de facto first class citizen now?<p>[1]<a href="http:&#x2F;&#x2F;course18.fast.ai&#x2F;lessonsml1&#x2F;lesson1.html" rel="nofollow">http:&#x2F;&#x2F;course18.fast.ai&#x2F;lessonsml1&#x2F;lesson1.html</a>
aliljetover 4 years ago
As one of the folks that took this course, I was thoroughly engaged. I wouldn&#x27;t start masquerading as a data scientist after learning this material, but this is a highly-practical approach to deploying new engineering tools.
imranqover 4 years ago
Jeremy Howard and Andrew Ng are the two teachers who got me into ML and eventually as a career. Amazing to see so much progress! Because of FastAi I can see ML being used around the world just like Excel or python
fareeshover 4 years ago
Looks great - will probably pick up the book<p>In Lesson 1 they talk about use-cases where Deep Learning is the best known approach. Are there any popular use-cases for which it is not the best known approach?
评论 #24237931 未加载
aladineover 4 years ago
Though not related to the content of post, I found that the favicon of fast.ai is a H character, which is not related to AI. Somebody should update it.<p>FYI, letter H comes from theme Hyde in Hugo: <a href="https:&#x2F;&#x2F;themes.gohugo.io&#x2F;hyde&#x2F;?search-input=menu%3Dmai#sidebar-menu" rel="nofollow">https:&#x2F;&#x2F;themes.gohugo.io&#x2F;hyde&#x2F;?search-input=menu%3Dmai#sideb...</a>
lumberjackover 4 years ago
I am trying to get into ML in general and I am having a bit of a problem. I don&#x27;t know what is what and I lack a basic trajectory. Fortunately I have all the mathematics prereqs so I can just jump in. What I need is some sort of up-to-date overview of everything ML so that I know what topics to study in which order. Does anyone know of such a thing?
评论 #24242126 未加载
embiggenerdover 4 years ago
I got a little ways through the very first course way back when. I am planning to learn ML&#x2F;DS in my spare time, but I have a particular end goal - self driving cars&#x2F;computer vision. Does this course cover those topics?
Lucasoatoover 4 years ago
Hi Jeremy, thanks for your awesome library! I&#x27;ve followed the last online course and was pretty impressed by how effective is your top-down approach.<p>Are multi-gpu setups supported in this version of fast.ai?
评论 #24241188 未加载
spinlock_over 4 years ago
Any recommendation on how to approach the course? Is it better to read the chapter in the book before you watch the lecture(s) covering the content of the chapter or vice versa?
saurabpover 4 years ago
Is there something similar for deep reinforcement learning ?
评论 #24258726 未加载
phmagicover 4 years ago
I took the fast.ai courses and highly recommend them for anyone who really wants to learn ML.<p>Are there any plans for courses on reinforcement learning?
评论 #24241363 未加载
wasdeekrubover 4 years ago
I wondered why fast.ai still stick with unet for segmentation task.
yogodojoover 4 years ago
can anyone suggest MOOCS similar to Jeremy&#x27;s teaching style? I really like the way he teaches.
jph00over 4 years ago
@dang or someone - I wonder if you can fix the title so it&#x27;s not just &quot;Fast.ai releases new deep learning course&quot;? The article is just as much about the release of the fastai v2 software library as it as about the course.<p>The original title was &quot;fast.ai releases new deep learning course, four libraries, and 600-page book&quot;, although &quot;fast.ai releases new deep learning course and library&quot; would probably cover what most people are interested in, and is quite a bit shorter.
评论 #24238353 未加载
评论 #24238194 未加载
评论 #24239755 未加载