Questions tagged [fuzzy]

DO NOT USE - ambiguous: see fuzzy-search, fuzzy-logic, or image-processing for more appropriate tags.

Do not use this tag. It is ambiguous: see , , or for more appropriate tags.

363 questions
2
votes
0 answers

Visualising Cluster Shape for Clusters Generated by Fuzzy C Means Clustering

I am trying to plot a visualization for the clusters obtained from Fuzzy C-Means clustering algorithm. I want to plot the contours along with the data points as shown in the following figure using Python. How do I proceed with this?
user2150703
  • 193
  • 3
  • 7
2
votes
0 answers

Fuzzy join on multiple columns with Spark

I have two Spark RDDs without common key that I need to join. The first RDD is from cassandra table a contains reference set of items (id, item_name, item_type, item_size) for example: (1, 'item 1', 'type_a', 20). The second RDD is imported each…
Mike P.
  • 251
  • 2
  • 10
2
votes
1 answer

How do to fuzzy matching on excel file using Pandas?

I have a table called account with two columns - ID & NAME. ID is a hash which is unique but NAME is a string which might have duplicates. I'm trying to write a python script to read this excel file and match 0-3 similar NAME values, but I just…
g0d
  • 57
  • 1
  • 7
2
votes
0 answers

Fuzzy rules with more than two input variables in python

I am trying to build a fuzzy inference system in python. I have 4 variables depending on which output class is decided. def fuzzInferenceself(): ### Input ### hf_very_poor = fuzz.trimf(hotel_facility, [0, 0.15, 0.3]) hf_poor =…
maggs
  • 763
  • 2
  • 9
  • 15
2
votes
0 answers

Multiple fuzzy matches with String::Approx

I want to use perl to find fuzzy matches in a file of sequences and return the character number in the string at which the match is found with a given number of substitutions (lets say S=2). For example if my input file…
Matthew Snyder
  • 383
  • 2
  • 11
2
votes
1 answer

Nested loop fuzzy logic validation

Using the fuzzy toolbox in Matlab, i try to calculate the error on the validation set. First cross validation is used to split the initial training data in a training and test (validation) set. However in this validation phase I would like to obtain…
Ivo Kuiper
  • 31
  • 2
2
votes
1 answer

Simplifying a four-dimensional rule table in Matlab: addressing rows and columns of each dimension

I'm currently trying to automatically generate a set of fuzzy rules for a set of observations which contain four values for each observation, where each observation will correspond to a state (a good example is with Fisher's Iris Data). In Matlab I…
Cate
  • 21
  • 2
2
votes
1 answer

Fuzzy match column to column

I'm trying to find a way to match a column of clean data in table 1 to a column of dirty data in table2 without making any changes to the dirty data. I was thinking a fuzzy match, but there are too many entries in the clean table to allow for CDEs…
user3629815
  • 37
  • 1
  • 6
2
votes
3 answers

Datasets for benchmarking Fuzzy Clustering method with millions of data

We want to test the performance of some fuzzy clustering algorithms that some collaborators have developed. Our interest lies in 2D datasets with a lot of data, where we could benchmark these algorithms. Do you know where can one find such datasets?
Open the way
  • 26,225
  • 51
  • 142
  • 196
2
votes
0 answers

FuzzyJess doesn't aggregate (fuzzy union) rule consequents

I am doing a sample project with FuzzyJess. To start, I must be able to drive a robot avoiding obstacles. I have a bunch of rules like these: (defrule avoid-obstacle-left (ProximitySensors (left ?left & :(fuzzy-match ?left "near")) …
Totem
  • 454
  • 5
  • 18
2
votes
2 answers

how to create hyperbox for fuzzy set? and how to calculate hyperbox membership degree?

I want to know that while creating hyperbox (Fuzzy min max Neural network) all the parameters of input dataset (WBC or PID ) should be used or work can be done with single parameter also And want to know weather the size of hyperbox depend on input…
Ashish
  • 1,943
  • 2
  • 14
  • 17
2
votes
2 answers

Fuzzy grouping in Postgres

I have a table with contents that look similar to this: id | title ------------ 1 | 5. foo 2 | 5.foo 3 | 5. foo* 4 | bar 5 | bar* 6 | baz 6 | BAZ …and so on. I would like to group by the titles and ignore the extra bits. I know Postgres can…
slikts
  • 8,020
  • 1
  • 27
  • 47
2
votes
1 answer

Best option to fuzz a C Network Program

I have a client/server simple program in C. I want to test the server running on different machine with random inputs. I have looked at 'Bunny-the-fuzzer' but from what I can understand It wont be much help when the target program/application is on…
user2061944
  • 319
  • 1
  • 3
  • 11
2
votes
2 answers

How can I Save the data in a file or a matrice that are displayed by this "opts = statset('Display','iter');" in Matlab?

I'm developing a piece of k-means fuzzy code. Now I want to save the data of each iteration that is displayed by statset('Display','iter');. Help me please. X = [randn(20,2)+ones(20,2); randn(20,2)-ones(20,2)]; opts =…
1
vote
1 answer

Sql Server Full Text: Human names which sound alike

I have a database with lots of customers in it. A user of the system wants to be able to look up a customer's account by name, amongst other things. What I have done is create a new table called CustomerFullText, which just has a CustomerId and an…
Ben Curthoys
  • 741
  • 7
  • 20