Download a specific github project branch

To shorten the story, to run a convolutional neural network model, I need a special version nolearnthat has a URL of the form https://github.com/dnouri/nolearn/tree/1659e4811e498dc1f442d8e6486d0831f85255b4/nolearn . However, there are no buttons on the page Download as Zip, and I cannot load them using

git clone https://github.com/dnouri/nolearn -branch 1659e4811e498dc1f442d8e6486d0831f85255b4/nolearn

Simply

git clone https://github.com/dnouri/nolearn/tree/1659e4811e498dc1f442d8e6486d0831f85255b4/nolearn

doesn't work either.

Even, I have no idea what to look for on Google!

Note. This is the latest version providing class support Objective, that is, the team is from lasagne.objectives import Objectiveno longer supported!

+4
source share
3 answers

Subversion (SVN), git ( ), . , https://github.com/dnouri/nolearn/tree/1659e4811e498dc1f442d8e6486d0831f85255b4/nolearn , , . 1659e4811e498dc1f442d8e6486d0831f85255b4 - , , . dnouri/nolearn - GitHub ( nolearn dnouri), nolearn URL- - 1659e4811e498dc1f442d8e6486d0831f85255b4.

"" git:

  • git clone https://github.com/dnouri/nolearn.git
    

    ( URL- https://github.com/dnouri/nolearn "clone URL".)

  • cd nolearn
    
  • git checkout 1659e4811e498dc1f442d8e6486d0831f85255b4
    
  • cd nolearn
    
+6

:

git?

:

git clone <url> --branch <branch> --single-branch [<folder>]

:

Git Clone

- [no-]

, , --branch, HEAD . --depth, , -no-single-branch . . HEAD - , .

+14

All Articles