Forum Replies Created
-
AuthorPosts
-
Juan Rada-Vilela (admin)
KeymasterHi Caitlin,
many thanks for your purchase and post.
Your email provider (@satellitedna.org) rejected the email containing the license. It also rejected my emails from @fuzzylite.com and @gmail.com addresses.
Could you please email me a working email address of yours at jcrada@fuzzylite.com? I will forward you the email containing the license immediately.
Thanks again for your purchase.
Cheers.
February 11, 2019 at 06:49 in reply to: How to use CMaked library of fuzzylite opensource on Windows QtCreator edition? #6316Juan Rada-Vilela (admin)
KeymasterHi,
An extract of QtFuzzyLite.pro:
FL_HOME=../fuzzylite-master/fuzzylite release:{ FL_CONFIG=release FL_LIBRARY=fuzzylite-static } debug:{ FL_CONFIG=debug FL_LIBRARY=fuzzylite-static-debug } INCLUDEPATH += . $${FL_HOME} \ LIBS *= -L$${FL_HOME}/$${FL_CONFIG}/bin LIBS *= -l$${FL_LIBRARY} message("FL_HOME=$${FL_HOME}") message("FL_CONFIG=$${FL_CONFIG}") message("FL_LIBRARY=$${FL_LIBRARY}")
some further ideas here: https://github.com/fuzzylite/fuzzylite/tree/release/examples/application
my suggestion is to start simple and build on top of that.
Cheers,
Juan.
January 31, 2019 at 18:06 in reply to: how to move a fuzzy lite license from one computer to anther #6310Juan Rada-Vilela (admin)
KeymasterHi,
Thanks for posting. I have sent you a private email about it.
Cheers.
Juan Rada-Vilela (admin)
KeymasterHi,
thanks for your post and for your support.
You can export the engine’s surface as Tab-Separated Values (tsv) and open the tsv file in excel.
Please export your engine to the FuzzyLite Dataset format using QtFuzzyLite 6:
(1) from the menu bar: File/Export To/FuzzyLite Dataset (FLD)
(2) Choose the options as shown in the image below
(3) open your tsv file in excel.Let me know if you were able to do it.
Cheers,
Juan
Juan Rada-Vilela (admin)
KeymasterThanks for reporting this.
What compiler are you using? You do not need to worry about it. It might be just a new warning implemented in a new compiler version. I will take a look at this for the next version.
Cheers,
JuanJuan Rada-Vilela (admin)
KeymasterI think the problem you are having is with locales. Take notice that you export values with
,
as decimal separators. I think R is not handling this well.Please try changing the locale in java before exporting to something like
Locale.setDefault(new Locale("en", "NZ"));
, make sure the exported values use.
for decimals, and try running the script in R.You do not need to change anything from the R script.
Cheers.
Juan Rada-Vilela (admin)
Keymasteroh, never mind. just saw it in the R code.
Juan Rada-Vilela (admin)
KeymasterHi,
could you please post the FLL code of your engine?
Thanks.
Juan Rada-Vilela (admin)
KeymasterHi Andrey,
thanks for your post and for using jfuzzylite.
Could you please post the FLL code?
As for the previous question, glad you found the mistake. The FCL engine you posted, the equivalent in FLL is:
Engine: proximity InputVariable: signal enabled: true range: 30.000 120.000 lock-range: false term: strong Discrete 0.000 1.000 30.000 1.000 65.000 0.000 term: decent Discrete 25.000 0.000 60.000 1.000 90.000 0.000 term: weak Discrete 80.000 0.000 120.000 1.000 InputVariable: distance enabled: true range: 0.000 200.000 lock-range: false term: low Discrete 0.000 1.000 20.000 0.000 term: medium Discrete 15.000 0.000 30.000 1.000 70.000 0.000 term: high Discrete 60.000 0.000 200.000 1.000 OutputVariable: proximity enabled: true range: 0.000 100.000 lock-range: false aggregation: Maximum defuzzifier: Centroid 100 default: 0.000 lock-previous: false term: immediate Discrete 0.000 1.000 30.000 0.000 term: near Discrete 20.000 0.000 40.000 1.000 80.000 0.000 term: far Discrete 70.000 0.000 100.000 1.000 RuleBlock: first enabled: true conjunction: Minimum disjunction: none implication: Minimum activation: General rule: if signal is strong and distance is low then proximity is immediate rule: if signal is strong and distance is medium then proximity is immediate rule: if signal is strong and distance is high then proximity is immediate rule: if signal is decent and distance is low then proximity is immediate rule: if signal is decent and distance is medium then proximity is near rule: if signal is decent and distance is high then proximity is near rule: if signal is weak and distance is low then proximity is immediate rule: if signal is weak and distance is medium then proximity is near rule: if signal is weak and distance is high then proximity is far
Juan Rada-Vilela (admin)
KeymasterHi,
what is your FIS file like?
Thanks.
-
AuthorPosts