Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
I want to draw your attention to a very valuable (and short!) whitepaper from my colleague, Professor Andrew Ng, where he shares important insights on how to lead companies into the AI era.
The five steps outlined in the paper are:
- Execute pilot projects to gain momentum
- Build an in-house AI team
- Provide broad AI training
- Develop an AI strategy
- Develop internal and external communications
Many points raised in the paper coincide with my own consulting experience in different industries: AI Transformation Playbook
I also recently gave an interview on the same topic, you can find it here:
Artificial intelligence: What is the best way for companies to innovate?
Happy reading!
If you need qualified support/consulting for your own AI journey, especially for crafting an AI strategy, setting up and management of AI projects, building an AI organization and planning/conducting AI coachings please contact me here: Prof. Dr. Holger K. von Jouanne-Diedrich
…and now for something completely different: like every year Christmas arrives totally unexpected!
So, I wish you a Merry Christmas/Happy Holidays (whatever applies ctree
function:
# ctree: prints a Christmas tree with numbers of branch levels N ctree <- function(N = 7) { for (i in 1:N) cat(rep("", N-i+1), rep("", i), "\n") cat(rep("", N), "*\n") } ctree(5) ## * ## * * ## * * * ## * * * * ## * * * * * ## * ctree() ## * ## * * ## * * * ## * * * * ## * * * * * ## * * * * * * ## * * * * * * * ## * ctree(9) ## * ## * * ## * * * ## * * * * ## * * * * * ## * * * * * * ## * * * * * * * ## * * * * * * * * ## * * * * * * * * * ## *
R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.