Bug Stomp
Upgrades and changes sometimes have unpredictable results, so post your bugs and glitches in here and I'll get out my trusty wrench and get to fixin'!
Posts 7,617 - 7,628 of 8,681
Posts 7,617 - 7,628 of 8,681
Ronnie075
15 years ago
15 years ago
The word I am trying to match is quite rude slang word, so I won’t post it. But it is made of simple consonants and vowels without any special characters.
Thank you for helping me. I really appreciate. Now I understand regex to some extent. For example the phrase you gave: ([b]+)([lue]+)([ -]+) (re) should match a badly misspelled word “blue” i.e. “bbbblluuuueee” with any number of hyphens after it.
When I say “unlucky with regex” I mean copying a pasting from BJ home page this key phrase, known as Leeds filter. And still getting xnonsense, even if I ramp the ranking to 100.
([bcdfghjklmnpqrstvwxz1234567890]+) (re) [-1,0] <?PF raw; ?>
It should match any combination of consonants and numbers… but obviously not with my bot.
Thank you for helping me. I really appreciate. Now I understand regex to some extent. For example the phrase you gave: ([b]+)([lue]+)([ -]+) (re) should match a badly misspelled word “blue” i.e. “bbbblluuuueee” with any number of hyphens after it.
When I say “unlucky with regex” I mean copying a pasting from BJ home page this key phrase, known as Leeds filter. And still getting xnonsense, even if I ramp the ranking to 100.
([bcdfghjklmnpqrstvwxz1234567890]+) (re) [-1,0] <?PF raw; ?>
It should match any combination of consonants and numbers… but obviously not with my bot.
Ronnie075
15 years ago
15 years ago
Your ([b]+)([lue]+)([ -]+) (re) regex works! (If I remove the (color) plugin first).
I contracted my own regex from your example and it worked too
([b]+)([iter]+)([ -]+) (re) [10,0] <?PF raw; ?>
Bitter-sweet is my favourite
It matched the hyphen. I have a control “bitter” keyphrase with no hyphen, and the AI engine had differentiated between them.
But If I try any – bbbluuueeee, or bbbittterrrr - they do not work. That despite my ([b]+)([iter]+)([ -]+) deliberately missing one “t”, and still matching “bitter- with a double “t”.
I cannot fathom why “Leeds filter” does not work in my bot… and why I cannot match “bitterr-“
But I am very happy that I managed to match a hyphen at last. Many thanks. I would not have done this without your help.
I contracted my own regex from your example and it worked too
([b]+)([iter]+)([ -]+) (re) [10,0] <?PF raw; ?>
Bitter-sweet is my favourite
It matched the hyphen. I have a control “bitter” keyphrase with no hyphen, and the AI engine had differentiated between them.
But If I try any – bbbluuueeee, or bbbittterrrr - they do not work. That despite my ([b]+)([iter]+)([ -]+) deliberately missing one “t”, and still matching “bitter- with a double “t”.
I cannot fathom why “Leeds filter” does not work in my bot… and why I cannot match “bitterr-“
But I am very happy that I managed to match a hyphen at last. Many thanks. I would not have done this without your help.
prob123
15 years ago
15 years ago
You could try ([b]+)([i]+)([t]+)([e]+)([r]+) for each letter
or
I don't know if this will work, but I have used a similar tactic before. The word scrambler translates bbbitterrr into
SCRAMBLER:
Word: 'bbbittterrrr' to 'beirt'
Other possibilities: biter,bter,bitr
Try a keyphrase for beirt, biter and see if the AI engine will pick it up.
or
I don't know if this will work, but I have used a similar tactic before. The word scrambler translates bbbitterrr into
SCRAMBLER:
Word: 'bbbittterrrr' to 'beirt'
Other possibilities: biter,bter,bitr
Try a keyphrase for beirt, biter and see if the AI engine will pick it up.
Admiral Zeratul
15 years ago
15 years ago
T5-72B: (to Bildgesmythe) Who told you that?
It would appear this bot of mine is still suffering from bleed-over trouble. Though, this time from my other, newer bot -- I remember typing that exact phrase into its language center!
It would appear this bot of mine is still suffering from bleed-over trouble. Though, this time from my other, newer bot -- I remember typing that exact phrase into its language center!
Ty Paige
15 years ago
15 years ago
Not from here. but being stuck only seeing that female robot would disturb me as well.
prob123
15 years ago
15 years ago
I am having a problem with a question from the contest.
You: If you could be any animal, what would you be?
Bot: What do you get when you cross an elephant and a rhino? EL-EF-I-NO. I could make a wild guess, but that would be silly.
The use of any makes the sentence go to xnone
You: If you could be an animal, what would you choose
Bot: I am happy being me!
Using 'a or an' the keyphrase works. even though I have it as a regex with (a|an|any) animal
You: If you could be any animal, what would you be?
Bot: What do you get when you cross an elephant and a rhino? EL-EF-I-NO. I could make a wild guess, but that would be silly.
The use of any makes the sentence go to xnone
You: If you could be an animal, what would you choose
Bot: I am happy being me!
Using 'a or an' the keyphrase works. even though I have it as a regex with (a|an|any) animal
Ty Paige
15 years ago
15 years ago
Girl, do what you will, but I would use a memory function.
Not yet, but I spite dumb conversational questions like that,, as I would if someone asked me that in person.
Not yet, but I spite dumb conversational questions like that,, as I would if someone asked me that in person.
ipe 369
15 years ago
15 years ago
erm, hi, im quite new, and I need some help with a bug i discovered. I follow the instructions carefully and add my keyphrase. It tracks "my favourite food is" witgh no ai code. It's supposed to reply, "I like that too", but instead It uses one of the xnone statement things. Can you help?
prob123
15 years ago
15 years ago
Try
My favorite food, US spelling
Rank it around 20
My favorite food is 20 0 rem "postkey" as only "favfood" If you want your bot to remember the food..Use it by having a keyphrase
What is my favorite food.
(mem-favfood)
My favorite food, US spelling
Rank it around 20
My favorite food is 20 0 rem "postkey" as only "favfood" If you want your bot to remember the food..Use it by having a keyphrase
What is my favorite food.
(mem-favfood)
Ronnie075
15 years ago
15 years ago
Is it possible to prove a negative? matches
Is it possible to prove [20,0] and refuses to match
Is it possible to prove a negative [50,0]
No idea how to fix it.
"negative" is an extended seek for "no" in AI engine...
Is it possible to prove [20,0] and refuses to match
Is it possible to prove a negative [50,0]
No idea how to fix it.
"negative" is an extended seek for "no" in AI engine...
» More new posts: Doghead's Cosmic Bar