It is currently Tue Apr 16, 2024 11:03 am

All times are UTC - 8 hours [ DST ]




Post new topic Reply to topic  [ 32 posts ]  Go to page 1, 2  Next
Author Message
Offline
 Post subject: Personal library of mistakes
Post #1 Posted: Thu Feb 27, 2020 2:02 am 
Dies in gote

Posts: 61
Liked others: 12
Was liked: 18
Universal go server handle: Jæja
Hi everyone,

I would love to use a software application that allows me to store and study mistakes I made in my (online) games, for example using spaced repetition. Ideally it would work like this:

Analyzer module
- I select a folder holding my SGF files and the application will monitor it to check for new files.
- The application will invoke an AI to analyze the games and find mistakes. I can set what a mistake is using e.g. an X percent drop in winning rate.
- The application will turn each mistake into a kind of flash card. It knows who I was in the game because I entered a list of my online handles. Optionally I could turn my opponent's mistakes into flashcards as well.

Study module
- The main idea of spaced repetition is that "...newly introduced and more difficult flashcards are shown more frequently while older and less difficult flashcards are shown less frequently and to increase rate of learning" (Wikipedia).
- The application keeps track of these statistics: card last answered correctly/incorrectly Y cards ago and use it to determine which card to show next.
- Perhaps it could allow for tagging flash cards as well, using a list of common mistakes like this one (e.g. overplay, slow, etc.) I could then study a certain mistake I've made in the past.

Does something like this exist? If not, what do you think of this idea?


This post by Jæja was liked by: xela
Top
 Profile  
 
Offline
 Post subject: Re: Personal library of mistakes
Post #2 Posted: Thu Feb 27, 2020 12:31 pm 
Tengen

Posts: 4380
Location: North Carolina
Liked others: 499
Was liked: 733
Rank: AGA 3k
GD Posts: 65
OGS: Hyperpape 4k
It's a cool idea, but I've not heard of anything like that.

One question is whether you want a manual review. Do you think you'll gain from studying mistakes where you know the machine's verdict, but don't know the reason? Or is pruning them better?

_________________
Occupy Babel!


This post by hyperpape was liked by: Jæja
Top
 Profile  
 
Offline
 Post subject: Re: Personal library of mistakes
Post #3 Posted: Thu Feb 27, 2020 1:52 pm 
Gosei
User avatar

Posts: 1754
Liked others: 177
Was liked: 492
The point of flashcards is to forget your bad habits and replace them by good moves, so it would be better to categorize the correct moves (connect, make good shape, find a big point, find an invasion point...) instead of categorizing the wrong move.

Top
 Profile  
 
Offline
 Post subject: Re: Personal library of mistakes
Post #4 Posted: Thu Feb 27, 2020 3:48 pm 
Lives with ko
User avatar

Posts: 205
Liked others: 49
Was liked: 36
Rank: EGF 2k
KGS: MKyle
I tried to do something very similar to this a few years ago with Leela 11.

I am absolutely not a programmer, I just enjoy hacking around with personal projects. I use the flashcard app anki on my phone and on the web-app for learning other stuff so my project just involved making nice go flashcards for that.

I found a nice python package someone wrote for making nice images from sgf files (can't find it now but I could fish around if it would really be useful.) I wrote one basic script that took a file and a move number as input and output two images. The "front" image for the flashcard was the position to play with the words "[black/white] to play", the back image was the same position marked with all the moves that Leela considered within 1% or so of its top choice (you could also go with just one move, but I preferred to learn the choice of strong moves.) the script also edited a text file for importing the cards into anki.
I then made a second script that scanned through a game for falls in win rate over a threshold.

I didn't last very long with these flashcards personally but playing with the code was fun for me.
My problem with the flashcards for me was that most of the mistakes were in quite specific fighting situations. Once I'd read the fight out properly with hindsight it looked obvious to me and spaced repetition didn't really feel like it was necessary to learn those specific lessons. The challenge in go is often around abstraction of learning - taking these specific learning points and linking them up with novel positions. I don't think there was a learning advantage over just playing more games and reviewing the new novel positions.

I do think it's a very cool idea though. Maybe I just needed a gentle tweak to the system to help me get more from it?


This post by MikeKyle was liked by: Jæja
Top
 Profile  
 
Offline
 Post subject: Re: Personal library of mistakes
Post #5 Posted: Thu Feb 27, 2020 9:08 pm 
Tengen

Posts: 4380
Location: North Carolina
Liked others: 499
Was liked: 733
Rank: AGA 3k
GD Posts: 65
OGS: Hyperpape 4k
jlt wrote:
The point of flashcards is to forget your bad habits and replace them by good moves, so it would be better to categorize the correct moves (connect, make good shape, find a big point, find an invasion point...) instead of categorizing the wrong move.
I assumed it would be "X to play" in a circumstance where you'd previously made a mistake. The answer would be the right move.

_________________
Occupy Babel!

Top
 Profile  
 
Offline
 Post subject: Re: Personal library of mistakes
Post #6 Posted: Fri Feb 28, 2020 7:22 am 
Dies in gote

Posts: 61
Liked others: 12
Was liked: 18
Universal go server handle: Jæja
Thanks for all your reactions. I'm getting the feeling this might be worth working on!

hyperpape wrote:
jlt wrote:
The point of flashcards is to forget your bad habits and replace them by good moves, so it would be better to categorize the correct moves (connect, make good shape, find a big point, find an invasion point...) instead of categorizing the wrong move.
I assumed it would be "X to play" in a circumstance where you'd previously made a mistake. The answer would be the right move.
Correct! I think my remark about tagging might have confused things. The main idea is to learn better moves and the categories could be fun to study specific topics.

hyperpape wrote:
One question is whether you want a manual review. Do you think you'll gain from studying mistakes where you know the machine's verdict, but don't know the reason? Or is pruning them better?

This definitely a good point! The AI review is just to make it generic and usable for anyone, even if you don't have somebody to review your mistake. You could perhaps use the AI to find possible mistakes and mark them as such if you like.

MikeKyle wrote:
I found a nice python package someone wrote for making nice images from sgf files (can't find it now but I could fish around if it would really be useful.) I wrote one basic script that took a file and a move number as input and output two images. ... I then made a second script that scanned through a game for falls in win rate over a threshold.
This sounds very interesting to me. I like how this could be a pragmatic, simple solution to test ideas. I might want to play with this around myself. Do you have any code you could share? If not, I'm already happy with the idea you shared, so thank you :tmbup:

MikeKyle wrote:
I didn't last very long with these flashcards personally but playing with the code was fun for me. My problem with the flashcards for me was that most of the mistakes were in quite specific fighting situations. Once I'd read the fight out properly with hindsight it looked obvious to me and spaced repetition didn't really feel like it was necessary to learn those specific lessons. ... I do think it's a very cool idea though. Maybe I just needed a gentle tweak to the system to help me get more from it?
I can understand you feelings about the outcome. However, I also agree that it might be more effective if it's tweaked a little bit more.

Marcel Grünauer wrote:
The software is not open-sourced yet because it is undocumented; the tags, markup and workflow really need some documentation.
A large part of the open source community actually helps with documentation. Developers often don't find it interesting to do this, so other people take this out of their hands. Can we help you with this? I like what you did with this software, but the level of your problems is too high for me. However, if we can use your software as a basis, then we could make it easier for other to build problem collections. What do you think?

Top
 Profile  
 
Offline
 Post subject: Re: Personal library of mistakes
Post #7 Posted: Fri Feb 28, 2020 10:15 am 
Honinbo

Posts: 10905
Liked others: 3651
Was liked: 3374
Jæja wrote:
However, I also agree that it might be more effective if it's tweaked a little bit more.


For flashcards, to prevent erroneous recognition, I always recommend adding a card with a small change, such as moving the position of one stone, that changes the answer. That will help you to pay attention to significant things on the card, and the exercise of producing those extra cards may help you to understand the positions better. :)

_________________
The Adkins Principle:
At some point, doesn't thinking have to go on?
— Winona Adkins

Visualize whirled peas.

Everything with love. Stay safe.


This post by Bill Spight was liked by: Jæja
Top
 Profile  
 
Offline
 Post subject: Re: Personal library of mistakes
Post #8 Posted: Fri Feb 28, 2020 10:27 am 
Dies in gote

Posts: 61
Liked others: 12
Was liked: 18
Universal go server handle: Jæja
Bill Spight wrote:
For flashcards, to prevent erroneous recognition, I always recommend adding a card with a small change, such as moving the position of one stone, that changes the answer. That will help you to pay attention to significant things on the card, and the exercise of producing those extra cards may help you to understand the positions better. :)
Nice! Great idea :D

Already there have been a number of great ideas by several of you. Please let me know if you have more suggestions and if you'd like to collaborate on making this project a reality. I don't have enough time by myself, but I'm sure it's doable if a few of us work on it.

Top
 Profile  
 
Offline
 Post subject: Re: Personal library of mistakes
Post #9 Posted: Tue Mar 03, 2020 4:41 pm 
Lives with ko

Posts: 128
Liked others: 148
Was liked: 29
Rank: British 3 kyu
KGS: thirdfogie
A few years ago, my grade in BGA tournaments fell from 3kyu to 4kyu. Wishing
to avoid a further fall, I too decided to make a record of my most ridiculous
mistakes. I put them into a PDF document which can be loaded on to a tablet
computer for review before playing.

Jokey titles were used to ease recall. The first page of the contents list is
hidden below. It was made by converting the relevant PDF page into a .png file.
It is hoped that the result does not overburden the Lifein19x19 server.

Attachment:
00-contents.png
00-contents.png [ 252.46 KiB | Viewed 14501 times ]


In the contents list, "Call that a kikashi" is an allusion to "Call that a
knife" in Crocodile Dundee, and "Don't panic!" is an allusion to Corporal
Jones. (See https://www.youtube.com/watch?v=nR0lOtdvqyg for
a surfeit of examples.)

Here is a sample page preserving three stupid mistakes.

Attachment:
00-calamities.png
00-calamities.png [ 247.66 KiB | Viewed 14501 times ]


There would have been more samples at this point, but only 3 attachments are
allowed per post. A follow-up post will contain some more examples, if I'm
not banned for abuse first.

Did the catalogue work as intended? It did not prevent the feared drop to
5kyu, but it probably slowed the rate of decline.

Successes

I have stopped making some of the more stupid mistakes such as reading out that
a move is bad and playing it anyway. I have also learnt to "rein in the
killing frenzy and survey the board", though I am still terrible at identifying
the most important weakness to protect in such cases. Premature nakade appears
much less often and I now know my way around the tripod group.

Another benefit of the catalogue was that its construction left an organised
collection of challenging Go positions, and it was illuminating to work through
them with Leela Zero.

Failures

Learning the status of the notchers and corner groups recorded in the catalogue
never seems to help during play. More equanimity is needed. (Maybe flash
cards would indeed be better for training than my attempts at literature.)

There has been no progress with "Don't panic" and "Beware of a Glass Dagger",
The latter refers to loosely captured enemy stones, which catch me out again and
again.

Another problem is that new hideous mistakes have begun to appear. These are
largely caused by poor concentration. I will be 71 this week, so that is no
surprise. Here are two examples which have yet to make their way into the
catalogue.

1. Deciding to play on a certain point, then finding that the stone landed on
a nearby point - the real-board equivalent of a mis-click. That has
happened twice.

2. Embarking on a squeeze which should win the game, and then forgetting
what I was trying to do and switching to saving the stones which should have
been sacrificed.

Details About the Writing

I now can imagine myself as a Go author. That means finding answers to lots of
detailed puzzles, which are hidden below.
I like to put foreign words and phrases in italics, but some Japanese terms are
so familiar to an English Go player that they no longer feel foreign. Examples
are "ko", "atari", "joseki", "hane" and the name of the game itself. To avoid
agonising over the boundary between foreign and naturalised words, the decision
was to italicise every Japanese term except "Go". But then "self-atari" looks
odd with one half italicised and the other half not.

Should it be "aji keshi", ajikeshi" or "aji-keshi"? The last one looks right
to me. Whatever choice is made, it needs to be implemented throughout.

I write "black" for the stones or groups, but "Black" for the player with the
black stones. But there are borderline cases such as "the last Black play"
where it is not immediately clear what the referent is. All the games were
face to face, so the gender of the players is known, and there is no problem
with "he" and "she".

The catalogue uses a fairly large font size to help my aged eyes. Even so,
when a numbered stone is embedded in the text, the stone is rendered too large
for the vertical spacing, which looks ugly. I decided to live with that.

Text appearing to the right of small diagrams should be vertically aligned with
the centre of that diagram. The right-hand edge of that text should be aligned
within and between diagrams. It took some time to work out how to do this so
that the alignments persist when the text grows or shrinks. I still need to
rework the whole thing according to the best methods.


Finally, here is a grumble about the lack of a universal coordinate system for
points on a Go board. This appears in the catalogue as part of a section
reminding me how to amend and process the catalogue itself.

Attachment:
00-coordinates.png
00-coordinates.png [ 377.52 KiB | Viewed 14501 times ]


Note: edited immediately after posting to really hide the first attachment.


This post by thirdfogie was liked by: dfan
Top
 Profile  
 
Offline
 Post subject: Re: Personal library of mistakes
Post #10 Posted: Tue Mar 03, 2020 5:01 pm 
Lives with ko

Posts: 128
Liked others: 148
Was liked: 29
Rank: British 3 kyu
KGS: thirdfogie
Here are two more sample pages from my catalogue of calamities.
I made them a bit smaller this time.

The first page shows a case where a glass dagger in the heart proved fatal
later in the game. It also shows a truly stupid response to a cross-cut.

Attachment:
00-glass.png
00-glass.png [ 362.67 KiB | Viewed 14518 times ]


The second page shows a failure to push White down to the third line, which I would
have done immediately if I had recognised the situation properly.

Attachment:
00-push.png
00-push.png [ 342.27 KiB | Viewed 14518 times ]


Whole-board situations like these might not be well served by flash cards, but I have
not tried that approach.

Top
 Profile  
 
Offline
 Post subject: Re: Personal library of mistakes
Post #11 Posted: Wed Mar 04, 2020 1:05 am 
Dies in gote

Posts: 61
Liked others: 12
Was liked: 18
Universal go server handle: Jæja
That looks truly amazing thirdfogie :clap: I really like the clear writing, jokey titles and consistent, clear layout. It really like this idea!

I'd like to start working on something similar for my own mistakes. Could you tell us something about your method of working? I'm interested in how much effort it is to go from an actual game to an example in your book. Do you record an SGF on something like a tablet and then convert it to a printable diagram? It looks like you might be using LaTeX with the igo package. Is that correct? I've exported a diagram to EPS using GOWrite2, which was easy and produces nicely looking diagrams.

Top
 Profile  
 
Offline
 Post subject: Re: Personal library of mistakes
Post #12 Posted: Wed Mar 04, 2020 5:26 am 
Dies with sente

Posts: 83
Liked others: 6
Was liked: 65
Rank: now 1kyu-ish
ThirdFogie - Celebrating your 71st birthday is no excuse - Iwamoto Kaoru 9p defeated Takemiya 9p by resignation in the Oza preliminaries in Feb 1977 - two days short of his 75th birthday. Takemiya was 26 years old. I find that quite amazing. Please note that I celebrated my 72nd birthday last week.....

Jaeja - I think there is a limit to what you can do with AI analysis - maybe it is related to your ranking.

Once you get into the amateur dan ranks AI becomes more useful - I had a game of mine analysed some 50 years ago, when I was 1d - the feedback from Haruyama 9p was that I was not aggressive enough - there were several times when I was failed to play kikashi. Once you know that, you can use AI to spot such things. What I don't think you can do (yet) is to use AI to build such generic advice.

ThirdFogie has put togther useful material for a 3-4 kyu player, I don't think you can use AI to build this generic material for a SDK or DDK Player, but you could write some code to run on top of AI to look for certain basic mistakes - eg playing atari unnecessarily, not playing kikashi, playing too close to strength, leaving weak groups about, making vacant triangles etc etc

You could then run an AI analysis of a game, look at the big % swings and then see if any of these are due to these basic mistakes.

I have to say that after a gap of some 30 years in playing at go clubs, I found that SDK players were making the same mistakes that were being made in the 1970s..... The hardest thing is taking these mistakes seriously enough. If I had been paid £5 every time someone made a vacant triangle or played an unnecessary atari at the Winchester Club, I would have been quite well off!

Best Wishes - John Tilley

Top
 Profile  
 
Offline
 Post subject: Re: Personal library of mistakes
Post #13 Posted: Wed Mar 04, 2020 8:05 am 
Dies in gote

Posts: 61
Liked others: 12
Was liked: 18
Universal go server handle: Jæja
John Tilley wrote:
ThirdFogie has put togther useful material for a 3-4 kyu player, I don't think you can use AI to build this generic material for a SDK or DDK Player, but you could write some code to run on top of AI to look for certain basic mistakes - eg playing atari unnecessarily, not playing kikashi, playing too close to strength, leaving weak groups about, making vacant triangles etc etc

You could then run an AI analysis of a game, look at the big % swings and then see if any of these are due to these basic mistakes.
Thanks for your reply, John.

If we can automatically categorize a mistake, the entire process can in theory be automated.

1. Identify the swings
2. Label the mistake as empty triangle, missed kikashi, etc.

We can use a bot for the first point, but no system exists for the second. Humans could manually annotate the mistakes, but it's probably hard to find volunteers. However, if many examples would be gathered, we could even automate this step with machine learning! I'm pretty sure we'll have something like this in the near future :tmbup:

Technical (you can skip this :lol:): Perhaps the representations produced by the value and policy networks can be concatenated to produce a feature vector on which we can build a model to classify the mistakes?

Top
 Profile  
 
Offline
 Post subject: Re: Personal library of mistakes
Post #14 Posted: Thu Mar 05, 2020 2:00 am 
Lives in gote

Posts: 586
Location: Adelaide, South Australia
Liked others: 208
Was liked: 265
Rank: Australian 2 dan
GD Posts: 200
thirdfogie wrote:
A few years ago, my grade in BGA tournaments fell from 3kyu to 4kyu. Wishing
to avoid a further fall, I too decided to make a record of my most ridiculous
mistakes. I put them into a PDF document which can be loaded on to a tablet
computer for review before playing.

I'm really enjoying the titles and the overall style of the presentation! Where can I buy a copy of your book?

Top
 Profile  
 
Offline
 Post subject: Re: Personal library of mistakes
Post #15 Posted: Thu Mar 05, 2020 2:01 am 
Dies in gote

Posts: 61
Liked others: 12
Was liked: 18
Universal go server handle: Jæja
xela wrote:
Where can I buy a copy of your book?
I'm in too!

Top
 Profile  
 
Offline
 Post subject: Re: Personal library of mistakes
Post #16 Posted: Thu Mar 05, 2020 2:17 am 
Lives in gote

Posts: 586
Location: Adelaide, South Australia
Liked others: 208
Was liked: 265
Rank: Australian 2 dan
GD Posts: 200
Jæja wrote:
Perhaps the representations produced by the value and policy networks can be concatenated to produce a feature vector on which we can build a model to classify the mistakes?

I've already had a go at classifying mistakes in a very crude way. I think this can be greatly improved if someone has time to invest in it. Certainly the policy network values are very useful. Other ingredients would be to compare policy values from weaker and stronger nets (go to https://neuralnetgoproblems.com and click "about"...) and a shape recognition engine similar to Sabaki's auto-generated move names.

Then we just need a large and non-copyrighted collection of labelled examples to train the model on.

Top
 Profile  
 
Offline
 Post subject: Re: Personal library of mistakes
Post #17 Posted: Thu Mar 05, 2020 2:54 pm 
Lives with ko

Posts: 128
Liked others: 148
Was liked: 29
Rank: British 3 kyu
KGS: thirdfogie
Jaeja: thanks for your kind words about the Key to All Mythologies^W^W^W^W Catalogue of Calamities. Apologies for the late reply: a birthday and a kitchen fire took priority.

Diagram production for the catalogue is largely automated, but you probably don't want to copy my methods. Here are the reasons.

1. I use Debian Linux: you probably do not.
2. If I was starting over, I would do it differently.
3. It all took much longer than expected: I started the catalogue in June 2017,
and it is still incomplete. Of course, I haven't been working on it full time.

The "Typesetting guidelines" section of the following article on the BGA website might be a better guide for you.

http://britgo.org/bgj/guidelines

Returning to my work-flow, instructions for working on the catalogue form two pages of that document.
They are hidden below.

First page.
Attachment:
00-editing1.png
00-editing1.png [ 237.57 KiB | Viewed 14358 times ]


Second page.
Attachment:
00-editing2.png
00-editing2.png [ 284.02 KiB | Viewed 14358 times ]


Section 7.1 of page 2 omitted to mention a C program I wrote to remove captured stones from starting diagrams, and to note stones played at a previously occupied point. The notes provide hints for annotating ko and other recaptures below the relevant diagram. I couldn't find a way to make sgf2dg do those jobs, but I may not have tried hard enough.

Finally, the next hidden section shows a simple BASH script used to prepare the .png files for these posts. I will reply to John Tilley separately.
Code:
#!/bin/bash
# do-conv - Convert PDF file to png for publishing on Lifein19x19.

# The pdftk program is PDF ToolKit.  Its burst command splits the input file
# into its constituent pages, resulting in files 0001.pdf to 0035.pdf in this case.
ptftk avoid5k.pdf burst

# The convert command is from ImageMagick.  The cropping minimises the
# size of the upload.  The "00-" prefixes make the output files sort to the
# beginning of the directory for ease of selection.
convert -density 216 -trim pg_0001.pdf -flatten \
        -crop 1520x2010+160+190 +repage -resize 40% +repage 00-contents.png
convert -density 216 -trim pg_0003.pdf -flatten \
        -crop 1670x1950+60+180 +repage -resize 40% +repage 00-calamities.png
convert -density 216 -trim pg_0009.pdf -flatten \
        -crop 1715x1910+55+185 +repage -resize 40% +repage 00-glass.png
convert -density 216 -trim pg_0017.pdf -flatten \
        -crop 1735x1910+40+185 +repage -resize 40% +repage 00-push.png
convert -density 216 -trim pg_0032.pdf -flatten \
        -crop 1445x1360+190+185 +repage -resize 40% +repage 00-coordinates.png
convert -density 216 -trim pg_0030.pdf -flatten \
        -crop 1445x2020+190+185 +repage -resize 40% +repage 00-editing1.png
convert -density 216 -trim pg_0031.pdf -flatten \
        -crop 1445x2020+190+185 +repage -resize 40% +repage 00-editing2.png

Top
 Profile  
 
Offline
 Post subject: Re: Personal library of mistakes
Post #18 Posted: Thu Mar 05, 2020 3:27 pm 
Lives in gote

Posts: 586
Location: Adelaide, South Australia
Liked others: 208
Was liked: 265
Rank: Australian 2 dan
GD Posts: 200
thirdfogie wrote:
I use Debian Linux: you probably do not.

I use Ubuntu Linux and LaTeX. You are not alone (if you admit Ubuntu as an acceptable substitute).

thirdfogie wrote:
I couldn't find a way to make sgf2dg do those jobs, but I may not have tried hard enough.

No, you tried the right amount. If you try hard enough, you can make LaTeX macros do anything, but a higher level language is probably a good idea in this case.

Top
 Profile  
 
Offline
 Post subject: Re: Personal library of mistakes
Post #19 Posted: Mon Mar 09, 2020 1:14 pm 
Lives with ko

Posts: 128
Liked others: 148
Was liked: 29
Rank: British 3 kyu
KGS: thirdfogie
A few more thoughts about my Catalogue of Calamities.

Xela wrote:
Quote:
I'm really enjoying the titles and the overall style of the presentation! Where can I buy a copy of your book?


Surely you jest. Anyway, it will never be published, except for occasional
excerpts on this forum.

John Tilley wrote.
Quote:
I have to say that after a gap of some 30 years in playing at go clubs, I found
that SDK players were making the same mistakes that were being made in the
1970s..... The hardest thing is taking these mistakes seriously enough.


I want to disagree with this slightly. To adapt Tolstoy, every weak player is weak
in his or her own way. At least to some extent.

Here is the justification. Since November 2019, I have been lucky enough to
find a regular opponent of similar strength: perhaps half to three-quarters
of a stone weaker. The 40 games played so far tend to fall into
a regular pattern: I get ahead in the opening, followed by chaotic fighting
where my opponent usually does better. If I haven't already resigned, I usually gain
many points during the last part of the game.

In several recent games, Leela Zero thinks my winning percentage has been up to 93% after
only 14 moves. The reason is obvious: the opponent does not know any joseki or many
principles of fuseki.

My relative weakness in fighting is probably down to the fact that he is much fitter than
I am, though of the same age.

The only obvious difference in the later parts of these games is that I have better
internalised the idea that it is often more efficient to puncture
the other player's territory than to defend one's own.

None of these relative weaknesses seem easily amenable to change.

The two of us have learnt some things from one another.
    At first, I would often catch some of his stones in a net: he no longer lets that happen.

    He no longer lets me get all the (supposed) double-sente points.

    He has a tactic for breaking into my potential area by attaching to the side of one of
    my stones. When I answer with a hane, he crosscuts and then forces a way
    in with a series of threats to capture. I have slowly and painfully developed
    a new personal proverb to cover these cases: To preserve an area, don't hane
    but back off to thwart the cross-cut. All I need to do now is to apply it sensibly.

Here is an anecdote about John Tilley. The only time we have been in the same
room was at the old London Go Centre, so more than 40 years ago. Four or five
people were watching a game in its late stages. The bottom of the board looked
something like this. I don't recall how it came about.

Click Here To Show Diagram Code
[go]$$ | . . . . . . . . . . . . . . . . . . . |
$$ | . . . . . . . . X X . . . . . . . . . |
$$ | . . . O . . X X X O X X X . . , . . . |
$$ | . . . . . X X . . . . . . X . X . . . |
$$ | . . . . . . . X X O X X X . . . . . . |
$$ | . . . . . . . . . X . . . . . . . . . |
$$ ---------------------------------------[/go]


JT breezed into the room, took one glance at the board and immediately said "Ikken tobi
is never a bad move". It was clear that a superior intellect was at work.

Lastly, here are some plans for improving the Compendium of Catastrophes.
It should be more positive. In particular, the sections of pure despair
should somehow be expanded into helpful psychological advice. Knotwilg's
frustration equation will have a place of honour. I also want to plunder
Richard Hunter's excellent books. I only understand about the first 10% of
each book, so the plan is to distill the bits that I do understand into pithy
statements that will prompt my memory. Incidentally, this is one reason for
not publishing the whole Catalogue: it shamelessly incorporates other peoples' work.
This is OK for private study, but not for publication. (The extracts given
in this forum are mostly my own work, leavened with an occasional quotation.)

I have also been compiling material concerning the common situation shown
below.
Attachment:
00-jump-ahead-2.png
00-jump-ahead-2.png [ 215.06 KiB | Viewed 14262 times ]

The analysis which follows in the Catalogue is still a mess. For what it's worth, here is a shortened version.
1. Assume any forcing moves by the opponent have already been played before counting liberties.
2. If the white stones have fewer than 5 liberties, jumping ahead will result in at least
one white stone being captured if Black pushes in.
3. If the white stones have exactly 5 liberties, Black will be able to push through and
squeeze.
4. Above 5 liberties, much depends on how much space there is at the other end of the
white stones, whether that space has any value to White, and whether either side can grab it.

Any suggestions?

Edited on 10 March 2020 to remove reference to quarantine, caused by a misremembered post.


This post by thirdfogie was liked by: xela
Top
 Profile  
 
Offline
 Post subject: Re: Personal library of mistakes
Post #20 Posted: Thu Mar 12, 2020 2:49 am 
Lives in gote

Posts: 586
Location: Adelaide, South Australia
Liked others: 208
Was liked: 265
Rank: Australian 2 dan
GD Posts: 200
thirdfogie wrote:
Xela wrote:
Quote:
I'm really enjoying the titles and the overall style of the presentation! Where can I buy a copy of your book?

Surely you jest.

No jest. I really think you're on to something good here. I'd love to see more.

Regarding your page on jumping ahead on the third line: for me, this is the way joseki should be taught! Group together a bunch of joseki with similar shapes or similar themes, and look at what's the same and what's different. Why do all the mainstream joseki books just list them in dictionary order? You don't learn a language by starting with all the 'a' words, then the 'b' words... Where's the go player's equivalent to The Ideas Behind the Chess Openings? Is it possible that thirdfogie is writing it for us right now?

Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 32 posts ]  Go to page 1, 2  Next

All times are UTC - 8 hours [ DST ]


Who is online

Users browsing this forum: No registered users and 1 guest


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group