AI-powered EDGE Dance Animator Applies Generative AI to Choreography

Stanford University researchers have developed a generative AI model that can choreograph human dance animation to match any piece of music. It’s called Editable Dance GEneration (EDGE).

 

“EDGE shows that AI-enabled characters can bring a level of musicality and artistry to dance animation that was not possible before,” says Karen Liu, a professor of computer science who led a team that included two student collaborators, Jonathan Tseng and Rodrigo Castellon, in her lab. The researchers believe that the tool will help choreographers design sequences and communicate their ideas to live dancers by visualizing 3D dance sequences. Key to the program’s advanced capabilities is editability. Liu imagines that EDGE could be used to create computer-animated dance sequences by allowing animators to intuitively edit any parts of dance motion.

 

For example, the animator can design specific leg movements of the character, and EDGE will “auto-complete” the entire body from that positioning in a way that is realistic, seamless, and physically plausible as well — a human could complete the moves. Above all, the moves are consistent with the animator’s choice of music. Like other generative models for images and text — ChatGPT and DALL-E, for instance — EDGE represents a new tool for choreographic idea generation and movement planning.

 

The editability means that dance artists and choreographers can iteratively refine their sequences move by move, position by position, adding specific poses at precise moments. EDGE then incorporates the additional details into the sequence automatically. In the near future, EDGE will allow users to input their own music and even demonstrate the moves themselves in front of a camera. “We think it’s a really a fun and engaging way for everyone, not just dancers, to express themselves through movement and tap into their own creativity,” Liu says.

Read the full article at: hai.stanford.edu

Read the full article at: hai.stanford.edu

Here’s How Airlines Have Started Using AI

The travel industry is going all in on artificial intelligence. Here’s the latest way airlines are utilizing AI.

Per a new report from Bloomberg, airlines have begun leaning on the technology to help map the most fuel-efficient routes for long-haul flights — like the AKL-JFK route — thus avoiding unplanned and stops to refuel, as well as helping pilots avoid heavy weather, or catch a tailwind. And, as Angus Whitley notes, the mapping software is designed to get better the more it’s used — not unlike “an internet search engine that learns on the go.”

Read the full article at: www.insidehook.com

The Universe Sparkles in Gamma Rays in this New NASA Animation

Most of the gamma ray sources in this animation are blazars, supermassive black holes with relativistic jets pointed at Earth.

 

We’ve come a long way since gamma rays were discovered.

The late 1800s and early 1900s were a time of great scientific advancements. Scientists were just getting a handle on the different types of radiation. Radium featured prominently in the experiments, including one by French scientist Paul Ulrich Villard in 1900.

 

Radium decays readily, and scientists had already identified alpha and beta radiation coming from radium samples. But Villard was able to identify a third type of penetrating radiation so powerful even a layer of lead couldn’t stop it: gamma rays.

 

 

Now we have a gamma ray detector in space, and it’s showing us how the Universe sparkles with this powerful energy. Gamma rays are the most energetic form of light in the Universe, and as a new animation shows, the sky practically sparkles with flickering gamma-ray sources. The animation contains a year’s worth of observations from the Large Area Telescope (LAT) on NASA’s Fermi Gamma-ray Space Telescope. Each yellow circle is a gamma-ray source, and the expansion and contraction show how the source brightens and dims. The yellow circle is the Sun’s following its seemingly sinusoidal path relative to Earth.

 

The animation represents an entire year of observations. Each frame in the animation represents three days. The reddish-orange band that runs through the middle of the animation is the Milky Way’s central plane, which is a consistent gamma-ray producer.

Read the full article at: www.universetoday.com

Ultra-luminous X-ray sources produce about 10 million times more energy than the Sun and shouldn’t exist

These objects are more than 100 times brighter than they should be. Observations by the agency’s NuSTAR X-ray telescope support a possible solution to this puzzle.

Exotic cosmic objects known as ultra-luminous X-ray sources produce about 10 million times more energy than the Sun. They’re so radiant, in fact, that they appear to surpass a physical boundary called the Eddington limit, which puts a cap on how bright an object can be based on its mass. Ultra-luminous X-ray sources (ULXs, for short) regularly exceed this limit by 100 to 500 times, leaving scientists puzzled.

In a recent study published in The Astrophysical Journal, researchers report a first-of-its-kind measurement of a ULX taken with NASA’s Nuclear Spectroscopic Telescope Array (NuSTAR). The finding confirms that these light emitters are indeed as bright as they seem and that they break the Eddington limit. A hypothesis suggests this limit-breaking brightness is due to the ULX’s strong magnetic fields. But scientists can test this idea only through observations: Up to billions of times more powerful than the strongest magnets ever made on Earth, ULX magnetic fields can’t be reproduced in a lab.

Read the full article at: www.nasa.gov

AI increases the reliability of bird migration forecasts

With chatbots like ChatGPT making a splash, machine learning is playing an increasingly prominent role in our lives. For many of us, it’s been a mixed bag. We rejoice when our Spotify For You playlist finds us a new jam, but groan as we scroll through a slew of targeted ads on our Instagram feeds.

 

Machine learning is also changing many fields that may seem surprising. One example is my discipline, ornithology, the study of birds. It isn’t just solving some of the biggest challenges associated with studying bird migration; more broadly, machine learning is expanding the ways in which people engage with birds. As spring migration picks up, here’s a look at how machine learning is influencing ways to research birds and, ultimately, to protect them.

Read the full article at: earthsky.org

Read the full article at: earthsky.org

100 Days of Python (by Martin Mirakyan)

As the name suggests, Martin Mirakyan is exploring the Python programming language for over 100 days. He starts from a complete beginner level to make sure people without any programming background can get started and follow along. Then he gradually covers more advanced concepts such as task automation, data visualization, and web scraping and performs some basic data-science experiments.

 

In general, Python is a popular, general-purpose programming language known for its simplicity, readability, and flexibility. It is used in a wide range of applications, including web development, data analysis, scientific computing, and artificial intelligence.

 

Here are a few reasons why one might start learning Python:

  • Python is easy to learn: Its simple syntax and readable code make it a great first programming language for beginners.
  • Python is versatile: It can be used for a wide range of tasks, from web development to data analysis to artificial intelligence.
  • Python has a large, active community: There are countless resources available online for learning Python, and the community is always working on new libraries and tools to make it even better.

 

Along with the concepts, the blog posts will also include some practical exercises with links to resources where one might write code and learn by doing.

 

The list of topics covered will be updated on a rolling basis every day:

  1. Printing values in Python
  2. Getting input from users in Python
  3. Arithmetic expressions and numeric variables in Python
  4. Boolean variables and boolean arithmetic in Python
  5. Conditions in Python — if/else
  6. Nested conditions in Python
  7. Floating point numbers
  8. Augmented assignments (+=, -=, etc.)
  9. Strings
  10. How to format text and what are f-strings in Python?
  11. Lists
  12. What is the range() function in Python?
  13. For loops
  14. While loops
  15. break and continue
  16. How Python almost had another keyword
  17. 5 most useful string casing methods in Python
  18. 5 most useful string modifying methods in Python
  19. Splitting and Joining strings in Python
  20. 10 most useful list methods in Python
  21. Nested loops in Python
  22. Python List Comprehension — Deep Dive
  23. Tuples in Python
  24. Sets in Python
  25. Dictionaries in Python
  26. Why Python Does Not Have Tuple Comprehension?
  27. Functions in Python
  28. What are Multiple Return Values Actually in Python?
  29. 4 Types of Function Arguments in Python that You Might Not Know About
  30. Python Variable Scope
  31. Enumerate and Zip Functions in Python
  32. Lambda Functions in Python: A Comprehensive Guide to Understanding and Using Anonymous Functions
  33. Higher Order Functions in Python
  34. Working With Files in Python
  35. With Statement in Python
  36. Automating Data Cleaning With Python
  37. Positional-only and Keyword-only Arguments in Python
  38. Does Python Have Pass-by-Value VS Pass-by-Reference Variables?
  39. Recursion in Python
  40. What is Stack Overflow Really?
  41. Regular Expressions in Python
  42. Regular Expressions — Grouping and Backreferences
  43. Python Classes and Objects
  44. Mastering Private and Protected Fields in Python Classes: A Complete Tutorial
  45. What are Magic Methods in Python Classes?
  46. Inheritance in Python
  47. Method Overriding in Python
  48. Multiple Inheritance in Python
  49. Type Hints and Type Checking in Python
  50. How to Create Custom Generic Types in Python
  51. Abstract Classes in Python
  52. Data Classes in Python
  53. Properties in Python
  54. Static Methods in Python
  55. Implementing Custom Decorator Functions in Python
  56. Class Decorators in Python
  57. Python — Exception Handling
  58. Exception Hierarchy in Python
  59. Custom Exceptions in Python — Creating Custom Exceptions
  60. Iterators in Python
  61. Generators in Python
  62. Iterables in Python
  63. 10 Most Useful Itertools Methods
  64. Glob — Working with Files in Python
  65. Pathlib — The OOP Approach of Working with File System in Python
  66. Creating Custom Context Managers in Python
  67. All the Ways You Can Use Context Managers in Python
  68. Multithreading in Python
  69. Synchronizing Threads in Python With Locks
  70. Synchronizing Threads in Python With Semaphores
  71. Synchronizing Threads in Python With Barriers
  72. Multiprocessing in Python
  73. What Is the Python Global Interpreter Lock (GIL)?
  74. Multithreading VS Multiprocessing in Python
  75. Thread Pools and Process Pools in Python
  76. Async Await in Python — Asyncio Deep Dive
  77. Async with Expression in Python
  78. Making Requests With asyncio in Python
  79. Working With Databases Using asyncio in Python — SQLAlchemy Example
  80. Multithreading VS Multiprocessing VS Asyncio in Python
  81. How Modules Actually Work in Python and How to Create Your Own Custom Module
  82. What are Packages in Python and What is the Role of __init__.py files?
  83. Working With Third-Party Libraries in Python
  84. Virtual Environments in Python
  85. Unit Testing in Python with Pytest
  86. Test Coverage in Python with Pytest
  87. Mocking and Fixtures in Python
  88. Web Scraping with Scrapy in Python
  89. Working with Excel Sheets and CSV Files Using Pandas for Data Processing
  90. Working With XML and JSON Data in Python
  91. Mastering Image Processing in Python with Scikit-Image — A Comprehensive Guide to Image Processing Techniques
  92. Mastering NumPy in Python for Numerical Computations: A Comprehensive Tutorial
  93. Mastering Data Analysis with Pandas
  94. Machine Learning in Python with Scikit-Learn
  95. Creating an Interactive Website with Streamlit in Python
  96. Creating Beautiful Data Visualizations with Plotly and Dash
  97. Creating Custom ChatGPT Using the OpenAI API
  98. More coming soon…

Read the full article at: martinxpn.medium.com

94% of the universe’s galaxies are permanently beyond our reach

The universe is expanding, with every galaxy beyond the Local Group speeding away from us. Today, most of the universe’s galaxies are already receding faster than the speed of light. All galaxies currently beyond 18 billion light-years are forever unreachable by us, no matter how much time passes.

 

Our universe is full of stars and galaxies everywhere and in all directions. From our vantage point, we observe up to 46.1 billion light years away. Our visible universe contains an estimated ~ 2 trillion galaxies. However, most of them are already permanently unavailable for us.

Read the full article at: blog.thespaceacademy.org

Robot Can 3D-Print Cells Inside a Patient’s Body During Surgery

A new robotic arm could be a game changer in surgeries, with the capability to 3D-print biomaterial directly onto organs inside a patient’s body. The arm, designed by a team of engineers from the University of New South Wales in Australia, can place a tiny, flexible 3D bioprinter inside the body, using bio-ink to “print” tissue-like structures onto internal organs. The device, dubbed F3DB, is designed with a swivel head to offer full flexibility of movement and features an array of soft artificial muscles to allow movement in three separate directions. The entire structure can be controlled externally. 

 

“Existing 3D-bioprinting techniques require biomaterials to be made outside the body and implanting that into a person would usually require large open-field open surgery which increases infection risks,” said Thanh Do, study lead. “Our flexible 3D bioprinter means biomaterials can be directly delivered into the target tissue or organs with a minimally invasive approach. This system offers the potential for the precise reconstruction of three-dimensional wounds inside the body. Our approach also addresses significant limitations in existing 3D bioprinters such as surface mismatches between 3D-printed biomaterials and target tissues/organs as well as structural damage during manual handling, transferring, and transportation process.”

 

Bioprinting in the medical industry is primarily used for research purposes, such as tissue engineering and drug development, and typically requires large-scale, external 3D printers to create the cellular structures. According to the team, in the next few years, the technology could be used to reach and operate on hard-to-reach areas in the body. In the project’s next stage, the F3DB will be used in animal test subjects, as well as further development of the arm to include an integrated camera and scanning system.

Read the full article at: www.iotworldtoday.com