Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
4answers
4k views

Simple implementation of N-Gram, tf-idf and Cosine similarity in Python

I need to compare documents stored in a DB and come up with a similarity score between 0 and 1. The method I need to use has to be very simple. Implementing a vanilla version of n-grams (where it ...
7
votes
4answers
3k views

What is the replacement for DataTrigger in Silverlight

This is my scenario. I have 2 Properties. Type and State. Type is an Enum with 3 values eg, ball, car, arrow. State is an int which would accept 3 state values eg., -1, 0, 1. Also, I have 9 images ...
6
votes
1answer
585 views

Problem setting Foreground with Visual State Manager

I have a WPF application, and I am attempting to style a TextBox using the .Net v4 Visual State Manager. Specifically, I am attempting to set the colors of the Foreground and Background for the ...
4
votes
3answers
35 views

Expression Blend VSM vs Event Driven

I recently used Expression Blend and I found that it has something called Visual State Manager, what is the difference between it and the regular event driven model, and which is better?
4
votes
2answers
2k views

Visual State Manager on Custom Control

I have built a custom control that extends content control. Within this I have a parts and states model that is working fine. I then use this as the root of my xaml(placing the code in the templates ...
3
votes
1answer
1k views

VisualStateManager and generated transitions

Just when I think I understand the VisualStateManager, something proves me wrong. I'm using WPF 4 and am trying to simply enlarge an item on mouse over, and shrink it back on mouse leave. I figured ...
3
votes
1answer
9k views

ControlTemplate.Triggers WPF equivalent in Silverlight 3

I have this controltempalte + trigger stuff in my WPF application. <ControlTemplate TargetType="me:MyControl" x:Key="fade"> <ContentPresenter - other stuff /> ...
2
votes
2answers
468 views

Text Retrieval using R

I have been using R's text mining package and its really a great tool. I have not found retrieval support or maybe there are functionalities I am missing. How can a simple VSM model be implemented ...
2
votes
2answers
622 views

WPF and VSM - List of States?

I'm using VSM (Visual State Manager, from the WPF Toolkit) in WPF and I'm trying to find a list of States. Basically, I understand that there are certain "magic" states - like the MouseOver state is ...
1
vote
1answer
641 views

Cosine similarity and tf-idf

thanks for all the help you've given me before. I just got one little question which seems to confused me. TF-IDF and Cosine Similarity. I was reading up on both and then on wiki under Cosine ...
1
vote
2answers
214 views

Re-templating built in WPF controls using Visual State Manager

I am developing an application in WPF and would like to use to re-template built in controls (Button,ListBox, etc) using the VSM instead of triggers. Is there a built in way to do this? Anyone have ...
1
vote
3answers
1k views

Getting the Vector Space Model (tf-idf) from a query on a lucene index

I need to get the Vector Space Model(with tf-idf weighting) from the results of a lucene query, and cant figure out how to do it. It seems like it should be simple, and at this stage maybe one of you ...
1
vote
1answer
245 views

GoToState from within ItemTemplate

Anybody figured out how to activate a visual state within the namescope of the ItemsControl from within a DataTemplate applied to said ItemsControl's ItemTemplate? You obviously can't select the ...
1
vote
1answer
555 views

How can i take control of an element inside a template from outer template

Am facing hard time finding solution for this problem. I've a control template in which i've a content presenter and a Custom visual state manager with visual state Selected and UnSelected under ...
1
vote
2answers
1k views

How Can I Use the Visual State Manager in Blend for WPF Applications?

When creating a control style & template in Blend for a WPF application, I want to take advantage of the Visual State Manager. How do I do this? Whenever I right-click over the button and select ...
0
votes
1answer
223 views

How to make smooth transition from a WebBrowser control to an Image in Silverlight 4?

I have the following XAML on my page: <Grid x:Name="LayoutRoot"> <Viewbox Stretch="Uniform"> <Image x:Name="myImage" /> </Viewbox> ...
0
votes
1answer
92 views

UserControl VisualStates do not appear in Blend

The States pane in Blend 4 does not appear to show the VisualStates declared on a UserControl using the TemplateVisualState attribute. Is this to be expected and if so why? Creating the States ...
0
votes
2answers
1k views

Silverlight DataStateBehavior, initial value not used

I am trying to use the Silverlight DataStateBehavior, it works fine in most cases where I click a button which sets say a 'Selected' Property in the view model to either false or true. The ...
0
votes
2answers
149 views

Blend 3 - States?

I've just downloaded Expression Blend 3 from DreamSpark (for free because I'm a student :)) and read about states. I came across this and I was very impressed. And then I tried it on my own, I created ...