Ask HN: How do you cope with existential threat regarding career?

42 points by throwaway1183 ↗ HN
With the recent development in AI, for example stable diffusion, my hobby as an artist has been almost non-existent. No matter how much time I spend on my art, I will not be able to compete with AI models. These things are not going to slow down. Often times, I feel like the process of using AI-generated art and augmenting it with my own projects is more productive than creating my own art from scratch.

Adding ChatGPT to the equation, the threat has doubled. It has just started, yet it can do remarkable things. This is like the AlexNet moment in the field of computer vision. There was a time before AlexNet. Now, most research and implementation involved using deep learning in one form or another. I have been in this field for a long time, but I don't have any substantial work to show for it. I feel like my effort wouldn't make a difference. As long as I am improving, these models are able to improve at a faster rate. Of course, I cannot compete with the top researchers at these big labs. So whatever I do will be insignificant.

I have been trying to change my field from AI to something else, but it feels like that would be a wrong decision. However, just being in this field would make the problem even worse because I would never be as competent as the quality demands. The skills that I learn from AI quickly become outdated compared to other skills like management and software engineering. Whenever you involve humans in the equation, you have to learn different things surrounding it. But if you are just doing AI research for a long time, all you get is the ability to read papers and perhaps implement them. It's always a rat race where you are constantly chasing something new. I feel that doing a regular software engineering job would be much easier and exciting because it's just a job and you can have other hobbies. But with AI, you have to read relevant papers on your spare time just to keep up. The innovation and progress are so fast that it's almost impossible to catch up.

I feel like my career has ended before it even started.

49 comments

[ 6.3 ms ] story [ 109 ms ] thread
Get certs in Machine learning, sleepwalk into quarter million plus jobs
You need a PhD from a top university for that. I am feeling hopeless before even getting a PhD. I don't even have the energy or resources for that. It takes an additional five years of hard work which could be invested in learning actual skills that scale. I feel like computer science doesn't scale like engineering. Therefore, I really need a good perspective on this.
When a two-week MOOC became not enough in our industry?
There's a big difference between ML Eng jobs and ML Research jobs. Research, yeah you'd need a top PhD and many difficult years of study. Eng, far more attainable, but IIUC it's not exactly going to feel like you're working on some crazy cutting edge tech, you'll mostly be cleaning data and tuning pipelines.
Arguably, skill wise things never really stop being a race in general.

150 years ago, decent literacy alone made you managerial material. 50 years ago, people were in the middle class screwing nuts on bolts. Today, literacy alone qualifies you for nothing and if you are illiterate, your prospects are dim indeed. Manual skill manufacturing is a minimum wage (or below minimum wage) job offshore. Typing used to be a middle class skill for women.

Imagine being a dev 20 years ago. I think many would be scared of not having work in a world where you can stand up beautiful reactive sites and deploy them worldwide in a day. AWS, React, GitHub actions, etc. All could be reasons for predicting mass unemployment.

Instead, there are more of us than ever.

From a perspective of an individual, what defines quality now? Any attempt to stand out from the crowd requires significant energy. Given the nature of the industry, I fear that the experience I gain cannot be transferred for actual value. I feel like the bar is very high for me and I want to switch to other fields, but there is no way because I do not have relevant experience in other fields.
Same problem here. I'm siloed and no one wants to talk to me about anything else that's not basically the same thing. Part of the problem is I have lots of knowledge and experience in many things, just not in a way that can be neatly packaged in a format I can put on a resume.
I don’t get it. You don’t need to be better than everybody else. You don’t need to be better than AI tools. You just need to be better than the colleagues you have around. Become that person everyone in the “remote” office goes to to ask questions, resolve problems. Be that person who brings value not just by implementing algorithms, but by being an essential member of a team.
> Imagine being a dev 20 years ago. I think many would be scared of not having work in a world where you can stand up beautiful reactive sites and deploy them worldwide in a day. AWS, React, GitHub actions, etc. All could be reasons for predicting mass unemployment.

> Instead, there are more of us than ever.

while I hate to quote CGP Grey (what a hack), he's got a pretty good take on this

https://youtu.be/7Pq-S557XQU?t=212

> I feel like the process of using AI-generated art and augmenting it with my own projects is more productive than creating my own art from scratch.

There are two roads: doing what you love and doing something of value (where value is defined as what other people are willing to pay for). Hopefully, those can converge to a degree, but they don't have to. I love making art, but that doesn't pay for me, so I do other things to earn money --- that supports the art. Being able to do more cheaper is creating more value.

Given your skills in art and computers, you could look at a career in UX. It both pays and can be art. It is something of value that can then support your other more personally fulfilling endeavors. Or simply get good at being a digital artist that takes the best AI generated art, fixes it, and gets it out the door :-)

I guess it depends on what your art or career goals are, but assuming you don't mean digital illustration, people do value real/physical art objects like painting and sculpture. I don't know if that pays the bills, but that is harder to automate away with clicks on some webpage.
Unless we get to a point where entire codebases can be maintained and extended with code that adheres to functional requirements and is free of bugs, there’s still some room for humans.

Consider highly contextual problems: today I faced an issue where some updated code could have negative side-effects given certain database state. A regular set of tests did not catch this issue – only my knowledge of the possible states did. I doubt an AI will be able to solve such problems any time soon.

I agree that building systems that can keep track of large-scale programs seems very difficult, and the current LLMs don’t seem up to the task. However, I wonder whether we can leverage the ability of LLMs to understand short code snippets to inform higher-level static analysis. I think we may be able to generate high-level models of codebases using the intuition of LLMs, that we could then use to run higher-level simulations to detect possible bugs.

It seems like it could be possible, but soon? I agree, probably not.

I spent months last year building algorithms to segment Chinese sentences into individual words (Chinese has no spaces) and disambiguate the meaning of the words (Chinese words often have many different translations). ChatGPT solved this problem practically as well as I have zero-shot. Here's a very difficult example that's not exactly correct, but better than what I could produce:

> In the Chinese sentence "这次公司裁员裁不到我头上." with the translation "I won't be fired during this round of layoffs.", list all the words separately with their individual word translations

这次 - this time, 公司 - company, 裁员 - layoffs, 裁不到 - won't be fired, 我 - I, 头上 - during (literal translation: on top of the head)

I knew this day would be coming but since nothing was available at the time I had to try an implement a hodge-podge of algorithms to get the job done. But honestly, if I can integrate ChatGPT instead I'm kinda glad! Thousands of lines of code gone, a much simplified pipeline, and I can focus on higher level tasks instead. What's important is the problem I'm trying to solve.

But it does show that a lot of NLP and CV tasks will be as simple as explaining what you want, and the result will mostly be good enough. But there will still be value in solving more unique problems, or knowing the best way to mold problems such as they fit the foundational models available, and knowing how to build on top of them.

To keep your sanity, my advice is have some problems in mind that you're passionate about solving as well so that you diversity your mental investment.

I was extremely passionate about text-to-image, but now that it is solved, I am experiencing a crisis. I have lost what I have been pursuing for a long time and I am now unsure of my skills. I fear that I will not be able to find a job because I only have internship experience and no real job experience. I was hopeful before pursuing this Master's degree, but now I am not so sure.
My intention was more picking a problem like "solve climate change" rather than "solve image segmentation". For me that's the space of human learning, language learning and Chinese. But for my day job it's more general AI. So, keep one eye on the tech for its own sake, but the other eye on what real-world problems you actually want to solve with it.
Wait what?

When I used to live overseas nearly a decade ago I was able to leverage a fairly accurate Chinese tokenizer [I don't remember the name] but there are definitely options out there that existed for far longer than chat GPT.

This one in particular I've had decent success with for 繁體漢字 and you could use a one to one dictionary to convert simplified to traditional: https://github.com/APCLab/jieba-tw

Hell, with the example you just provided you could probably just look for longest words found in CC-CEDICT.

That is indeed the 80% solution, but it's really not that simple to get good results. First of all, Jieba as a segmenter has a very high error rate, so I switched to transformer based one which is better, but still quite bad (it's a hard problem). You can mitigate some of this by joining long words that are in CEDICT (but do not cross other word borders!), but this often backfires.

As for CEDICT entries, very often the entry translation does not exist in the sentence translation. Sometimes it exists with a morphological change like "fire -> fired", sometimes more difficult "go -> went". Sometimes it's a synonym which you may be able to find in a thesaurus, maybe not. The thesaurus is also incomplete or has errors. If you use a synonym you often get false positives from completely unrelated hanzi's in the sentence. Sometimes the CEDICT word has 8 different entries and some of them are rare meanings with low frequency words that match many sentences but really shouldn't, how do you detect that? Entries are not ordered by importance. Weight by specificity? Ok, but each entry has an average of 5 words, what if one entry matches 4 high frequency (low information) words but another matches 1 low frequency word? What if multiple words in the sentence has overlapping target words in the translation, which is which?

And now you have words with different pinyin readings, so multiple completely different entries in CEDICT. So you try to first classify the pinyin (or the other way around, use translation correlation to classify pinyin?). But if the initial segmentation is bad, you've got garbage in, garbage out anyway.

Then you have lots of two-character Chinese words where one is regularly omitted, like in my example if you look up 裁 in CEDICT you get "cut", but it's referring to 裁员 which is more like layoff or fired. "Cut" may be acceptable here, but there are many cases where if you do this you get completely nonsensical translations.

Now you need to match names as well. What if names are not capitalized? If they are capitalized, should you match them in order they're mentioned if there are multiple names in the sentence? Ok, so most Chinese names will be in some form of romanization, so you look for something that looks like the Pinyin of the word. Oh, but sometimes it's Wade-Giles isn't it? Oh, and because the translation you have comes from machine translation, now sometimes you get Korean or Japanese names for some reason, try and match those too?

In order to get more variety of word translations in context, I worked out something similar, where I give a machine translator the text "你好吗, 1. 你 2. 好 3. 吗", and often it will give in-context translations that are better, but often fails miserably as well. Now you've got to try to combine these outputs with CEDICT, and perhaps multiple sentence translations (human + machine?) to get the best possible result.

I also tried joint optimization over segmentation, pinyin and word disambiguation, by maximizing overlap and low frequency mappings (high information), but never managed to get it working well enough.

This is just a third of the problems and edge-cases you hit when trying to do this, I hope I've illustrated how much of a mess this becomes. A simple solution might work well enough for personal use as in your case, but I'm running through the scripts of TV-shows and displaying intelligent subtitles, so every error is quite jarring to the end-user. So being able to replace it with a ChatGPT prompt is quite the improvement! Because honestly, doing all this manual algorithm work can be an extremely frustrating process :)

(comment deleted)
Treat ChatGPT like an extremely knowledgeable junior who has read everything on the internet, but simultaneously doesn’t really understand logic.

You can leverage this for your own productivity. Ask your “junior” to generate sample code for an API you don’t quite remember. Ask it to generate some bash scripts you’ve been putting off. Review its output for correctness and go from there.

It’s an incredible productivity boost for a senior doing the integrating. It’s also no replacement for someone with immense domain experience doing the integrating…

This seems accurate, I was super impressed with it, but I can't picture it doing something like: "Make uploading images more intuitive for users" anytime soon. It is super useful for generating boilerplate for any kind of pure function you might need.
This seems accurate but is pretty bleak for anyone who is a "junior" themselves. I just broke into a "real" SRE role after being a "unix admin" and incident manager for my whole career. My actual software engineering skills are therefore pretty raw. I'm hoping that I will be able to sneak in as one of the last generations of "juniors" that don't have to meaningfully compete with large language models.
(comment deleted)
I have been gathering experience in computer vision, graphics, and natural language processing to break into the tech industry as a junior research engineer rather than a research scientist. However, with recent advancements in technology, I feel like I have no place in the field anymore. I have lost all of my curiosity and inner drive. It feels like I was just about to start my career, but now I am not sure what to do. I want to switch fields, but I am worried about all the time and effort I invested in learning these models and their implementation. If I had invested that same energy in a different field, I would have more reliable experience and skills. All I have now is pre-historic knowledge. And if I were to catch up now just because I am interested, by the time I do, the goal line will have moved further away. It's a difficult and frustrating situation to be in.
Don't be too discouraged. I'm trying not to be, and one thing I have definitely noticed in my career in corporate jobs is this: Just because a technology exists that could do a job does NOT mean that anyone in the company will implement it in a way that actually replaces the humans doing it. A startup may avoid a lot of work (and therefore labor expense) by being smart and nimble about technology, but established companies rarely do. As an example, most big companies still run multiple Exchange servers in 2022 (the multiple part is usually related to acquisitions), while a startup started in 2022 would of course never dream of doing so, since it would be madness. There are a lot of jobs out there that are the equivalent of running an on-prem Exchange server. They aren't glamorous but they will keep you fed and housed.

Also, there will likely be plenty of work in the coming decade unwinding half-baked attempts to integrate large language models into business processes where it doesn't ultimately make sense and is a net negative. Many of these negative-value projects are probably being conceived at this very moment.

All is not hopeless.

(comment deleted)
This gives some hope! I want to learn that skill that is equivalent to "managing these exchange servers" that might actually last throughout the career. This "latest and greatest" hype chasing has seriously burnt me out.
Something to think about btw: a lot of big companies have a _ton_ of proprietary, internal complexity that is not exposed to the public and therefore cannot be assisted by these general purpose LLM’s.

Seems a bit strange but being a “Company Man” might actually bring a new degree of job security…

Another thought: perhaps LLMs will "commoditize the complement" of lots of IT work. I imagine lots of CoPilot-generated code will be deployed by naive people and organizations without proper "IT 101" stuff like backups, RBAC, PCI/SOX/GDPR compliance, etc. It might INCREASE the demand for some types of IT talent.
I unfortunately agree with the sentiment, and agree it’s quite scary if this is how you bring food home and don’t already have enough (what is enough?) experience.

Fwiw I’m facing this in a hobby where I very much am a “junior”. Currently trying to decide if it’s worth continuing building the skills to create from scratch rather than just leveraging ML and being an “editor”.

I think I’ve decided to continue building the skills. Editing/reviewing is easier if you can create as well and this is a hobby I enjoy after all.

Also there has to be some light at the end of the tunnel right? If we kill the process via which juniors grow, we eventually kill the industry…

GPT-3.5 is an extremely knowledgeable junior who will never grow past entry-level skills. Which is something of very little value to tech companies. There's a reason why entry-level positions are non-terminal - you must either be promoted into a mid-level engineer or eventually many companies will ask you to leave.

I wouldn't worry - much less have existential dread - that GPT-3/3.5 will replace a significant portion of engineering jobs. If AI technology continues to evolve as it has in the last 30 months, then perhaps we can start worrying in a few years. Now there is very little overlap between what GPT-3.5 produces and what engineers do day-to-day.

What ChatGPT could maybe replace is a need for an engineer in a company that barely needs one. Perhaps if a company needs to write a few bash scripts a year. But even with that, there would be luck involved and such a company would be better off hiring a contractor. GPT-3.5 does produce some fantastic results, but not consistently. It's a little bit better in low-level implementations and not that good with implementations from non-technical descriptions. And then there's all the work engineers need to do adjacent to writing code that ChatGPT has no means to do.

All in all, I believe that these models look like they could replace engineers only until one gets a bit more experience with them. They are amazing works of engineering and they are fantastically capable in some areas like text synthesis, but it's very difficult to see a model replacing, let's say, anyone on my team of engineers in a tech company.

cinq, that opinion shows a real naivete and a spectacular lack of vision.

Promoting the idea that it will happen slowly so don't worry is the equivalent of burying your head in the sand until its too late to do anything.

How long ago was it that people said object detection wouldn't be possible, or that realistic fakes couldn't be made, or super-resolution "enhance" was not possible.

The rate of change of these things is exponential, in one direction, and people are notoriously bad at understanding what that means or entails because very few people deal with exponentials on a regular basis.

If the gap between abilities is even near close now, it will far exceed our abilities in a far faster time than you would ever think possible because humans in general are bad at eyeballing exponential relationships.

You already have AI designing machines and structures that exceed the engineering specifications of what we are capable of creating using 3d printers. (SOTA, State of the Art).

I wouldn't call those feats junior level.

I'm a software engineer working with AI for a living. Although I work in a branch of artificial intelligence not dealing with conversational language models, I have been following OpenAI's work very closely. GPT-3.5 isn't general enough to replace even a junior engineer.

We had CV object detection for a while. But I agree with your sentiment that it's difficult to predict technological changes. And yet multiple technology shocks (https://en.wikipedia.org/wiki/Technology_shock) rarely happen in any given industry with short intervals. We can be optimistic about the future, but if I'm speaking from experience - another leap in academic AI won't happen tomorrow.

> burying your head in the sand until its too late to do anything.

What would you suggest software engineers do?

> You already have AI designing machines and structures that exceed the engineering specifications of what we are capable of creating using 3d printers.

This sounds like a typical application for ML AI. This is not AI doing software engineering.

> What would you suggest software engineers do?

I would expect they would have the awareness and wherewithal to recognize the existential threat for what it is, and then take the appropriate actions to preserve their futures and thus allow them and their families to survive.

We are closing in on solutions to problem domains where discoveries can potentially have global impacts and consequences.

Yes, we all have to eat and some of us have to pay a mortgage or are up to our eyeballs in education debt. These are minuscule worries in comparison to the risk in the thought experiment I describe below.

Technology shocks cannot be predicted, just like the stock market can't be predicted. Past performance doesn't predict future results.

Say someone develops general AI, if costs of labor suddenly drop to 0 for some but not all and its kept secret, that would be exploited to consolidate, pressure, out-compete, leverage, buyout, centralize, and then hold hostage to attain ever more increasing amounts of control and power.

Less and less people would have jobs, economy goes over a cliff, and unrest occurs as food security and other safety nets become overwhelmed. It doesn't happen immediately unless it becomes broadly known.

As we have more people on this planet, the likelihood of having dramatic shifts in technology increases wrt time, the rate of change of progress will continue increasing unless we place limits and enforce behaviors that will preserve our society/future.

So far our leaders haven't been up to the task as we have seen with climate change, its been 30 years since we've known, and the Oil company misinformation campaigns were damn effective, while there was no effective action by our leaders who are paid well for doing almost nothing of consequence to reverse or slow climate changes progress.

The reason I address that is because its an existential threat. Most people don't know or were not educated as to why Africa and South America never rapidly developed like the northern hemispheres. The largest factor was the latent energy of the tropical climate made the environment so adverse to human settlement (increasing mortality), and animal husbandry (parasites, and other mortality related factors) making it almost impossible to have a break even ratio in birth/death rates in certain areas let alone grow.

As a final thought experiment here's some food for thought, say you come across a discovery with global consequence as part of your work. Like an episode in the show Human Target, where there is a key that will open any door you care to open, do you take it?

Have you considered that if you even accidentally hinted in any way that could be intuited that you knew about its existence, you would almost certainly have it stolen, be tortured, and likely killed just for the possibility, right alongside anyone close to you.

Most people live in a nice candy-coated reality and underestimate the potential ruthlessness of others. If you don't have the awareness, power, and resources to defend yourself at all times, what do you think will be the most likely outcome in that kind of scenario?

The moral of the story is, having anything including just an awareness of certain things, with global or geopolitical value immediately makes you a potential target (victim).

Most people in rapidly developing and new fields fail to consider the potential personal risks of doing work where that might be a potentiality because it is an out of context problem for them.

> I feel that doing a regular software engineering job would be much easier and exciting because it's just a job and you can have other hobbies. But with AI, you have to read relevant papers on your spare time just to keep up.

Either you don’t know what it takes to be a decent software engineer these days or you are being a bit harsh. I’m a software engineer. I don’t read papers, sure, but I keep myself up to date every week/month reading books, doing side projects during working hours but also on my free time. Granted, I do so because I like it, though but it’s a necessary thing to do if you want to be good at your career.

Regarding your main question: forget about the noise. If you like what you do, keep doing it. If you are doing what you do just because of its employability, you already lost.

I enjoy doing things, but I don't become good at them because I don't invest the time to push myself further. Life has other priorities, but now I'll have to put in extra effort and an extra hour on top of what I was already doing. This has increased my stress level and decreased my productivity.
To answer your title question, there isn't a way to cope with careers that become extinct due to technological progress. You just simply choose something that's in demand, and hope you chose right.

What most people don't realize is why everything works the way it does, and how we got to where we are. As a result, they are doomed to repeat the failures of the past as cliche as that sounds, and the most recent and latest trend is and has been in stripping you and everyone else of their agency and voice.

We receive many of our benefits through the division of labor. It is best described in a book from 1778 by Adam Smith called the Wealth of Nations. There have been follow-up books such as Landis which covered why some civilizations thrive while others stagnate with climate being a main factor, specifically how tropical climates make animal husbandry impossible and settlement at a high cost of mortality.

Our system worked so long as our leaders listened and acted on what we said, that hasn't happened in a long time. Today they can't differentiate the voice of bots on social media from actual people. They have written laws binding themselves to prevent any change, or only benefited special interests who got them chosen to be on the ballot with money.

Worse, global communism (or socialism) however you want to call it is intentionally attacking the moorings of our society through subversion, we aren't taught about that in school and so don't recognize it.

Most people can't even properly define what socialism is, know its failings (which are not straightforward) and recognize the lies. Those same people then go and push socialist policies as if its the answer.

Worse, there has been a 50 year trend of not having a funding plan for things, and choosing to steal via ponzi from the future with creative financial engineering, corruption, fraud, and collusion.

We are coming upon a criticality point where everything will break, because machines can do most jobs better, and cheaper than people in almost all important factors.

We are not that far off from having machines that can do everything a human can, and do it better and more accurately.

Our leaders have failed in almost all respects that matter with regard to planning for the future, instead choosing to subvert, divide, and limit agency by political cycle, through many various means (media etc) while pretending to do their jobs in a way that nothing really gets done.

Eventually someone will come up with a way to break the existing theory of computation, and then machines can completely replace human productivity and shortly after that everything will break.

People say this is impossible, citing that theory, I'm not going to go into why you shouldn't use a definition to define itself. Put simply, its possible because we exist, and are capable.

So how far do you want to go down the rabbit hole?

What does your philosophy and ethics say you should do? As a worker do you support this path. If you work for them you are supporting them. Do you support companies that replace their jobs with AI or continually offload costs onto their customers, reduce their agency, de-amplify your voice, and enslave you through debt?

Businesses will first replace the low hanging middle class jobs that cost them the most, then the lower paying jobs. In a perfect corporatocracy you would have only leaders that own machines, and some technicians to keep the machines running, and no workers because labor is the most expensive cost.

What can you do about it? Nothing really, not directly.

The chance to actually do anything about it was in the 90s, and that's where the last generation utterly failed and broke the generational social contract.

We have, as the economists call it, dead men ruling, and they have made it practically impossible to right the course.

The only thing you can do is learn to become completely self-sufficient, develop a community with specialized skills and resources, and that might offer a slim chan...

Use AI to make more complex art at a level that couldn't be achievable without it, but yet can't be done using only an AI. For example, have AI generate a photo of a sculpture for you and sculpt it yourself. This may or may not be great advice depending on what your specific artistic interests are, but people didn't stop painting just because the camera was invented.
Research is for the elite, while engineering can be also pursued by normies. It's not wise to pursue a research career if you aren't fascinated by the subject and don't want to spend most of your time on it. If you want a not very demanding, but well paying job that allows for a decent work-life balance, then software engineering is indeed a better choice. Especially doing backend engineering in large, non-tech companies (banks, telecoms).
The only thing that changes is that instead of your time being distributed like this when you build something:

  > [PLANNING] [SPECS] [IMPLEMENTATION] [TESTS]
The "implementation" and "tests" sections become much less time-consuming/tedious, and you focus more on the design, architecture, and specification of the code.

When you think about, the implementation is a detail and a means to an end. For instance, I hop around between a lot of languages.

I can't always remember what the HashMap API is exactly in every language. Is it "put", "insert", "create"? -- does it have an "upsert" method? These sorts of details just bog you down. With AI-assisted development, you just "I want to upsert an item in a HashMap of (String -> Int)" and then browse the suggestions until something looks right.

Sort of like a "Code Architect" role.

I've been using Github Copilot every day for 1.5 years, I can't live without it. ChatGPT is quite an advancement, and I'm so excited for the future of the AI-assisted code authoring space.

Shameless plug: I wrote about this a bit here

https://gavinray97.github.io/blog/a-day-without-a-copilot

Before we worry about the AI future, the end of low interest rates and its effect on cheap capital buoying the tech industry is probably a near-term existential challenge.
You've got to really think about what you want your life to be like, and this is hard. If you want to be high income, that really narrows your career options and almost certainly means you'll have to work lots of hours. If you don't, you can kind of do whatever you want. So the first thing I think you should do is ask yourself if you really want to be high income, and really consider if you'd be unhappy making small websites for nonprofits, or working at a mobile app developer agency, etc. etc. You're obviously smart, and there will always be work to do.
Alternatively you work hard for 5-10 years saving money and then find the fulfilling but less pay career/job.
(comment deleted)
Regarding your art, as someone who graduated from art school, the most important thing above all else is concept, not technicals.

If you're just painting, sculpting, drawing, etc just to do it and enjoy it, then you have nothing to worry about since the enjoyment of the process is fulfilling in itself.

If you're creating projects for the sake of expressing/communicating something for yourself or an audience, then the focus needs to be on developing the concept and refining it, before deciding how to execute it or what the medium(s) will be. If there isn't a strong concept then the work is dead in the water, AI or not.

> Often times, I feel like the process of using AI-generated art and augmenting it with my own projects is more productive than creating my own art from scratch.

And this will likely lead to new, pioneering art, and even new art forms.

AI will likely be a tool that will enable artists to go into new horizons. Just like digital tools before it were.

> As long as I am improving, these models are able to improve at a faster rate. Of course, I cannot compete with the top researchers at these big labs. So whatever I do will be insignificant.

Just because you aren't on the cutting edge of technological "progress" doesn't mean what you do is insignificant. It doesn't have to be futile to resist. There are good things produced by technology of course, but honestly I'm not ashamed to admit I'm just sick of it and have no interest in the cutting edge anymore. Maybe I'll be a fool 100 years when a few more cycles of tech "disruption" finally solve all material poverty, but I just can't see the world that way anymore.

Solving the problem of how to make enough money to get by is a different question, but it's not a new one. IMO the correlation between highly paid work and meaningful is lucky when you can get it, but nothing to count on. Sometimes compromises need to be made.

Live frugally, save up, become financially independent asap. To me it’s clearly the only option.
Dean, that's said a lot but its a pernicious lie that many people mistakenly believe.

What makes it a lie is it doesn't acknowledge or characterize the requirements that must hold true for it to be the truth (or a successful outcome).

Those requirements are simple but don't currently exist in the majority of areas which is why we are having such huge problems today, and people mistakenly believe its something else because they haven't properly educated themselves, and they are working against indoctrination of the education they received early in life.

Those requirements are simple.

* Protection of property rights in the things you own (i.e. you can't be deprived of the benefit from stock you own, arbitrarily (based on someones say so) without effective recourse).

* A store of value that is stable and doesn't change. Inflation depreciation each year with stagnate wages guarantees only consolidation of existing wealth at the expense of anyone else, inflation is also double taxation without representation, one to the government, and one to the privately owned institution of the FED. (followup: The Creature from Jekyll Island).

* A transparent market with functioning price discovery (sales are done only on the market and visible, i.e. no darkpools, and wash sale collusion to fix prices is severely punished).

Without those three things, you will never in a guaranteed determinable way become financially independent because of fraud, deceit, collusion, and corruption.

It is not sufficient to say we have those through the court system, because the court system is not self-enforcing, there are bad actors within the system that go unpunished, its reactive, and the costs for such privileges to defend against unbacked spurious complaints made by entrusted officials (who broke their oath of office) may far exceed the value of the objects thus they can be deprived arbitrarily (google youtube, Civil Asset Forfeiture, US Private Vaults).

If you decide to dig a bit further and research more into this, you may find that common failures in any of those areas are also commonly found in socialist (centralized systems) such as communism, both now and historically.