|
1795 | 1795 | "source": [
|
1796 | 1796 | "The point of this exercise didn't become clear to me until I started doing it. Water is uncountable, so it can be used with and without an determiner. However, countable nouns can only be used without a determiner if they are plural.\n",
|
1797 | 1797 | "\n",
|
1798 |
| - "*Sing* is a bitransitive verb, meaning it can be transitive or intransitive, while *to be* is a copula. Since I wasn't going use this grammar for anything but the sentences in this exercise, I eliminated the productions for `TV` and `IV` and replaced them with `BV` and `Cop`." |
| 1798 | + "*Sing* is a ambitransitive verb, meaning it can be transitive or intransitive, while *to be* is a copula. Since I wasn't going use this grammar for anything but the sentences in this exercise, I eliminated the productions for `TV` and `IV` and replaced them with `ambiV` and `Cop`." |
1799 | 1799 | ]
|
1800 | 1800 | },
|
1801 | 1801 | {
|
1802 | 1802 | "cell_type": "code",
|
1803 |
| - "execution_count": 206, |
| 1803 | + "execution_count": 127, |
1804 | 1804 | "metadata": {},
|
1805 | 1805 | "outputs": [],
|
1806 | 1806 | "source": [
|
|
1816 | 1816 | "NP[NUM=pl, Count = ?c] -> N[NUM=pl, Count = ?c]\n",
|
1817 | 1817 | "NP[NUM=?n, Count = False] -> N[NUM=?n, Count = False]\n",
|
1818 | 1818 | "# VP expansion productions\n",
|
1819 |
| - "VP[TENSE=?t, NUM=?n] -> BV[TENSE=?t, NUM=?n]\n", |
| 1819 | + "VP[TENSE=?t, NUM=?n] -> ambiV[TENSE=?t, NUM=?n]\n", |
1820 | 1820 | "VP[TENSE=?t, NUM=?n] -> Cop[TENSE=?t, NUM=?n] ADJ\n",
|
1821 | 1821 | "# ###################\n",
|
1822 | 1822 | "# Lexical Productions\n",
|
|
1825 | 1825 | "N[NUM=sg, Count = True] -> 'boy' | 'Boy' \n",
|
1826 | 1826 | "N[NUM=sg, Count = False] -> 'water' | 'Water'\n",
|
1827 | 1827 | "N[NUM=pl, Count = True] -> 'Boys' | 'boys'\n",
|
1828 |
| - "BV[TENSE=pres, NUM=sg] -> 'sings'\n", |
1829 |
| - "BV[TENSE=pres, NUM=pl] -> 'sing'\n", |
| 1828 | + "ambiV[TENSE=pres, NUM=sg] -> 'sings'\n", |
| 1829 | + "ambiV[TENSE=pres, NUM=pl] -> 'sing'\n", |
1830 | 1830 | "Cop[TENSE=pres, NUM=sg] -> 'is'\n",
|
1831 | 1831 | "Cop[TENSE=pres, NUM=pl] -> 'are'\n",
|
1832 | 1832 | "ADJ -> 'precious'\n",
|
|
1838 | 1838 | },
|
1839 | 1839 | {
|
1840 | 1840 | "cell_type": "code",
|
1841 |
| - "execution_count": 207, |
| 1841 | + "execution_count": 128, |
1842 | 1842 | "metadata": {},
|
1843 | 1843 | "outputs": [
|
1844 | 1844 | {
|
|
1847 | 1847 | "text": [
|
1848 | 1848 | "(S[]\n",
|
1849 | 1849 | " (NP[+Count, NUM='sg'] (Det[] the) (N[+Count, NUM='sg'] boy))\n",
|
1850 |
| - " (VP[NUM='sg', TENSE='pres'] (BV[NUM='sg', TENSE='pres'] sings)))\n" |
| 1850 | + " (VP[NUM='sg', TENSE='pres'] (ambiV[NUM='sg', TENSE='pres'] sings)))\n" |
1851 | 1851 | ]
|
1852 | 1852 | }
|
1853 | 1853 | ],
|
|
1862 | 1862 | },
|
1863 | 1863 | {
|
1864 | 1864 | "cell_type": "code",
|
1865 |
| - "execution_count": 213, |
| 1865 | + "execution_count": 129, |
1866 | 1866 | "metadata": {},
|
1867 | 1867 | "outputs": [],
|
1868 | 1868 | "source": [
|
|
1875 | 1875 | },
|
1876 | 1876 | {
|
1877 | 1877 | "cell_type": "code",
|
1878 |
| - "execution_count": 209, |
| 1878 | + "execution_count": 130, |
1879 | 1879 | "metadata": {},
|
1880 | 1880 | "outputs": [
|
1881 | 1881 | {
|
|
1884 | 1884 | "text": [
|
1885 | 1885 | "(S[]\n",
|
1886 | 1886 | " (NP[+Count, NUM='pl'] (Det[] The) (N[+Count, NUM='pl'] boys))\n",
|
1887 |
| - " (VP[NUM='pl', TENSE='pres'] (BV[NUM='pl', TENSE='pres'] sing)))\n" |
| 1887 | + " (VP[NUM='pl', TENSE='pres'] (ambiV[NUM='pl', TENSE='pres'] sing)))\n" |
1888 | 1888 | ]
|
1889 | 1889 | }
|
1890 | 1890 | ],
|
|
0 commit comments