I have been using KnockoutJS and Backbone in my applications and would like to comment on some of the points made by others.
First and foremost, Backbone and KnockoutJS are designed with different goals in mind. So although as @thinkdevcode pointed out, the discussions can be reduced to a MVC vs MVVM comparision but from the perspective of a pragmatic programmer, choosing backbone over Knockout is NOT just a matter of choosing MVVM over MVC. There is more to it.
Although Backbone and KnockoutJS both aim to bring systematic structure to the Application, the facilities provided by them DO NOT coincide. In fact, they overlap only very sightly. KnockoutJS principally focusses on automated UI bindings and does that excellently .
As @strongriley pointed out, creating data bindings in backbone requires more verbose code as the binding logic has to be written by the developer. Backbone does nothing towards automated UI synchronization and does that purposefully because it is one of the goals of the framework to stay out the actual user interface. As backbone's website says itself backbone's views are more convention than code.
I disagree with @strongriley on the point that doing something slightly abnormal the developer has to go to great lengths in case of KnockoutJS. KnockoutJS does an elegant job at data binding. Not only can the actual value stored in text nodes be mapped to JavaScript objects, practically any attribute and even individual styles can be mapped to JavaScript data structures. Combine with that the fact that mapping can be directed to dynamic objects which actually derive their data from other data structures and the excellent integration of KnockoutJS with jQuery templating system, EVERY single type of UI binding can be made in knockoutJS with lesser number of lines than backbone provided you craft your viewmodels and templates creatively.
Moreover, if you need the utmost flexibility, you can bind your own functions to view model observables which would be executed whenever that observable changes. So you have the same level of flexibility as available in Backbone.js only much more additional power. If data binding is your primary concern, KnockoutJS is definitely THE way to go.
Where Backbone excels, is integration with RESTful services. KnockoutJS models are simple JavaScript objects and any code required for updating the model is to be written by developer. On the other hands Backbone provides a Model Object which has nice functions built in to facilitate seamless integration with RESTful api.
Another key area where backbone excels, is the client side routing solution. KnockoutJS does absolutely nothing to provide client side routing, it is simply not in their feature list. But that is hardly a deterant because using a standalone routing system like Crossroads.js (http://millermedeiros.github.com/crossroads.js/) equally powerful functionality can be fabricated with minimal extra effort.
Also, the argument that KnockoutJS ties logic to the HTML markup is simply incorrect. It is the demonstrated and most simple approach. But nevertheless if you prefer to keep your logic totally separated from the markup, you can always create the data-bind attributes from JavaScript. This gist demonstrates this very clearly : https://gist.github.com/1006808
Finally, @Vin using both is definitely a BAD idea. Reason, their aesthetics are incompatible and the two approaches towards MVC are different. For instance : Backbone Models are not compatible with KO models and KO expects models to be simple objects and will not use getters and setters provided by Backbone.
I would strongly recommend you to choose one and use standalone utilities to fill in the gaps for the functionality provided by other eg. there are jQuery plugins available for data binding (although none I found were equally powerful as KO).
Having two separate MVC implementations on the separate page leads to very confusing code.
So my recommendation would be that if you want to get started quick and fast on a new project, go with KnockoutJS. It is simple and flexible and requires only a few minutes to get started.
To explore the full power of Backbone.js an exploration worth a few hours is necessary. I am not from WPF background, people from WPF/Silverlight background might find less learning curve.