itemId stringlengths 1 34 | itemType stringclasses 4
values | site stringclasses 4
values | scrapedAt timestamp[s]date 2026-08-03 00:21:25 2026-08-03 04:01:45 | tagName stringlengths 1 34 ⌀ | questionCount int64 2 2.53M ⌀ | hasSynonyms bool 2
classes | isModeratorOnly bool 1
class | isRequired bool 1
class | link stringlengths 32 258 | _run_id stringclasses 57
values | _dataset_id stringclasses 57
values | questionId int64 1 80M ⌀ | title stringlengths 15 150 ⌀ | score int64 -10 35.3k ⌀ | viewCount int64 6 16.7M ⌀ | answerCount int64 0 296 ⌀ | isAnswered bool 2
classes | hasAcceptedAnswer bool 2
classes | tags listlengths 1 6 ⌀ | createdAt timestamp[s]date 2008-08-01 04:18:04 2026-08-03 03:37:34 ⌀ | lastActivityAt timestamp[s]date 2008-10-30 09:20:18 2026-08-03 01:36:51 ⌀ | ownerDisplayName stringlengths 3 30 ⌀ | isClosed bool 2
classes | contentLicense stringclasses 3
values | acceptedAnswerId int64 4 80M ⌀ | ownerUserId int64 1 33M ⌀ | ownerReputation int64 1 1.53M ⌀ | userId int64 13 33M ⌀ | displayName stringclasses 897
values | reputation int64 1 1.53M ⌀ | userType stringclasses 3
values | lastAccessAt timestamp[s]date 2011-01-10 08:55:57 2026-08-03 03:38:13 ⌀ | goldBadges int64 0 895 ⌀ | silverBadges int64 0 9.32k ⌀ | bronzeBadges int64 0 9.36k ⌀ | reputationChangeMonth int64 -40 1.43k ⌀ | reputationChangeYear int64 -1,146 11.7k ⌀ | websiteUrl stringclasses 302
values | location stringclasses 279
values | acceptRate int64 17 100 ⌀ | answerId int64 1.13k 80M ⌀ | isAccepted bool 2
classes | bodyText stringlengths 31 24.4k ⌀ | bodyHtml stringlengths 39 34.9k ⌀ | answers listlengths 1 3 ⌀ | answersFetched int64 0 3 ⌀ |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
215422 | answer | stackoverflow | 2026-08-03T01:57:01 | null | null | null | null | null | https://stackoverflow.com/a/215422 | C5IUtYwb765dRarGt | 6oAlHJZHBQQzjvMCL | 7,074 | null | 3,836 | null | null | null | null | null | 2008-10-18T18:52:13 | 2024-09-17T22:31:32 | Jon Skeet | null | CC BY-SA 4.0 | null | 22,656 | 1,528,952 | null | null | null | null | null | null | null | null | null | null | null | null | null | 215,422 | false | Just for the sake of completeness, here's a brain dump of related information... As others have noted, string is an alias for System.String . Assuming your code using String compiles to System.String (i.e. you haven't got a using directive for some other namespace with a different String type), they compile to the same... | <p>Just for the sake of completeness, here's a brain dump of related information...</p>
<p>As others have noted, <code>string</code> is an alias for <code>System.String</code>. Assuming your code using <code>String</code> compiles to <code>System.String</code> (i.e. you haven't got a using directive for some other name... | null | null |
5947802 | answer | stackoverflow | 2026-08-03T01:57:01 | null | null | null | null | null | https://stackoverflow.com/a/5947802 | C5IUtYwb765dRarGt | 6oAlHJZHBQQzjvMCL | 5,947,742 | null | 3,836 | null | null | null | null | null | 2011-05-10T09:11:37 | 2025-12-30T22:40:39 | Tobias | null | CC BY-SA 4.0 | null | 376,086 | 38,904 | null | null | null | null | null | null | null | null | null | null | null | null | null | 5,947,802 | false | You can use these ANSI escape codes : Black 0;30 Dark Gray 1;30 Red 0;31 Light Red 1;31 Green 0;32 Light Green 1;32 Brown/Orange 0;33 Yellow 1;33 Blue 0;34 Light Blue 1;34 Purple 0;35 Light Purple 1;35 Cyan 0;36 Light Cyan 1;36 Light Gray 0;37 White 1;37 And then use them like this in your script: # .---------- constan... | <p>You can use these <a href="https://en.wikipedia.org/wiki/ANSI_escape_code" rel="noreferrer">ANSI escape codes</a>:</p>
<pre><code>Black 0;30 Dark Gray 1;30
Red 0;31 Light Red 1;31
Green 0;32 Light Green 1;32
Brown/Orange 0;33 Yellow 1;33
Blue 0;34 L... | null | null |
663175 | answer | stackoverflow | 2026-08-03T01:57:01 | null | null | null | null | null | https://stackoverflow.com/a/663175 | C5IUtYwb765dRarGt | 6oAlHJZHBQQzjvMCL | 663,171 | null | 3,835 | null | null | null | null | null | 2009-03-19T17:30:44 | 2013-05-10T15:44:57 | Paolo Bergantino | null | CC BY-SA 3.0 | null | 16,417 | 490,380 | null | null | null | null | null | null | null | null | null | null | null | null | null | 663,175 | true | >>> x = "Hello World!" >>> x[2:] 'llo World!' >>> x[:2] 'He' >>> x[:-2] 'Hello Worl' >>> x[-2:] 'd!' >>> x[2:-2] 'llo Worl' Python calls this concept "slicing" and it works on more than just strings. Take a look here for a comprehensive introduction. | <pre><code>>>> x = "Hello World!"
>>> x[2:]
'llo World!'
>>> x[:2]
'He'
>>> x[:-2]
'Hello Worl'
>>> x[-2:]
'd!'
>>> x[2:-2]
'llo Worl'
</code></pre>
<p>Python calls this concept "slicing" and it works on more than just strings. Take a look <a href="https://stackove... | null | null |
2594855 | answer | stackoverflow | 2026-08-03T01:57:01 | null | null | null | null | null | https://stackoverflow.com/a/2594855 | C5IUtYwb765dRarGt | 6oAlHJZHBQQzjvMCL | 2,594,829 | null | 3,830 | null | null | null | null | null | 2010-04-07T18:20:18 | 2018-06-01T11:59:42 | gbn | null | CC BY-SA 4.0 | null | 27,535 | 435,065 | null | null | null | null | null | null | null | null | null | null | null | null | null | 2,594,855 | true | SELECT name, email, COUNT(*) FROM users GROUP BY name, email HAVING COUNT(*) > 1 Simply group on both of the columns. Note: the older ANSI standard is to have all non-aggregated columns in the GROUP BY but this has changed with the idea of "functional dependency" : In relational database theory, a functional dependency... | <pre><code>SELECT
name, email, COUNT(*)
FROM
users
GROUP BY
name, email
HAVING
COUNT(*) > 1
</code></pre>
<p>Simply group on both of the columns.</p>
<p>Note: the older ANSI standard is to have all non-aggregated columns in the GROUP BY but this has changed with the idea of <a href="https://blog.j... | null | null |
39604469 | answer | stackoverflow | 2026-08-03T01:57:01 | null | null | null | null | null | https://stackoverflow.com/a/39604469 | C5IUtYwb765dRarGt | 6oAlHJZHBQQzjvMCL | 29,955,500 | null | 3,823 | null | null | null | null | null | 2016-09-20T22:06:40 | 2023-12-19T16:48:23 | Mark Pieszak - Trilon.io | null | CC BY-SA 4.0 | null | 1,492,009 | 68,560 | null | null | null | null | null | null | null | null | null | null | null | null | null | 39,604,469 | true | 1. Make sure you drag the Visual Studio Code application into the Applications folder Otherwise (as noted in the comments), you'll have to go through this process again after a reboot. For example, sometimes the VSCode application might be in your downloads folder, so make sure to move it out of there. 2. Next, open Vi... | <h3>1. Make sure you drag the Visual Studio Code application into the <em>Applications</em> folder</h3>
<p><em>Otherwise (as noted in the comments), you'll have to go through this process again after a reboot.</em></p>
<blockquote>
<p>For example, sometimes the VSCode application might be in your <code>downloads</code>... | null | null |
2010948 | answer | stackoverflow | 2026-08-03T01:57:01 | null | null | null | null | null | https://stackoverflow.com/a/2010948 | C5IUtYwb765dRarGt | 6oAlHJZHBQQzjvMCL | 2,010,892 | null | 3,821 | null | null | null | null | null | 2010-01-06T04:25:58 | 2019-06-15T04:06:54 | Christian C. Salvadó | null | CC BY-SA 4.0 | null | 5,445 | 832,348 | null | null | null | null | null | null | null | null | null | null | null | null | null | 2,010,948 | true | Looking at the Apple , Mozilla and Mozilla again documentation, the functionality seems to be limited to handle only string key/value pairs. A workaround can be to stringify your object before storing it, and later parse it when you retrieve it: var testObject = { 'one': 1, 'two': 2, 'three': 3 }; // Put the object int... | <p>Looking at the <a href="https://developer.apple.com/library/archive/documentation/iPhone/Conceptual/SafariJSDatabaseGuide/Name-ValueStorage/Name-ValueStorage.html" rel="noreferrer">Apple</a>, <a href="https://developer.mozilla.org/en-US/docs/Web/API/Web_Storage_API" rel="noreferrer">Mozilla</a> and <a href="https://... | null | null |
5859221 | answer | stackoverflow | 2026-08-03T01:57:01 | null | null | null | null | null | https://stackoverflow.com/a/5859221 | C5IUtYwb765dRarGt | 6oAlHJZHBQQzjvMCL | 5,805,059 | null | 3,817 | null | null | null | null | null | 2011-05-02T15:45:49 | 2022-07-05T14:16:49 | David | null | CC BY-SA 4.0 | null | 295,800 | 42,437 | null | null | null | null | null | null | null | null | null | null | null | null | null | 5,859,221 | true | A non-CSS - no JavaScript/jQuery answer: <label>Option name <select> <option value="" disabled selected>Select your option</option> <option value="hurr">Durr</option> </select> </label> Update (December 2021): This works for latest Firefox, Chrome, and Safari. It used to not work for many browsers in the past, as point... | <p>A non-CSS - no JavaScript/jQuery answer:</p>
<p><div class="snippet" data-lang="js" data-hide="false" data-console="false" data-babel="false">
<div class="snippet-code">
<pre class="snippet-code-html lang-html prettyprint-override"><code><label>Option name
<select>
<option value="" disabled sele... | null | null |
10999165 | answer | stackoverflow | 2026-08-03T01:57:01 | null | null | null | null | null | https://stackoverflow.com/a/10999165 | C5IUtYwb765dRarGt | 6oAlHJZHBQQzjvMCL | 2,003,505 | null | 3,811 | null | null | null | null | null | 2012-06-12T14:51:43 | 2026-05-28T16:02:16 | Eric Brotto | null | CC BY-SA 4.0 | null | 385,559 | 54,482 | null | null | null | null | null | null | null | null | null | null | null | null | null | 10,999,165 | false | Matthew’s answer is great for removing remote branches, and I also appreciate the explanation, but to make a simple distinction between the two commands: To remove a local branch from your machine: git branch -d {local_branch} Use -D instead of -d to force deletion without checking the merged status. To remove a remote... | <p><a href="https://stackoverflow.com/a/2003515/2637261">Matthew’s answer</a> is great for removing <em>remote</em> branches, and I also appreciate the explanation, but to make a simple distinction between the two commands:</p>
<ul>
<li><p>To remove a <strong>local branch</strong> from your machine: <code>git branch -d... | null | null |
818284 | answer | stackoverflow | 2026-08-03T01:57:01 | null | null | null | null | null | https://stackoverflow.com/a/818284 | C5IUtYwb765dRarGt | 6oAlHJZHBQQzjvMCL | 818,255 | null | 3,801 | null | null | null | null | null | 2009-05-03T23:04:53 | 2022-07-17T06:18:24 | Ayman Hourieh | null | CC BY-SA 4.0 | null | 40,005 | 139,644 | null | null | null | null | null | null | null | null | null | null | null | null | null | 818,284 | true | File descriptor 1 is the standard output ( stdout ). File descriptor 2 is the standard error ( stderr ). At first, 2>1 may look like a good way to redirect stderr to stdout . However, it will actually be interpreted as "redirect stderr to a file named 1 ". & indicates that what follows and precedes is a file descriptor... | <p>File descriptor 1 is the standard output (<code>stdout</code>).<br>
File descriptor 2 is the standard error (<code>stderr</code>).</p>
<p>At first, <code>2>1</code> may look like a good way to redirect <code>stderr</code> to <code>stdout</code>. However, it will actually be interpreted as "redirect <code>std... | null | null |
1014958 | answer | stackoverflow | 2026-08-03T01:57:01 | null | null | null | null | null | https://stackoverflow.com/a/1014958 | C5IUtYwb765dRarGt | 6oAlHJZHBQQzjvMCL | 1,014,861 | null | 3,796 | null | null | null | null | null | 2009-06-18T20:16:50 | 2023-12-22T03:13:01 | Dan Herbert | null | CC BY-SA 4.0 | null | 392 | 104,467 | null | null | null | null | null | null | null | null | null | null | null | null | null | 1,014,958 | true | The W3C's Selectors Level 4 Working Draft includes a :has() pseudo-class that provides this capability, among others: li:has(> a.active) { /* styles to apply to the li tag */ } All major browsers support this selector. Refer to https://caniuse.com/css-has to check if your target browser or browser versions have support... | <p>The W3C's Selectors Level 4 Working Draft includes <a href="https://www.w3.org/TR/selectors-4/#relational" rel="noreferrer">a <code>:has()</code> pseudo-class</a> that provides this capability, among others:</p>
<pre class="lang-css prettyprint-override"><code>li:has(> a.active) { /* styles to apply to the li tag... | null | null |
4351548 | answer | stackoverflow | 2026-08-03T01:57:01 | null | null | null | null | null | https://stackoverflow.com/a/4351548 | C5IUtYwb765dRarGt | 6oAlHJZHBQQzjvMCL | 4,351,521 | null | 3,780 | null | null | null | null | null | 2010-12-04T02:05:32 | 2020-03-03T10:07:11 | MooGoo | null | CC BY-SA 4.0 | null | 375,394 | 48,578 | null | null | null | null | null | null | null | null | null | null | null | null | null | 4,351,548 | true | Standard Method (no library) The arguments are stored in process.argv Here are the node docs on handling command line args: process.argv is an array containing the command line arguments. The first element will be 'node', the second element will be the name of the JavaScript file. The next elements will be any addition... | <h1>Standard Method (no library)</h1>
<p>The arguments are stored in <code>process.argv</code></p>
<p>Here are <a href="http://nodejs.org/docs/latest/api/process.html#process_process_argv" rel="noreferrer">the node docs on handling command line args:</a></p>
<blockquote>
<p><code>process.argv</code> is an array co... | null | null |
769706 | answer | stackoverflow | 2026-08-03T01:57:01 | null | null | null | null | null | https://stackoverflow.com/a/769706 | C5IUtYwb765dRarGt | 6oAlHJZHBQQzjvMCL | 769,683 | null | 3,772 | null | null | null | null | null | 2009-04-20T19:12:57 | 2019-07-31T05:35:07 | Mihai Limbășan | null | CC BY-SA 4.0 | null | 14,444 | 68,924 | null | null | null | null | null | null | null | null | null | null | null | null | null | 769,706 | true | From the psql command line interface, First, choose your database \c database_name Then, this shows all tables in the current schema: \dt Programmatically (or from the psql interface too, of course): SELECT * FROM pg_catalog.pg_tables; The system tables live in the pg_catalog database. | <p>From the <code>psql</code> command line interface,</p>
<p>First, choose your database</p>
<pre><code>\c database_name
</code></pre>
<p>Then, this shows all tables in the current schema:</p>
<pre><code>\dt
</code></pre>
<hr>
<p>Programmatically (or from the <code>psql</code> interface too, of course):</p>
<pre... | null | null |
1349426 | answer | stackoverflow | 2026-08-03T01:57:01 | null | null | null | null | null | https://stackoverflow.com/a/1349426 | C5IUtYwb765dRarGt | 6oAlHJZHBQQzjvMCL | 1,349,404 | null | 3,768 | null | null | null | null | null | 2009-08-28T21:21:03 | 2025-04-25T13:55:37 | csharptest.net | null | CC BY-SA 4.0 | null | 164,392 | 64,526 | null | null | null | null | null | null | null | null | null | null | null | null | null | 1,349,426 | true | I think this will work for you: function makeid(length) { var result = ''; var characters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789'; var charactersLength = characters.length; for ( var i = 0; i < length; i++ ) { result += characters.charAt(Math.floor(Math.random() * charactersLength)); } return... | <p>I think this will work for you:</p>
<p><div class="snippet" data-lang="js" data-hide="false" data-console="true" data-babel="false" data-babel-preset-react="false" data-babel-preset-ts="false">
<div class="snippet-code">
<pre class="snippet-code-js lang-js prettyprint-override"><code>function makeid(length) {
va... | null | null |
2531803 | answer | stackoverflow | 2026-08-03T01:57:01 | null | null | null | null | null | https://stackoverflow.com/a/2531803 | C5IUtYwb765dRarGt | 6oAlHJZHBQQzjvMCL | 2,510,276 | null | 3,761 | null | null | null | null | null | 2010-03-28T03:32:52 | 2024-01-15T19:50:58 | Mark Lodato | null | CC BY-SA 4.0 | null | 303,425 | 54,314 | null | null | null | null | null | null | null | null | null | null | null | null | null | 2,531,803 | true | Short answer: git reset 'HEAD@{1}' Long answer: Git keeps a log of all ref updates (e.g., checkout, reset, commit, merge). You can view it by typing: git reflog Somewhere in this list is the commit that you lost. Let's say you just typed git reset HEAD~ and want to undo it. My reflog looks like this: $ git reflog 3f6db... | <h3>Short answer:</h3>
<pre class="lang-bash prettyprint-override"><code>git reset 'HEAD@{1}'
</code></pre>
<h3>Long answer:</h3>
<p>Git keeps a log of all ref updates (e.g., checkout, reset, commit, merge). You can view it by typing:</p>
<pre><code>git reflog
</code></pre>
<p>Somewhere in this list is the commit that ... | null | null |
18145399 | answer | stackoverflow | 2026-08-03T01:57:01 | null | null | null | null | null | https://stackoverflow.com/a/18145399 | C5IUtYwb765dRarGt | 6oAlHJZHBQQzjvMCL | 13,411,544 | null | 3,756 | null | null | null | null | null | 2013-08-09T11:12:09 | 2023-02-07T04:58:11 | LondonRob | null | CC BY-SA 4.0 | null | 2,071,807 | 79,915 | null | null | null | null | null | null | null | null | null | null | null | null | null | 18,145,399 | false | The best way to do this in Pandas is to use drop : df = df.drop('column_name', axis=1) where 1 is the axis number ( 0 for rows and 1 for columns.) Or, the drop() method accepts index / columns keywords as an alternative to specifying the axis. So we can now just do: df = df.drop(columns=['column_nameA', 'column_nameB']... | <p>The best way to do this in Pandas is to use <a href="https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.drop.html" rel="noreferrer"><code>drop</code></a>:</p>
<pre><code>df = df.drop('column_name', axis=1)
</code></pre>
<p>where <code>1</code> is the <em>axis</em> number (<code>0</code> for ... | null | null |
784946 | answer | stackoverflow | 2026-08-03T01:57:01 | null | null | null | null | null | https://stackoverflow.com/a/784946 | C5IUtYwb765dRarGt | 6oAlHJZHBQQzjvMCL | 784,929 | null | 3,750 | null | null | null | null | null | 2009-04-24T08:18:07 | 2024-01-30T16:40:56 | stevehipwell | null | CC BY-SA 4.0 | null | 89,075 | 57,816 | null | null | null | null | null | null | null | null | null | null | null | null | null | 784,946 | true | It converts Object to boolean . If it was falsy (e.g., 0 , null , undefined , etc.), it would be false , otherwise, true . !object // Inverted Boolean !!object // Noninverted Boolean, so true Boolean representation So !! is not an operator; it's just the ! operator twice. It is generally simpler to do: Boolean(object) ... | <p>It converts <code>Object</code> to <code>boolean</code>. If it was falsy (e.g., <code>0</code>, <code>null</code>, <code>undefined</code>, etc.), it would be <code>false</code>, otherwise, <code>true</code>.</p>
<pre><code>!object // Inverted Boolean
!!object // Noninverted Boolean, so true Boolean representation
<... | null | null |
5602109 | answer | stackoverflow | 2026-08-03T01:57:01 | null | null | null | null | null | https://stackoverflow.com/a/5602109 | C5IUtYwb765dRarGt | 6oAlHJZHBQQzjvMCL | 5,601,931 | null | 3,750 | null | null | null | null | null | 2011-04-09T00:45:29 | 2016-06-15T00:02:20 | KingCrunch | null | CC BY-SA 3.0 | null | 421,223 | 133,033 | null | null | null | null | null | null | null | null | null | null | null | null | null | 5,602,109 | true | How I would do this git checkout master git pull origin master git merge test git push origin master If I have a local branch from a remote one, I don't feel comfortable with merging other branches than this one with the remote. Also I would not push my changes, until I'm happy with what I want to push and also I would... | <p>How I would do this</p>
<pre><code>git checkout master
git pull origin master
git merge test
git push origin master
</code></pre>
<p>If I have a local branch from a remote one, I don't feel comfortable with merging other branches than this one with the remote. Also I would not push my changes, until I'm happy with... | null | null |
73050 | answer | stackoverflow | 2026-08-03T01:57:01 | null | null | null | null | null | https://stackoverflow.com/a/73050 | C5IUtYwb765dRarGt | 6oAlHJZHBQQzjvMCL | 72,899 | null | 3,749 | null | null | null | null | null | 2008-09-16T14:39:44 | 2024-03-05T20:44:21 | Mario F | null | CC BY-SA 4.0 | null | 3,785 | 47,547 | null | null | null | null | null | null | null | null | null | null | null | null | null | 73,050 | true | The sorted() function takes a key= parameter newlist = sorted(list_to_be_sorted, key=lambda d: d['name']) Alternatively, you can use operator.itemgetter instead of defining the function yourself from operator import itemgetter newlist = sorted(list_to_be_sorted, key=itemgetter('name')) For completeness, add reverse=Tru... | <p>The <a href="https://docs.python.org/library/functions.html#sorted" rel="noreferrer"><code>sorted()</code></a> function takes a <code>key=</code> parameter</p>
<pre><code>newlist = sorted(list_to_be_sorted, key=lambda d: d['name'])
</code></pre>
<p>Alternatively, you can use <a href="https://docs.python.org/library/... | null | null |
1552353 | answer | stackoverflow | 2026-08-03T01:57:01 | null | null | null | null | null | https://stackoverflow.com/a/1552353 | C5IUtYwb765dRarGt | 6oAlHJZHBQQzjvMCL | 1,552,340 | null | 3,733 | null | null | null | null | null | 2009-10-12T01:51:34 | 2023-07-24T12:36:59 | Peter | null | CC BY-SA 4.0 | null | 157,237 | 133,485 | null | null | null | null | null | null | null | null | null | null | null | null | null | 1,552,353 | true | git diff --name-only SHA1 SHA2 where you only need to include enough of the SHA hash to identify the commits. The order of the SHAs does not matter. The output (which includes the relative path, not just the file name) follows this format: dir 1/dir 2/filename.ext dir 3/dir 4/other filename.ext You can also do, for exa... | <pre><code>git diff --name-only SHA1 SHA2
</code></pre>
<p>where you only need to include enough of the SHA hash to identify the commits. The order of the SHAs does not matter. The output (which includes the relative path, not just the file name) follows this format:</p>
<pre><code> dir 1/dir 2/filename.ext
dir 3/dir ... | null | null |
8331169 | answer | stackoverflow | 2026-08-03T01:57:01 | null | null | null | null | null | https://stackoverflow.com/a/8331169 | C5IUtYwb765dRarGt | 6oAlHJZHBQQzjvMCL | 3,508,605 | null | 3,726 | null | null | null | null | null | 2011-11-30T18:42:56 | 2019-10-16T19:21:27 | jake | null | CC BY-SA 4.0 | null | 1,074,018 | 38,166 | null | null | null | null | null | null | null | null | null | null | null | null | null | 8,331,169 | true | Use max-height in the transition and not height . And set a value on max-height to something bigger than your box will ever get. See JSFiddle demo provided by Chris Jordan in another answer here. #menu #list { max-height: 0; transition: max-height 0.15s ease-out; overflow: hidden; background: #d5d5d5; } #menu:hover #li... | <p>Use <code>max-height</code> in the transition and not <code>height</code>. And set a value on <code>max-height</code> to something bigger than your box will ever get.</p>
<p>See <a href="http://jsfiddle.net/thechrisjordan/3Fc7D/23/" rel="noreferrer">JSFiddle demo</a> provided by Chris Jordan in another <a href="htt... | null | null |
20686101 | answer | stackoverflow | 2026-08-03T01:57:01 | null | null | null | null | null | https://stackoverflow.com/a/20686101 | C5IUtYwb765dRarGt | 6oAlHJZHBQQzjvMCL | 17,157,721 | null | 3,724 | null | null | null | null | null | 2013-12-19T15:56:21 | 2023-06-14T13:11:30 | WouterD | null | CC BY-SA 4.0 | null | 3,119,830 | 37,714 | null | null | null | null | null | null | null | null | null | null | null | null | null | 20,686,101 | true | This solution only works if the container is connected with a single network. The --format option of inspect comes to the rescue. Modern Docker client syntax is: docker inspect \ -f '{{range.NetworkSettings.Networks}}{{.IPAddress}}{{end}}' container_name_or_id Old Docker client syntax is: docker inspect \ --format '{{ ... | <p>This solution only works if the container is connected with a single network. The <code>--format</code> option of <code>inspect</code> comes to the rescue.</p>
<p>Modern Docker client syntax is:</p>
<pre class="lang-bash prettyprint-override"><code>docker inspect \
-f '{{range.NetworkSettings.Networks}}{{.IPAddres... | null | null |
987162 | answer | stackoverflow | 2026-08-03T01:57:01 | null | null | null | null | null | https://stackoverflow.com/a/987162 | C5IUtYwb765dRarGt | 6oAlHJZHBQQzjvMCL | 987,142 | null | 3,700 | null | null | null | null | null | 2009-06-12T15:07:38 | 2024-05-21T14:54:49 | Joakim Elofsson | null | CC BY-SA 4.0 | null | 109,869 | 38,934 | null | null | null | null | null | null | null | null | null | null | null | null | null | 987,162 | true | An optional prefix ! which negates the pattern; any matching file excluded by a previous pattern will become included again. If a negated pattern matches, this will override lower precedence patterns sources. # Ignore everything * # But not these files... !.gitignore !script.pl !template.latex # etc... # ...even if the... | <blockquote>
<p>An optional prefix <code>!</code> which negates the pattern; any matching file excluded by
a previous pattern will become included again. If a negated pattern matches,
this will override lower precedence patterns sources.</p>
</blockquote>
<pre class="lang-bash prettyprint-override"><code># Ignore every... | null | null |
14203146 | answer | stackoverflow | 2026-08-03T01:57:01 | null | null | null | null | null | https://stackoverflow.com/a/14203146 | C5IUtYwb765dRarGt | 6oAlHJZHBQQzjvMCL | 192,249 | null | 3,689 | null | null | null | null | null | 2013-01-07T20:01:05 | 2024-03-18T06:12:10 | Bruno Bronosky | null | CC BY-SA 4.0 | null | 117,471 | 71,741 | null | null | null | null | null | null | null | null | null | null | null | null | null | 14,203,146 | true | Bash Space-Separated (e.g., --option argument ) cat >/tmp/demo-space-separated.sh <<'EOF' #!/bin/bash POSITIONAL_ARGS=() while [[ $# -gt 0 ]]; do case $1 in -e|--extension) EXTENSION="$2" shift # past argument shift # past value ;; -s|--searchpath) SEARCHPATH="$2" shift # past argument shift # past value ;; --default) ... | <h4>Bash Space-Separated (e.g., <code>--option argument</code>)</h4>
<pre class="lang-bash prettyprint-override"><code>cat >/tmp/demo-space-separated.sh <<'EOF'
#!/bin/bash
POSITIONAL_ARGS=()
while [[ $# -gt 0 ]]; do
case $1 in
-e|--extension)
EXTENSION="$2"
shift # past argument... | null | null |
901727 | answer | stackoverflow | 2026-08-03T01:57:01 | null | null | null | null | null | https://stackoverflow.com/a/901727 | C5IUtYwb765dRarGt | 6oAlHJZHBQQzjvMCL | 901,712 | null | 3,682 | null | null | null | null | null | 2009-05-23T15:20:33 | 2018-03-09T02:06:27 | karim79 | null | CC BY-SA 3.0 | null | 70,393 | 343,126 | null | null | null | null | null | null | null | null | null | null | null | null | null | 901,727 | false | How do I successfully query the checked property? The checked property of a checkbox DOM element will give you the checked state of the element. Given your existing code, you could therefore do this: if(document.getElementById('isAgeSelected').checked) { $("#txtAge").show(); } else { $("#txtAge").hide(); } However, the... | <blockquote>
<p>How do I successfully query the checked property?</p>
</blockquote>
<p>The <code>checked</code> property of a checkbox DOM element will give you the <code>checked</code> state of the element.</p>
<p>Given your existing code, you could therefore do this:</p>
<pre><code>if(document.getElementById('is... | null | null |
21429652 | answer | stackoverflow | 2026-08-03T01:57:01 | null | null | null | null | null | https://stackoverflow.com/a/21429652 | C5IUtYwb765dRarGt | 6oAlHJZHBQQzjvMCL | 1,053,424 | null | 3,680 | null | null | null | null | null | 2014-01-29T11:25:17 | 2023-09-20T09:07:01 | Fancy John | null | CC BY-SA 4.0 | null | 793,395 | 39,698 | null | null | null | null | null | null | null | null | null | null | null | null | null | 21,429,652 | true | DEV environment This always works for me: ini_set('display_errors', '1'); ini_set('display_startup_errors', '1'); error_reporting(E_ALL); However, this doesn't make PHP to show parse errors occurred in the same file. Also, these settings can be overridden by PHP. In these cases the only way to show those errors is to m... | <h3>DEV environment</h3>
<p>This always works for me:</p>
<pre><code>ini_set('display_errors', '1');
ini_set('display_startup_errors', '1');
error_reporting(E_ALL);
</code></pre>
<p>However, this doesn't make PHP to show parse errors occurred in the same file. Also, these settings can be overridden by PHP. In these cas... | null | null |
92395 | answer | stackoverflow | 2026-08-03T01:57:01 | null | null | null | null | null | https://stackoverflow.com/a/92395 | C5IUtYwb765dRarGt | 6oAlHJZHBQQzjvMCL | 89,228 | null | 3,677 | null | null | null | null | null | 2008-09-18T13:11:46 | 2026-04-24T12:50:43 | Eli Courtwright | null | CC BY-SA 4.0 | null | 1,694 | 195,425 | null | null | null | null | null | null | null | null | null | null | null | null | null | 92,395 | false | Here is a summary of ways to call external programs, including their advantages and disadvantages: os.system passes the command and arguments to your system's shell. This is nice because you can actually run multiple commands at once in this manner and set up pipes and input/output redirection. For example: os.system("... | <p>Here is a summary of ways to call external programs, including their advantages and disadvantages:</p>
<ol>
<li><p><a href="https://docs.python.org/3/library/os.html#os.system" rel="nofollow noreferrer"><code>os.system</code></a> passes the command and arguments to your system's shell. This is nice because you can a... | null | null |
4038991 | answer | stackoverflow | 2026-08-03T01:57:01 | null | null | null | null | null | https://stackoverflow.com/a/4038991 | C5IUtYwb765dRarGt | 6oAlHJZHBQQzjvMCL | 4,037,939 | null | 3,677 | null | null | null | null | null | 2010-10-28T01:16:25 | 2022-02-24T18:26:00 | Chad Miller | null | CC BY-SA 4.0 | null | 135,965 | 42,547 | null | null | null | null | null | null | null | null | null | null | null | null | null | 4,038,991 | true | If you're using Windows Server 2008 R2 then there is an x64 and x86 version of PowerShell both of which have to have their execution policies set. Did you set the execution policy on both hosts? As an Administrator , you can set the execution policy by typing this into your PowerShell window: Set-ExecutionPolicy Remote... | <p>If you're using <a href="https://en.wikipedia.org/wiki/Windows_Server_2008" rel="noreferrer">Windows Server 2008</a> R2 then there is an <em>x64</em> and <em>x86</em> version of PowerShell both of which have to have their execution policies set. Did you set the execution policy on both hosts?</p>
<p>As an <em>Admini... | null | null |
17969785 | answer | stackoverflow | 2026-08-03T01:57:01 | null | null | null | null | null | https://stackoverflow.com/a/17969785 | C5IUtYwb765dRarGt | 6oAlHJZHBQQzjvMCL | 3,040,833 | null | 3,674 | null | null | null | null | null | 2013-07-31T11:59:56 | 2020-12-15T04:19:50 | konrad.kruczynski | null | CC BY-SA 4.0 | null | 549,315 | 48,051 | null | null | null | null | null | null | null | null | null | null | null | null | null | 17,969,785 | true | git stash push -p -m "my commit message" -p let's you select the hunks that should be stashed; whole files can be selected as well. You'll be prompted with a few actions for each hunk: y - stash this hunk n - do not stash this hunk q - quit; do not stash this hunk or any of the remaining ones a - stash this hunk and al... | <pre><code>git stash push -p -m "my commit message"
</code></pre>
<p><code>-p</code> let's you select the hunks that should be stashed; whole files can be selected as well.</p>
<p>You'll be prompted with a few actions for each hunk:</p>
<pre><code> y - stash this hunk
n - do not stash this hunk
q - qu... | null | null |
6797990 | answer | stackoverflow | 2026-08-03T01:57:01 | null | null | null | null | null | https://stackoverflow.com/a/6797990 | C5IUtYwb765dRarGt | 6oAlHJZHBQQzjvMCL | 6,797,984 | null | 3,667 | null | null | null | null | null | 2011-07-23T03:09:58 | 2022-03-29T10:01:40 | Petar Ivanov | null | CC BY-SA 4.0 | null | 791,998 | 93,490 | null | null | null | null | null | null | null | null | null | null | null | null | null | 6,797,990 | true | Use str.lower() : "Kilometer".lower() | <p>Use <a href="https://docs.python.org/library/stdtypes.html#str.lower" rel="noreferrer"><code>str.lower()</code></a>:</p>
<pre><code>"Kilometer".lower()
</code></pre>
| null | null |
5410784 | answer | stackoverflow | 2026-08-03T01:57:01 | null | null | null | null | null | https://stackoverflow.com/a/5410784 | C5IUtYwb765dRarGt | 6oAlHJZHBQQzjvMCL | 5,410,757 | null | 3,660 | null | null | null | null | null | 2011-03-23T19:48:46 | 2025-12-12T05:23:22 | SiegeX | null | CC BY-SA 4.0 | null | 207,248 | 141,917 | null | null | null | null | null | null | null | null | null | null | null | null | null | 5,410,784 | true | To remove the line and print the output to standard out: sed '/pattern to match/d' ./infile To directly modify the file (it does not work with BSD sed): sed -i '/pattern to match/d' ./infile The same, but for BSD sed (Mac OS X and FreeBSD. It does not work with GNU sed): sed -i '' '/pattern to match/d' ./infile To dire... | <p>To remove the line and print the output to standard out:</p>
<pre><code>sed '/pattern to match/d' ./infile
</code></pre>
<p>To directly modify the file (it does not work with BSD sed):</p>
<pre><code>sed -i '/pattern to match/d' ./infile
</code></pre>
<p>The same, but for BSD sed (Mac OS X and FreeBSD. It does not w... | null | null |
2862938 | answer | stackoverflow | 2026-08-03T01:57:01 | null | null | null | null | null | https://stackoverflow.com/a/2862938 | C5IUtYwb765dRarGt | 6oAlHJZHBQQzjvMCL | 2,862,590 | null | 3,651 | null | null | null | null | null | 2010-05-19T04:51:31 | 2024-10-03T05:59:34 | ergosys | null | CC BY-SA 4.0 | null | 240,633 | 49,267 | null | null | null | null | null | null | null | null | null | null | null | null | null | 2,862,938 | true | You should be able to use the “ours” merge strategy to overwrite master with seotweaks like this: git checkout master git pull git checkout seotweaks git merge -s ours master git checkout master git merge seotweaks The first two steps are a useful precaution to ensure your local copy of master is up-to-date. The result... | <p>You should be able to use the “ours” merge strategy to overwrite master with seotweaks like this:</p>
<pre><code>git checkout master
git pull
git checkout seotweaks
git merge -s ours master
git checkout master
git merge seotweaks
</code></pre>
<p>The first two steps are a useful precaution to ensure your local copy ... | null | null |
369608 | answer | stackoverflow | 2026-08-03T01:57:01 | null | null | null | null | null | https://stackoverflow.com/a/369608 | C5IUtYwb765dRarGt | 6oAlHJZHBQQzjvMCL | 369,602 | null | 3,648 | null | null | null | null | null | 2008-12-15T20:30:46 | 2025-03-11T19:41:58 | Konrad Rudolph | null | CC BY-SA 4.0 | null | 1,968 | 550,770 | null | null | null | null | null | null | null | null | null | null | null | null | null | 369,608 | true | There are different ways to delete an array element, where some are more useful for some specific tasks than others. Deleting a Single Array Element If you want to delete just one single array element you can use unset() and alternatively array_splice() . By key or by value? If you know the value and don't know the key... | <p>There are different ways to delete an array element, where some are more useful for some specific tasks than others.</p>
<h2>Deleting a Single Array Element</h2>
<p>If you want to delete just one single array element you can use <a href="https://secure.php.net/manual/en/function.unset.php" rel="noreferrer"><code>uns... | null | null |
16074029 | answer | stackoverflow | 2026-08-03T01:57:01 | null | null | null | null | null | https://stackoverflow.com/a/16074029 | C5IUtYwb765dRarGt | 6oAlHJZHBQQzjvMCL | 16,073,603 | null | 3,644 | null | null | null | null | null | 2013-04-18T03:35:05 | 2025-01-21T00:43:19 | josh3736 | null | CC BY-SA 4.0 | null | 201,952 | 146,470 | null | null | null | null | null | null | null | null | null | null | null | null | null | 16,074,029 | true | It looks like npm-check-updates is the only way to make this happen now. npm i -g npm-check-updates ncu -u npm install Or using npx (so you don't have to install a global package): npx npm-check-updates -u npm install On npm <3.11: Simply change every dependency's version to * , then run npm update --save . ( Note: bro... | <p>It looks like <a href="https://www.npmjs.org/package/npm-check-updates" rel="noreferrer">npm-check-updates</a> is the only way to make this happen now.</p>
<pre class="lang-bash prettyprint-override"><code>npm i -g npm-check-updates
ncu -u
npm install
</code></pre>
<p>Or using npx (so you don't have to install a glo... | null | null |
835561 | answer | stackoverflow | 2026-08-03T01:57:01 | null | null | null | null | null | https://stackoverflow.com/a/835561 | C5IUtYwb765dRarGt | 6oAlHJZHBQQzjvMCL | 835,501 | null | 3,640 | null | null | null | null | null | 2009-05-07T16:02:50 | 2023-04-26T08:00:17 | sykloid | null | CC BY-SA 4.0 | null | 53,850 | 102,914 | null | null | null | null | null | null | null | null | null | null | null | null | null | 835,561 | true | To stash your working directory including untracked files (especially those that are in the .gitignore ) then you probably want to use this cmd: git stash --include-untracked Alternatively, you can use the shorthand -u instead of --include-untracked , or simply git stash --all (see warning below for this one) which sta... | <p>To stash your working directory including untracked files (especially those that are in the <code>.gitignore</code>) then you probably want to use this cmd:</p>
<pre class="lang-bash prettyprint-override"><code>git stash --include-untracked
</code></pre>
<p>Alternatively, you can use the shorthand <code>-u</code> in... | null | null |
1459264 | answer | stackoverflow | 2026-08-03T01:57:01 | null | null | null | null | null | https://stackoverflow.com/a/1459264 | C5IUtYwb765dRarGt | 6oAlHJZHBQQzjvMCL | 1,459,150 | null | 3,638 | null | null | null | null | null | 2009-09-22T10:23:44 | 2022-07-15T22:36:16 | Lara Bailey | null | CC BY-SA 4.0 | null | 19,563 | 805,258 | null | null | null | null | null | null | null | null | null | null | null | null | null | 1,459,264 | true | What you need to do is to create a new commit with the same details as the current HEAD commit, but with the parent as the previous version of HEAD . git reset --soft will move the branch pointer so that the next commit happens on top of a different commit from where the current branch head is now. # Move the current h... | <p>What you need to do is to create a new commit with the same details as the current <code>HEAD</code> commit, but with the parent as the previous version of <code>HEAD</code>. <code>git reset --soft</code> will move the branch pointer so that the next commit happens on top of a different commit from where the current... | null | null |
8880633 | answer | stackoverflow | 2026-08-03T01:57:01 | null | null | null | null | null | https://stackoverflow.com/a/8880633 | C5IUtYwb765dRarGt | 6oAlHJZHBQQzjvMCL | 8,880,603 | null | 3,635 | null | null | null | null | null | 2012-01-16T13:24:47 | 2025-11-19T13:31:32 | anubhava | null | CC BY-SA 4.0 | null | 548,225 | 791,621 | null | null | null | null | null | null | null | null | null | null | null | null | null | 8,880,633 | true | ## declare an array variable declare -a arr=("element 1" "element 2" "element 3") ## loop through above array (quotes are important if your elements may contain spaces) for i in "${arr[@]}" do echo "$i" # or do whatever with individual element of array done # You can access them using echo "${arr[0]}", "${arr[1]}" also... | <pre><code>## declare an array variable
declare -a arr=("element 1" "element 2" "element 3")
## loop through above array (quotes are important if your elements may contain spaces)
for i in "${arr[@]}"
do
echo "$i"
# or do whatever with individual element of array... | null | null |
2626364 | answer | stackoverflow | 2026-08-03T01:57:01 | null | null | null | null | null | https://stackoverflow.com/a/2626364 | C5IUtYwb765dRarGt | 6oAlHJZHBQQzjvMCL | 1,436,703 | null | 3,633 | null | null | null | null | null | 2010-04-13T00:56:52 | 2025-08-07T18:37:34 | moshez | null | CC BY-SA 4.0 | null | 122,683 | 37,975 | null | null | null | null | null | null | null | null | null | null | null | null | null | 2,626,364 | true | Alex Martelli summarized well but, surprisingly, was too succinct. First, let me reiterate the main points in Alex ’s post: The default implementation is useless (it’s hard to think of one which wouldn’t be, but yeah) __repr__ goal is to be unambiguous __str__ goal is to be readable Container’s __str__ uses contained o... |
<p><a href="https://stackoverflow.com/a/1436756/3798217">Alex Martelli summarized well</a> but, surprisingly, was too succinct.</p>
<p>First, let me reiterate the main points in <a href="https://stackoverflow.com/users/95810/alex-martelli">Alex</a>’s post:</p>
<ul>
<li>The default implementation is useless (it’s hard ... | null | null |
19578808 | answer | stackoverflow | 2026-08-03T01:57:01 | null | null | null | null | null | https://stackoverflow.com/a/19578808 | C5IUtYwb765dRarGt | 6oAlHJZHBQQzjvMCL | 19,578,796 | null | 3,633 | null | null | null | null | null | 2013-10-24T23:56:10 | 2018-09-18T18:15:35 | voithos | null | CC BY-SA 4.0 | null | 716,118 | 70,960 | null | null | null | null | null | null | null | null | null | null | null | null | null | 19,578,808 | true | Update npm 5: As of npm 5.0.0 , installed modules are added as a dependency by default, so the --save option is no longer needed. The other save options still exist and are listed in the documentation for npm install . Original answer: Before version 5, NPM simply installed a package under node_modules by default. When... | <p><strong>Update npm 5:</strong></p>
<p>As of <a href="http://blog.npmjs.org/post/161081169345/v500" rel="noreferrer">npm 5.0.0</a>, installed modules are added as a dependency by default, so the <code>--save</code> option is no longer needed. The other save options still exist and are listed in the <a href="https://... | null | null |
73021 | answer | stackoverflow | 2026-08-03T01:57:01 | null | null | null | null | null | https://stackoverflow.com/a/73021 | C5IUtYwb765dRarGt | 6oAlHJZHBQQzjvMCL | 40,480 | null | 3,629 | null | null | null | null | null | 2008-09-16T14:37:00 | 2025-08-12T01:01:40 | Scott Stanchfield | null | CC BY-SA 4.0 | null | 12,541 | 30,770 | null | null | null | null | null | null | null | null | null | null | null | null | null | 73,021 | false | I'm the author of the blog post you're talking about. To clarify a few things: The Java Spec says that everything in Java is pass-by-value. There is no such thing as "pass-by-reference" in Java. The key to understanding this is that something like Dog myDog; is not a Dog; it's actually a pointer to a Dog. The use of th... | <p>I'm the author of the <a href="http://javadude.com/articles/passbyvalue.htm" rel="noreferrer">blog post</a> you're talking about. To clarify a few things:</p>
<p>The Java Spec says that everything in Java is pass-by-value. There is no such thing as "pass-by-reference" in Java.</p>
<p>The key to understandi... | null | null |
1733489 | answer | stackoverflow | 2026-08-03T01:57:01 | null | null | null | null | null | https://stackoverflow.com/a/1733489 | C5IUtYwb765dRarGt | 6oAlHJZHBQQzjvMCL | 1,732,348 | null | 3,622 | null | null | null | null | null | 2009-11-14T06:27:19 | 2024-12-04T10:00:35 | Kaitlin Duck Sherwood | null | CC BY-SA 4.0 | null | 210,931 | 807 | null | null | null | null | null | null | null | null | null | null | null | null | null | 1,733,489 | false | While parsing arbitrary HTML with only a regex is impossible, it's sometimes appropriate to use them for parsing a limited, known set of HTML. If you have a small set of HTML pages that you want to scrape data from and then stuff into a database, regexes might work fine. For example, I recently wanted to get the names,... | <p>While parsing <em>arbitrary</em> HTML with only a regex is impossible, it's sometimes appropriate to use them for parsing a <em>limited, known</em> set of HTML.</p>
<p>If you have a small set of HTML pages that you want to scrape data from and then stuff into a database, regexes might work fine. For example, I rece... | null | null |
21530768 | answer | stackoverflow | 2026-08-03T01:57:01 | null | null | null | null | null | https://stackoverflow.com/a/21530768 | C5IUtYwb765dRarGt | 6oAlHJZHBQQzjvMCL | 21,530,577 | null | 3,620 | null | null | null | null | null | 2014-02-03T15:10:01 | 2025-08-29T16:56:33 | wim | null | CC BY-SA 4.0 | null | 674,039 | 370,110 | null | null | null | null | null | null | null | null | null | null | null | null | null | 21,530,768 | false | Looks like you haven't properly installed the header files and static libraries for python dev. Use your package manager to install them system-wide. For apt ( Ubuntu, Debian... ): sudo apt install python-dev # for python2.x installs sudo apt install python3-dev # for python3.x installs For yum ( CentOS, RHEL... ): sud... | <p>Looks like you haven't properly installed the header files and static libraries for python dev. Use your package manager to install them system-wide.</p>
<p>For <code>apt</code> (<strong>Ubuntu, Debian...</strong>):</p>
<pre class="lang-bash prettyprint-override"><code>sudo apt install python-dev # for python2.x ... | null | null |
79989058 | question | stackoverflow | 2026-08-03T01:26:21 | null | null | null | null | null | https://stackoverflow.com/questions/79989058/machine-learning-methods-for-classifying-open-vs-closed-curves-with-only-12-tra | idAE6PYrHSeq8ZQzx | VIWEV4wIvSqsb6cD0 | 79,989,058 | Machine learning methods for classifying open vs. closed curves with only 12 training samples (no pretraining or handcrafted features) | -4 | 67 | 0 | false | false | [
"advice",
"tooling-recommendation",
"machine-learning",
"few-shot-learning"
] | 2026-07-30T04:23:05 | 2026-07-30T07:00:54 | user88981 | true | null | null | 32,981,308 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null |
79987685 | question | stackoverflow | 2026-08-03T01:26:21 | null | null | null | null | null | https://stackoverflow.com/questions/79987685/tokenization-approach-for-arabic-script-transliteration | idAE6PYrHSeq8ZQzx | VIWEV4wIvSqsb6cD0 | 79,987,685 | Tokenization approach for Arabic script transliteration | 2 | 45 | 0 | false | false | [
"machine-learning",
"nlp",
"tokenize",
"arabic",
"transliteration"
] | 2026-07-28T23:51:12 | 2026-07-28T23:57:32 | user3758232 | false | CC BY-SA 4.0 | null | 3,758,232 | 1,032 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null |
79985851 | question | stackoverflow | 2026-08-03T01:26:21 | null | null | null | null | null | https://stackoverflow.com/questions/79985851/is-x-test-really-unseen-data-if-i-split-it-from-the-original-dataset-before-trai | idAE6PYrHSeq8ZQzx | VIWEV4wIvSqsb6cD0 | 79,985,851 | Is X_test really unseen data if I split it from the original dataset before training? | 1 | 99 | 1 | false | false | [
"advice",
"python",
"machine-learning"
] | 2026-07-25T15:02:43 | 2026-07-25T18:04:41 | Bansi Sojitra | true | null | null | 32,970,845 | 27 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null |
79982392 | question | stackoverflow | 2026-08-03T01:26:21 | null | null | null | null | null | https://stackoverflow.com/questions/79982392/iotdb-2-0-4-ainode-sql-error-701-unknown-function-forecast-after-enabling-ai | idAE6PYrHSeq8ZQzx | VIWEV4wIvSqsb6cD0 | 79,982,392 | IoTDB 2.0.4 AINode: SQL error 701 "Unknown function: forecast" after enabling AINode | -10 | 72 | 0 | false | false | [
"machine-learning",
"time-series",
"forecasting",
"apache-iotdb"
] | 2026-07-21T02:16:48 | 2026-07-21T02:54:27 | Ethan Vale | false | CC BY-SA 4.0 | null | 32,918,563 | 9 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null |
79981390 | question | stackoverflow | 2026-08-03T01:26:21 | null | null | null | null | null | https://stackoverflow.com/questions/79981390/pytorch-captum-runtimeerror-gather-expected-dtype-int32-int64-for-index | idAE6PYrHSeq8ZQzx | VIWEV4wIvSqsb6cD0 | 79,981,390 | PyTorch/Captum: RuntimeError: gather(): Expected dtype int32/int64 for index | 1 | 75 | 0 | false | false | [
"python",
"machine-learning",
"pytorch"
] | 2026-07-16T18:57:46 | 2026-07-16T19:00:01 | Tessa | false | CC BY-SA 4.0 | null | 6,832,623 | 89 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null |
79980188 | question | stackoverflow | 2026-08-03T01:26:21 | null | null | null | null | null | https://stackoverflow.com/questions/79980188/skl2onnx-conversion-for-standalone-randomforestclassifier-results-in-massive-41 | idAE6PYrHSeq8ZQzx | VIWEV4wIvSqsb6cD0 | 79,980,188 | skl2onnx conversion for standalone RandomForestClassifier results in massive 41% accuracy drop due to list unpacking shape mismatch | 0 | 92 | 0 | false | false | [
"python",
"machine-learning",
"scikit-learn",
"onnx",
"onnxruntime"
] | 2026-07-13T02:49:10 | 2026-07-13T02:58:30 | Ayush Saini | false | CC BY-SA 4.0 | null | 28,053,177 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null |
79975201 | question | stackoverflow | 2026-08-03T01:26:21 | null | null | null | null | null | https://stackoverflow.com/questions/79975201/which-approaches-should-be-used-for-monthly-demand-forecasting-with-few-observat | idAE6PYrHSeq8ZQzx | VIWEV4wIvSqsb6cD0 | 79,975,201 | Which approaches should be used for monthly demand forecasting with few observations per product? | 0 | 131 | 1 | false | false | [
"python",
"pandas",
"machine-learning",
"data-analysis"
] | 2026-07-06T19:07:53 | 2026-07-07T10:29:34 | Romulo Carneiro | false | CC BY-SA 4.0 | null | 32,912,750 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null |
79974413 | question | stackoverflow | 2026-08-03T01:26:21 | null | null | null | null | null | https://stackoverflow.com/questions/79974413/should-i-learn-tensorflow-in-parallel-while-taking-andrew-ngs-machine-learning | idAE6PYrHSeq8ZQzx | VIWEV4wIvSqsb6cD0 | 79,974,413 | Should I learn TensorFlow in parallel while taking Andrew Ng's Machine Learning course? | 0 | 100 | 1 | false | false | [
"tensorflow",
"machine-learning"
] | 2026-07-04T11:21:26 | 2026-07-06T01:21:09 | Tanishq Pundir | false | CC BY-SA 4.0 | null | 32,906,381 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null |
79972279 | question | stackoverflow | 2026-08-03T01:26:21 | null | null | null | null | null | https://stackoverflow.com/questions/79972279/future-invoke-map-deprecated-cannot-get-replacement-to-work | idAE6PYrHSeq8ZQzx | VIWEV4wIvSqsb6cD0 | 79,972,279 | future_invoke_map() deprecated, cannot get replacement to work | 1 | 144 | 1 | false | false | [
"r",
"machine-learning",
"purrr",
"tidymodels",
"furrr"
] | 2026-07-01T17:45:37 | 2026-07-08T14:02:37 | fip_researcher | false | CC BY-SA 4.0 | null | 8,407,875 | 37 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null |
79972150 | question | stackoverflow | 2026-08-03T01:26:21 | null | null | null | null | null | https://stackoverflow.com/questions/79972150/spent-months-building-optimizers-cnns-from-scratch-in-numpy-cupy-not-sure-what | idAE6PYrHSeq8ZQzx | VIWEV4wIvSqsb6cD0 | 79,972,150 | Spent months building optimizers/CNNs from scratch in NumPy/CuPy — not sure what to build next, would appreciate direction | 1 | 88 | 0 | false | false | [
"python",
"machine-learning",
"math",
"deep-learning",
"artificial-intelligence"
] | 2026-07-01T12:56:56 | 2026-07-01T12:56:56 | FlackoJodye | false | CC BY-SA 4.0 | null | 16,838,988 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null |
79971881 | question | stackoverflow | 2026-08-03T01:26:21 | null | null | null | null | null | https://stackoverflow.com/questions/79971881/why-not-use-only-non-missing-value-rows-as-the-test-set-when-evaluating-an-imput | idAE6PYrHSeq8ZQzx | VIWEV4wIvSqsb6cD0 | 79,971,881 | Why not use only non-missing value rows as the test set when evaluating an imputed ML pipeline? | 1 | 110 | 3 | false | false | [
"python",
"machine-learning",
"missing-data",
"imputation"
] | 2026-06-30T20:00:44 | 2026-07-05T00:27:47 | Minh Truong Quang | false | CC BY-SA 4.0 | null | 32,894,594 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null |
79969015 | question | stackoverflow | 2026-08-03T01:26:21 | null | null | null | null | null | https://stackoverflow.com/questions/79969015/evaluating-long-term-memory-limits-in-stateless-llm-chatbots-feedback-needed | idAE6PYrHSeq8ZQzx | VIWEV4wIvSqsb6cD0 | 79,969,015 | Evaluating long-term memory limits in stateless LLM chatbots — feedback needed | 0 | 92 | 1 | false | false | [
"machine-learning",
"nlp",
"chatbot",
"large-language-model"
] | 2026-06-28T16:54:01 | 2026-06-28T18:00:26 | Nilina Amarathunga | false | CC BY-SA 4.0 | null | 32,886,184 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null |
79966086 | question | stackoverflow | 2026-08-03T01:26:21 | null | null | null | null | null | https://stackoverflow.com/questions/79966086/class-weight-vs-data-augmentation-for-handling-class-imbalance-in-binary-classif | idAE6PYrHSeq8ZQzx | VIWEV4wIvSqsb6cD0 | 79,966,086 | class_weight vs data augmentation for handling class imbalance in binary classification? | 0 | 66 | 3 | true | false | [
"machine-learning",
"classification"
] | 2026-06-24T01:02:10 | 2026-06-24T11:37:12 | user32838198 | false | CC BY-SA 4.0 | null | 32,838,198 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null |
79965844 | question | stackoverflow | 2026-08-03T01:26:21 | null | null | null | null | null | https://stackoverflow.com/questions/79965844/how-can-i-improve-the-accuracy-of-a-random-forest-model-for-student-performance | idAE6PYrHSeq8ZQzx | VIWEV4wIvSqsb6cD0 | 79,965,844 | How can I improve the accuracy of a Random Forest model for student performance prediction? | 0 | 178 | 3 | true | false | [
"python",
"machine-learning",
"random-forest"
] | 2026-06-23T11:46:28 | 2026-06-24T07:09:07 | 卓鈺瑤 | false | CC BY-SA 4.0 | null | 32,868,823 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null |
79963197 | question | stackoverflow | 2026-08-03T01:26:21 | null | null | null | null | null | https://stackoverflow.com/questions/79963197/how-to-update-dynamic-user-embeddings-with-negative-ratings-in-768-d-space-witho | idAE6PYrHSeq8ZQzx | VIWEV4wIvSqsb6cD0 | 79,963,197 | How to update dynamic user embeddings with negative ratings in 768-d space without causing vector drift? | 0 | 98 | 2 | false | false | [
"python",
"machine-learning",
"embedding",
"recommendation-engine",
"vector-database"
] | 2026-06-19T13:42:26 | 2026-06-27T20:31:52 | Emir Vellekov | false | CC BY-SA 4.0 | null | 29,125,478 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null |
79960435 | question | stackoverflow | 2026-08-03T01:26:21 | null | null | null | null | null | https://stackoverflow.com/questions/79960435/uncertainty-estimation-vs-oversampling | idAE6PYrHSeq8ZQzx | VIWEV4wIvSqsb6cD0 | 79,960,435 | Uncertainty Estimation vs Oversampling | 1 | 95 | 3 | true | false | [
"python",
"machine-learning",
"neural-network",
"uncertainty",
"fraud-prevention"
] | 2026-06-16T04:01:08 | 2026-06-16T17:22:41 | David Gomes | false | CC BY-SA 4.0 | null | 32,842,973 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null |
79956997 | question | stackoverflow | 2026-08-03T01:26:21 | null | null | null | null | null | https://stackoverflow.com/questions/79956997/trigram-language-model-two-implementations-give-different-loss-are-they-equiva | idAE6PYrHSeq8ZQzx | VIWEV4wIvSqsb6cD0 | 79,956,997 | Trigram Language Model :Two implementations give different loss, are they equivalent? | 0 | 80 | 1 | false | false | [
"machine-learning",
"deep-learning",
"pytorch",
"neural-network",
"cross-entropy"
] | 2026-06-12T08:56:44 | 2026-06-26T10:06:10 | Tilak Soni | false | CC BY-SA 4.0 | null | 32,828,070 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null |
79956866 | question | stackoverflow | 2026-08-03T01:26:21 | null | null | null | null | null | https://stackoverflow.com/questions/79956866/best-pre-trained-vision-model-for-multi-plant-disease-detection-in-async-web-bac | idAE6PYrHSeq8ZQzx | VIWEV4wIvSqsb6cD0 | 79,956,866 | Best pre-trained vision model for multi-plant disease detection in async web back-end | 0 | 75 | 0 | false | false | [
"tensorflow",
"machine-learning",
"nlp",
"artificial-intelligence",
"huggingface-transformers"
] | 2026-06-12T03:20:40 | 2026-06-12T04:27:18 | muhammad adnan suleiman | false | CC BY-SA 4.0 | null | 22,607,439 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null |
79956615 | question | stackoverflow | 2026-08-03T01:26:21 | null | null | null | null | null | https://stackoverflow.com/questions/79956615/why-is-it-so-difficult-to-train-an-accuracte-gan-model | idAE6PYrHSeq8ZQzx | VIWEV4wIvSqsb6cD0 | 79,956,615 | Why is it so difficult to train an accuracte GAN model? | 0 | 97 | 1 | true | false | [
"python",
"tensorflow",
"machine-learning",
"neural-network"
] | 2026-06-11T15:12:58 | 2026-06-12T14:03:03 | Sandesh Singh | false | CC BY-SA 4.0 | null | 32,826,848 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null |
79955889 | question | stackoverflow | 2026-08-03T01:26:21 | null | null | null | null | null | https://stackoverflow.com/questions/79955889/will-a-80-gb-gpu-and-a-48-gb-gpu-give-identical-results-on-an-open-source-text-t | idAE6PYrHSeq8ZQzx | VIWEV4wIvSqsb6cD0 | 79,955,889 | Will a 80 GB GPU and a 48 GB GPU give identical results on an open source text-to-video model for the same quantization and seed? | 1 | 106 | 2 | false | false | [
"machine-learning",
"deep-learning",
"artificial-intelligence"
] | 2026-06-10T06:41:09 | 2026-07-01T11:33:06 | Ayush | false | CC BY-SA 4.0 | null | 8,779,416 | 49 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null |
79953088 | question | stackoverflow | 2026-08-03T01:26:21 | null | null | null | null | null | https://stackoverflow.com/questions/79953088/what-should-i-focus-on | idAE6PYrHSeq8ZQzx | VIWEV4wIvSqsb6cD0 | 79,953,088 | What should I focus on? | 1 | 178 | 8 | true | false | [
"python",
"machine-learning",
"advice"
] | 2026-06-08T15:34:35 | 2026-06-17T21:32:16 | Shaurya Gupta | false | CC BY-SA 4.0 | null | 32,814,023 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null |
79952666 | question | stackoverflow | 2026-08-03T01:26:21 | null | null | null | null | null | https://stackoverflow.com/questions/79952666/how-to-save-a-colored-jpg-image-to-the-milvus-database | idAE6PYrHSeq8ZQzx | VIWEV4wIvSqsb6cD0 | 79,952,666 | How to save a colored JPG image to the Milvus database? | 1 | 104 | 7 | true | false | [
"php",
"machine-learning",
"milvus"
] | 2026-06-07T14:47:56 | 2026-06-07T16:12:51 | Richard | false | CC BY-SA 4.0 | null | 8,030,083 | 3 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null |
79952170 | question | stackoverflow | 2026-08-03T01:26:21 | null | null | null | null | null | https://stackoverflow.com/questions/79952170/what-is-the-practical-approach-to-become-an-ai-developer-to-build-ai-powered-app | idAE6PYrHSeq8ZQzx | VIWEV4wIvSqsb6cD0 | 79,952,170 | What is the practical approach to become an AI Developer to Build AI powered apps/products? | 2 | 60 | 0 | false | false | [
"machine-learning",
"deep-learning",
"artificial-intelligence"
] | 2026-06-06T05:03:26 | 2026-06-06T05:03:26 | Sai Teja Merugu | false | CC BY-SA 4.0 | null | 32,806,627 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null |
79949369 | question | stackoverflow | 2026-08-03T01:26:21 | null | null | null | null | null | https://stackoverflow.com/questions/79949369/writing-a-neural-network-which-can-have-an-arbitrary-number-of-hidden-layers-co | idAE6PYrHSeq8ZQzx | VIWEV4wIvSqsb6cD0 | 79,949,369 | Writing a Neural Network which can have an arbitrary number of hidden layers, could someone tell me if this is the best way to do it? | 0 | 145 | 4 | true | false | [
"python",
"numpy",
"machine-learning"
] | 2026-05-31T18:34:08 | 2026-06-29T07:34:37 | mbh16_x | false | CC BY-SA 4.0 | null | 13,425,268 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null |
79946943 | question | stackoverflow | 2026-08-03T01:26:21 | null | null | null | null | null | https://stackoverflow.com/questions/79946943/pycaret-3-4-0-and-scikit-learn-return-different-results | idAE6PYrHSeq8ZQzx | VIWEV4wIvSqsb6cD0 | 79,946,943 | PyCaret 3.4.0 and scikit-learn return different results | 0 | 105 | 1 | false | false | [
"python",
"machine-learning",
"scikit-learn",
"pycaret"
] | 2026-05-26T19:15:42 | 2026-05-28T08:55:34 | Guillermo Paz | false | CC BY-SA 4.0 | null | 23,788,189 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null |
79945508 | question | stackoverflow | 2026-08-03T01:26:21 | null | null | null | null | null | https://stackoverflow.com/questions/79945508/advice-on-dataset-choice-for-two-way-sign-language-app-in-flutter | idAE6PYrHSeq8ZQzx | VIWEV4wIvSqsb6cD0 | 79,945,508 | Advice on Dataset Choice for Two-Way Sign Language App in Flutter | 0 | 97 | 2 | false | false | [
"flutter",
"machine-learning",
"computer-vision",
"dataset",
"real-time"
] | 2026-05-23T06:27:42 | 2026-06-09T13:54:02 | zill | false | CC BY-SA 4.0 | null | 32,758,545 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null |
79945000 | question | stackoverflow | 2026-08-03T01:26:21 | null | null | null | null | null | https://stackoverflow.com/questions/79945000/rationale-for-standardscaler-over-minmaxscaler-in-spatiotemporal-tree-based-ense | idAE6PYrHSeq8ZQzx | VIWEV4wIvSqsb6cD0 | 79,945,000 | Rationale for StandardScaler over MinMaxScaler in spatiotemporal tree-based ensemble models with SHAP interpretability | 0 | 62 | 1 | false | false | [
"python",
"machine-learning",
"scikit-learn",
"xgboost",
"lightgbm"
] | 2026-05-22T05:45:07 | 2026-05-22T16:48:24 | Ashikur Rahman | false | CC BY-SA 4.0 | null | 32,512,335 | 11 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null |
79944099 | question | stackoverflow | 2026-08-03T01:26:21 | null | null | null | null | null | https://stackoverflow.com/questions/79944099/training-own-recommendation-model-for-diploma-thesis | idAE6PYrHSeq8ZQzx | VIWEV4wIvSqsb6cD0 | 79,944,099 | Training own recommendation model for diploma thesis | 0 | 78 | 4 | true | false | [
"machine-learning",
"artificial-intelligence",
"recommendation-engine"
] | 2026-05-20T13:55:42 | 2026-05-28T01:15:50 | danil-losev | false | CC BY-SA 4.0 | null | 32,717,151 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null |
79941687 | question | stackoverflow | 2026-08-03T01:26:21 | null | null | null | null | null | https://stackoverflow.com/questions/79941687/improving-a-convolutional-neural-network-for-simulating-a-fabric | idAE6PYrHSeq8ZQzx | VIWEV4wIvSqsb6cD0 | 79,941,687 | Improving a Convolutional Neural Network for simulating a fabric | 3 | 124 | 2 | true | false | [
"python",
"machine-learning",
"pytorch",
"conv-neural-network",
"softbody"
] | 2026-05-15T10:05:20 | 2026-05-16T11:17:09 | hugon5 | false | CC BY-SA 4.0 | null | 19,015,267 | 15 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null |
79941323 | question | stackoverflow | 2026-08-03T01:26:21 | null | null | null | null | null | https://stackoverflow.com/questions/79941323/ai-ml-student-with-projects-but-weak-fundamentals-because-of-heavy-llm-usage-h | idAE6PYrHSeq8ZQzx | VIWEV4wIvSqsb6cD0 | 79,941,323 | AI/ML student with projects but weak fundamentals because of heavy LLM usage — how should I realistically improve for internships? | 2 | 186 | 3 | true | false | [
"python",
"machine-learning",
"architecture",
"artificial-intelligence"
] | 2026-05-14T17:45:30 | 2026-05-16T06:16:29 | Alok Singh | false | CC BY-SA 4.0 | null | 22,838,047 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null |
79940924 | question | stackoverflow | 2026-08-03T01:26:21 | null | null | null | null | null | https://stackoverflow.com/questions/79940924/best-practices-for-image-annotation-consistency-in-object-detection-projects | idAE6PYrHSeq8ZQzx | VIWEV4wIvSqsb6cD0 | 79,940,924 | Best practices for image annotation consistency in object detection projects | 0 | 72 | 0 | false | false | [
"machine-learning",
"image-processing",
"deep-learning",
"computer-vision",
"yolo"
] | 2026-05-14T06:58:06 | 2026-05-14T06:58:06 | Snehal Joshi | false | CC BY-SA 4.0 | null | 24,804,622 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null |
79939816 | question | stackoverflow | 2026-08-03T01:26:21 | null | null | null | null | null | https://stackoverflow.com/questions/79939816/how-to-evaluate-my-rag-system-using-local-free-tier-api-model | idAE6PYrHSeq8ZQzx | VIWEV4wIvSqsb6cD0 | 79,939,816 | How to Evaluate my RAG System using Local / free tier API model | 1 | 145 | 1 | true | false | [
"machine-learning",
"deep-learning",
"artificial-intelligence",
"evaluation",
"rag"
] | 2026-05-12T08:30:23 | 2026-05-12T09:18:41 | Ricky Raj Sahani | false | CC BY-SA 4.0 | null | 32,085,037 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null |
79939212 | question | stackoverflow | 2026-08-03T01:26:21 | null | null | null | null | null | https://stackoverflow.com/questions/79939212/best-open-source-models-or-libraries-for-accurate-pdf-data-extraction | idAE6PYrHSeq8ZQzx | VIWEV4wIvSqsb6cD0 | 79,939,212 | Best Open Source Models or Libraries for Accurate PDF Data Extraction? | 1 | 813 | 5 | true | false | [
"python",
"machine-learning",
"pdf",
"ocr",
"python-tesseract"
] | 2026-05-11T07:51:35 | 2026-05-12T07:23:09 | Pugazhendhi M | false | CC BY-SA 4.0 | null | 26,732,568 | 83 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null |
79937962 | question | stackoverflow | 2026-08-03T01:26:21 | null | null | null | null | null | https://stackoverflow.com/questions/79937962/cosine-but-with-little-distance-duplication-at-radius-neighbors | idAE6PYrHSeq8ZQzx | VIWEV4wIvSqsb6cD0 | 79,937,962 | cosine but with little distance duplication at radius_neighbors | 0 | 110 | 1 | false | false | [
"python",
"machine-learning",
"metrics",
"nearest-neighbor",
"cosine-similarity"
] | 2026-05-08T07:40:23 | 2026-05-28T12:59:10 | Fia Shofia Zahra | false | CC BY-SA 4.0 | null | 31,176,782 | 11 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null |
79937300 | question | stackoverflow | 2026-08-03T01:26:21 | null | null | null | null | null | https://stackoverflow.com/questions/79937300/real-time-image-classification-task | idAE6PYrHSeq8ZQzx | VIWEV4wIvSqsb6cD0 | 79,937,300 | Real Time Image Classification Task | 0 | 93 | 2 | false | false | [
"machine-learning",
"computer-vision",
"classification",
"image-classification"
] | 2026-05-07T01:17:20 | 2026-05-30T18:03:26 | Johan George | false | CC BY-SA 4.0 | null | 32,701,808 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null |
79935823 | question | stackoverflow | 2026-08-03T01:26:21 | null | null | null | null | null | https://stackoverflow.com/questions/79935823/project-level-recursive-monthly-forecasting-even-with-dynamic-anchoring-aggreg | idAE6PYrHSeq8ZQzx | VIWEV4wIvSqsb6cD0 | 79,935,823 | Project-level recursive monthly forecasting: even with dynamic anchoring, aggregate portfolio forecast drops unrealistically | 1 | 153 | 1 | false | false | [
"machine-learning",
"recursion",
"time-series",
"xgboost",
"forecasting"
] | 2026-05-04T11:52:15 | 2026-07-03T00:46:09 | 10969_ shirazu_ | false | CC BY-SA 4.0 | null | 17,428,892 | 53 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null |
79935400 | question | stackoverflow | 2026-08-03T01:26:21 | null | null | null | null | null | https://stackoverflow.com/questions/79935400/kdtree-2d-index-searching-based-on-pivot-table-vector-error | idAE6PYrHSeq8ZQzx | VIWEV4wIvSqsb6cD0 | 79,935,400 | KDTree 2d index searching based on pivot_table vector error | 1 | 110 | 1 | true | false | [
"python",
"numpy",
"machine-learning",
"scikit-learn",
"pca"
] | 2026-05-03T11:19:05 | 2026-05-22T23:16:32 | Fia Shofia Zahra | false | CC BY-SA 4.0 | null | 31,176,782 | 11 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null |
79934477 | question | stackoverflow | 2026-08-03T01:26:21 | null | null | null | null | null | https://stackoverflow.com/questions/79934477/do-apache-2-0-licensed-segmentation-models-e-g-segnext-pp-liteseg-include-c | idAE6PYrHSeq8ZQzx | VIWEV4wIvSqsb6cD0 | 79,934,477 | Do Apache 2.0 licensed segmentation models (e.g., SegNeXt, PP‑LiteSeg) include commercial‑free pretrained weights? | 1 | 64 | 1 | false | false | [
"machine-learning",
"computer-vision",
"apache2",
"licensing",
"semantic-segmentation"
] | 2026-05-01T03:57:04 | 2026-05-01T07:52:45 | Nimesh Lakshan | false | CC BY-SA 4.0 | null | 17,441,350 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null |
79934236 | question | stackoverflow | 2026-08-03T01:26:21 | null | null | null | null | null | https://stackoverflow.com/questions/79934236/suggentions-on-open-model-to-implement-llm-text-watermarking | idAE6PYrHSeq8ZQzx | VIWEV4wIvSqsb6cD0 | 79,934,236 | Suggentions on open-model to implement LLM text watermarking | 0 | 94 | 0 | false | false | [
"machine-learning",
"artificial-intelligence",
"large-language-model",
"semantics",
"watermark"
] | 2026-04-30T12:56:56 | 2026-04-30T14:29:38 | Hadiya Kousar | false | CC BY-SA 4.0 | null | 32,680,720 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null |
79934070 | question | stackoverflow | 2026-08-03T01:26:21 | null | null | null | null | null | https://stackoverflow.com/questions/79934070/why-the-r2-value-of-test-data-is-significantly-different-from-r2-value-of-trai | idAE6PYrHSeq8ZQzx | VIWEV4wIvSqsb6cD0 | 79,934,070 | Why the R^2 value of test data is significantly different from R^2 value of train data? | 1 | 91 | 4 | false | false | [
"python",
"machine-learning"
] | 2026-04-30T07:29:07 | 2026-05-01T08:01:34 | Abir Kar | false | CC BY-SA 4.0 | null | 24,659,613 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null |
79931666 | question | stackoverflow | 2026-08-03T01:26:21 | null | null | null | null | null | https://stackoverflow.com/questions/79931666/java-python-mern-ml-libraries | idAE6PYrHSeq8ZQzx | VIWEV4wIvSqsb6cD0 | 79,931,666 | Java , Python , MERN & ML Libraries | 0 | 162 | 0 | false | false | [
"java",
"python-3.x",
"selenium-webdriver",
"machine-learning"
] | 2026-04-25T08:13:09 | 2026-05-04T14:45:55 | Dhaval Kanvinde | false | CC BY-SA 4.0 | null | 32,659,783 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null |
79930771 | question | stackoverflow | 2026-08-03T01:26:21 | null | null | null | null | null | https://stackoverflow.com/questions/79930771/ai-ml-roadmap-for-a-beginner-aiming-for-a-remote-job | idAE6PYrHSeq8ZQzx | VIWEV4wIvSqsb6cD0 | 79,930,771 | AI ML roadmap for a beginner aiming for a remote job | 1 | 160 | 2 | true | false | [
"python",
"machine-learning",
"artificial-intelligence",
"computer-science",
"large-language-model"
] | 2026-04-23T14:15:56 | 2026-05-11T13:52:35 | Ram Nikhil | false | CC BY-SA 4.0 | null | 32,653,877 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null |
79928380 | question | stackoverflow | 2026-08-03T01:26:21 | null | null | null | null | null | https://stackoverflow.com/questions/79928380/handling-imbalanced-categorical-classification-best-approach-and-evaluation-me | idAE6PYrHSeq8ZQzx | VIWEV4wIvSqsb6cD0 | 79,928,380 | Handling imbalanced categorical classification – best approach and evaluation metrics? | 1 | 100 | 2 | true | false | [
"machine-learning",
"classification",
"imbalanced-data"
] | 2026-04-19T17:14:01 | 2026-04-26T03:17:05 | Dinithi | false | CC BY-SA 4.0 | null | 32,546,073 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null |
79928119 | question | stackoverflow | 2026-08-03T01:26:21 | null | null | null | null | null | https://stackoverflow.com/questions/79928119/small-dataset-600-images-for-facial-emotion-detection-using-yolov11-roboflo | idAE6PYrHSeq8ZQzx | VIWEV4wIvSqsb6cD0 | 79,928,119 | Small dataset (~600 images) for facial emotion detection using YOLOv11 + Roboflow — how to collect better training images? | 0 | 111 | 2 | false | false | [
"python",
"machine-learning",
"computer-vision",
"yolo",
"roboflow"
] | 2026-04-19T00:14:38 | 2026-04-19T15:10:12 | Aneeq Shakeel | false | CC BY-SA 4.0 | null | 32,608,370 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null |
79926858 | question | stackoverflow | 2026-08-03T01:26:21 | null | null | null | null | null | https://stackoverflow.com/questions/79926858/how-to-get-good-at-feature-engineering-in-building-machine-learning-projects | idAE6PYrHSeq8ZQzx | VIWEV4wIvSqsb6cD0 | 79,926,858 | How to get good at feature engineering in building machine learning projects | 1 | 117 | 1 | false | false | [
"machine-learning",
"feature-engineering"
] | 2026-04-16T18:21:51 | 2026-05-20T12:53:14 | Revanth Kovvuri | false | CC BY-SA 4.0 | null | 30,419,293 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null |
79926835 | question | stackoverflow | 2026-08-03T01:26:21 | null | null | null | null | null | https://stackoverflow.com/questions/79926835/mat1-and-mat2-shapes-cannot-be-multiplied-but-shape-doesnt-actually-match-th | idAE6PYrHSeq8ZQzx | VIWEV4wIvSqsb6cD0 | 79,926,835 | 'mat1 and mat2 shapes cannot be multiplied', but shape doesn't actually match the data? | 0 | 129 | 1 | true | false | [
"python",
"machine-learning",
"pytorch"
] | 2026-04-16T17:26:43 | 2026-04-19T14:03:19 | Tessa | true | null | null | 6,832,623 | 89 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null |
79926183 | question | stackoverflow | 2026-08-03T01:26:21 | null | null | null | null | null | https://stackoverflow.com/questions/79926183/pytorch-training-issue-with-efficientnetb3-validation-accuracy-plateu | idAE6PYrHSeq8ZQzx | VIWEV4wIvSqsb6cD0 | 79,926,183 | PyTorch training issue with EfficientNetB3 | Validation Accuracy plateu | 0 | 202 | 8 | true | false | [
"python",
"machine-learning",
"pytorch"
] | 2026-04-15T17:22:24 | 2026-04-23T09:39:32 | Marco | false | CC BY-SA 4.0 | null | 21,141,879 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null |
79925681 | question | stackoverflow | 2026-08-03T01:26:21 | null | null | null | null | null | https://stackoverflow.com/questions/79925681/requesting-an-opinion-about-an-extreme-optimization-pipeline-for-a-yolov8-model | idAE6PYrHSeq8ZQzx | VIWEV4wIvSqsb6cD0 | 79,925,681 | Requesting an opinion about an extreme optimization pipeline for a YOLOv8 model | 0 | 62 | 0 | false | false | [
"machine-learning",
"optimization",
"computer-vision",
"yolo",
"yolov8"
] | 2026-04-14T22:46:03 | 2026-04-14T22:57:36 | Bendouba Abdessalem | false | CC BY-SA 4.0 | null | 21,087,688 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null |
79925354 | question | stackoverflow | 2026-08-03T01:26:21 | null | null | null | null | null | https://stackoverflow.com/questions/79925354/what-are-the-key-libraries-and-documentation-for-implementing-anomaly-detection | idAE6PYrHSeq8ZQzx | VIWEV4wIvSqsb6cD0 | 79,925,354 | What are the key libraries and documentation for implementing anomaly detection in Python? | 0 | 212 | 5 | true | false | [
"python",
"machine-learning",
"scikit-learn",
"anomaly-detection"
] | 2026-04-14T12:26:29 | 2026-04-20T11:28:27 | hosna mozafari | false | CC BY-SA 4.0 | null | 19,049,442 | 11 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null |
79923897 | question | stackoverflow | 2026-08-03T01:26:21 | null | null | null | null | null | https://stackoverflow.com/questions/79923897/i-want-to-create-2-gems-in-gemini-please-suggest-me-the-most-suitable-prompts | idAE6PYrHSeq8ZQzx | VIWEV4wIvSqsb6cD0 | 79,923,897 | I want to create 2 gems in Gemini , please suggest me the most suitable prompts | 1 | 167 | 5 | true | false | [
"python",
"machine-learning",
"dynamic-programming",
"greedy"
] | 2026-04-11T07:00:36 | 2026-04-14T13:35:49 | Harsh Deshpande | false | CC BY-SA 4.0 | null | 32,245,083 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null |
79923880 | question | stackoverflow | 2026-08-03T01:26:21 | null | null | null | null | null | https://stackoverflow.com/questions/79923880/i-want-to-create-two-gems-please-suggest-the-most-suitable-prompts | idAE6PYrHSeq8ZQzx | VIWEV4wIvSqsb6cD0 | 79,923,880 | I want to create two Gems - please suggest the most suitable prompts | 0 | 134 | 3 | true | false | [
"python",
"machine-learning",
"dynamic-programming"
] | 2026-04-11T05:29:15 | 2026-04-11T10:34:20 | Harsh Deshpande | false | CC BY-SA 4.0 | null | 32,245,083 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null |
79923048 | question | stackoverflow | 2026-08-03T01:26:21 | null | null | null | null | null | https://stackoverflow.com/questions/79923048/a-question-regarding-machine-learning-linear-regression-model-is-it-possible-t | idAE6PYrHSeq8ZQzx | VIWEV4wIvSqsb6cD0 | 79,923,048 | A question regarding Machine learning linear regression model - Is it possible to create a Linear Regression model with a dataset of shape(505, 1)) | 1 | 97 | 4 | false | false | [
"machine-learning",
"linear-regression"
] | 2026-04-09T17:56:40 | 2026-05-12T12:00:38 | gitstash | false | CC BY-SA 4.0 | null | 23,247,438 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null |
79922326 | question | stackoverflow | 2026-08-03T01:26:21 | null | null | null | null | null | https://stackoverflow.com/questions/79922326/how-to-make-a-2-label-confusion-matrix-and-exporting-into-a-json-file | idAE6PYrHSeq8ZQzx | VIWEV4wIvSqsb6cD0 | 79,922,326 | How to make a 2 Label Confusion Matrix and exporting into a json file? | 0 | 69 | 1 | true | false | [
"python",
"machine-learning",
"scikit-learn",
"pytorch"
] | 2026-04-08T15:55:08 | 2026-04-08T16:12:01 | traq | false | CC BY-SA 4.0 | null | 19,827,554 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null |
79920811 | question | stackoverflow | 2026-08-03T01:26:21 | null | null | null | null | null | https://stackoverflow.com/questions/79920811/best-pure-net-machine-learning-libraries-for-iot | idAE6PYrHSeq8ZQzx | VIWEV4wIvSqsb6cD0 | 79,920,811 | best pure .net machine learning libraries for IoT | 0 | 54 | 1 | false | false | [
".net",
"machine-learning"
] | 2026-04-06T08:35:59 | 2026-04-18T09:58:08 | Macko | false | CC BY-SA 4.0 | null | 4,983,833 | 986 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null |
79920330 | question | stackoverflow | 2026-08-03T01:26:21 | null | null | null | null | null | https://stackoverflow.com/questions/79920330/can-i-make-a-neural-network-and-simply-ml-model-using-a-smartphone-aint-have | idAE6PYrHSeq8ZQzx | VIWEV4wIvSqsb6cD0 | 79,920,330 | Can i make a Neural network And simply ML Model using a smartphone? (Ain't Have Pc/Laptop Btw) | 2 | 119 | 1 | false | false | [
"android",
"numpy",
"tensorflow",
"machine-learning",
"artificial-intelligence"
] | 2026-04-05T03:17:08 | 2026-04-05T03:26:15 | F4th1Q | false | CC BY-SA 4.0 | null | 30,674,014 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null |
79919607 | question | stackoverflow | 2026-08-03T01:26:21 | null | null | null | null | null | https://stackoverflow.com/questions/79919607/can-we-clear-noise-on-sensor-data-for-anomaly-detection | idAE6PYrHSeq8ZQzx | VIWEV4wIvSqsb6cD0 | 79,919,607 | can we clear noise on sensor data for anomaly detection? | 0 | 51 | 0 | false | false | [
"machine-learning",
"deep-learning",
"time-series",
"shap",
"anomaly-detection"
] | 2026-04-03T12:33:31 | 2026-04-03T12:33:31 | Yash Gajjar | false | CC BY-SA 4.0 | null | 32,567,804 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null |
79918983 | question | stackoverflow | 2026-08-03T01:26:21 | null | null | null | null | null | https://stackoverflow.com/questions/79918983/how-to-extract-rooms-and-dimensions-from-mep-floor-plan-drawings-using-ai-or-com | idAE6PYrHSeq8ZQzx | VIWEV4wIvSqsb6cD0 | 79,918,983 | How to extract rooms and dimensions from MEP/floor plan drawings using AI or computer vision? | 0 | 190 | 1 | false | false | [
"opencv",
"machine-learning",
"image-processing",
"computer-vision",
"ocr"
] | 2026-04-02T11:16:12 | 2026-04-02T16:04:59 | Narmeen Zafar | false | CC BY-SA 4.0 | null | 32,575,569 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null |
79918184 | question | stackoverflow | 2026-08-03T01:26:21 | null | null | null | null | null | https://stackoverflow.com/questions/79918184/on-running-my-flutter-app-which-uses-llama-cpp-dart-package-it-is-showing-error | idAE6PYrHSeq8ZQzx | VIWEV4wIvSqsb6cD0 | 79,918,184 | On running my flutter app which uses llama_cpp_dart package. It is showing error loading model | 0 | 148 | 0 | false | false | [
"dart",
"machine-learning",
"flutter-dependencies",
"llamacpp",
"static-quantization"
] | 2026-04-01T07:00:24 | 2026-04-19T21:21:50 | Kevin L | false | CC BY-SA 4.0 | null | 30,565,172 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null |
79917042 | question | stackoverflow | 2026-08-03T01:26:21 | null | null | null | null | null | https://stackoverflow.com/questions/79917042/best-approach-to-generate-embeddings-for-10k-documents-in-spring-boot-opensea | idAE6PYrHSeq8ZQzx | VIWEV4wIvSqsb6cD0 | 79,917,042 | Best approach to generate embeddings for 10K+ documents in Spring Boot + OpenSearch (performance issue) | 0 | 98 | 0 | false | false | [
"spring-boot",
"machine-learning",
"nlp",
"opensearch",
"jmix"
] | 2026-03-30T10:00:38 | 2026-04-09T18:48:49 | Naveen | false | CC BY-SA 4.0 | null | 32,562,591 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null | null |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.