Search Results: Visual Analytics (1744)

Analytics | Artificial Intelligence | Equity and Responsibility | Innovation
Kristi Boyd 0
Generative AI: Benefits, risks and a framework for responsible innovation

Generative AI (GenAI) is a category of AI that can create new content, including video, audio, images and text. GenAI has the potential to change the way we approach content creation. It’s gotten much attention lately. Take ChatGPT for example. The AI chatbot has captivated the public’s imagination with clever

Analytics
Cheryl Cass 0
How UNC Wilmington data science students are using SAS to drive business results for Lightcast

Students in the master's program in data science at the University of North Carolina Wilmington (UNCW) drove real-world results using SAS® Viya® for the labor market analytics company Lightcast. The project gave students practical analytical tools to solve a business challenge – invaluable career preparation. At the same time, Lightcast gained business insights

Analytics
0
강력한 ModelOps의 필요충분조건! ‘SAS Model Manager’

IDC 마켓스케이프 보고서에서 MLOps 플랫폼 부문 리더 제품으로 선정된 ‘SAS Model Manager’, DataRobot, Databricks, Dataiku, Domino Data Lab등에 성능 우위 입증 다양한 비즈니스 영역에서 머신러닝의 적용이 점차 활기를 띄며 증가하고 있는 가운데, 많은 IT 리더들은 인공지능과 머신러닝 기술을 선택하고 구현하기 위한 필수 기술로 ‘모델 옵스(이하 ModelOps)’를 지목하고 있습니다. AI타임즈에 따르면,

Advanced Analytics
Kevin Scott 0
Improving the detection of level shifts using the median filter

Time series data is widely used in various fields, such as finance, economics, and engineering. One of the key challenges when working with time series data is detecting level shifts. A level shift occurs when the time series’ mean and/or variance changes abruptly. These shifts can significantly impact the analysis and forecasting of the time series and must be detected and handled properly.

Advanced Analytics | Analytics | Cloud | Data Management
José Mutis O. 0
3 tendencias en el desarrollo de analítica y trabajo con datos que ayudarán ante la turbulencia en el 2023

Las previsiones hablan de un 2023 desafiante. Muchos países vivirán tiempos de cambios y de ajustes económicos, de índices de inflación impensados años atrás, de incertidumbres en el manejo de las tasas de cambio y de restricciones a recursos vitales o materias primas producto de las guerras o de las

Advanced Analytics | Analytics | Data Management
Estelle Wang 0
Find duplicates and near-duplicates in a corpus with Natural Language Processing

To find exact duplicates, matching all string pairs is the simplest approach, but it is not a very efficient or sufficient technique. Using the MD5 or SHA-1 hash algorithms can get us a correct outcome with a faster speed, yet near-duplicates would still not be on the radar. Text similarity is useful for finding files that look alike. There are various approaches to this and each of them has its own way to define documents that are considered duplicates. Furthermore, the definition of duplicate documents has implications for the type of processing and the results produced. Below are some of the options. Using SAS Visual Text Analytics, you can customize and accomplish this task during your corpus analysis journey either with Python SWAT package or with PROC SQL in SAS.

Analytics
自然言語処理とSAS (3)

こんにちは!SAS Institute Japanの堀内です。今回も自然言語処理について紹介いたします。 前回の投稿では、実際にSASを使って日本語の文章を扱う自然言語処理の例を解説しました。 最終回の本投稿ではその応用編として、自然言語処理の代表的なタスクとSASによる実装方法を紹介します。なお、ここでいうタスクとは「定式化され一般に共有された課題」といった意味になります。自然言語処理には複数のタスクがあり、タスクごとに、共通する部分はあるとはいえ、問題解決のアプローチ方法は基本的に大きく異なります。SASには各タスクごとに専用のアクションセット1が容易されています。 要約タスク その名の通り文章を要約するタスクです。SASではtextSummarizeアクションセットで対応可能です。 ここでは、NHKのニュース解説記事「気になる頭痛・めまい 天気が影響?対処法は?」(https://www.nhk.or.jp/kaisetsu-blog/700/471220.html) の本文を5センテンスで要約してみましょう。 import swat conn = swat.CAS('mycashost.com', 5570, 'username', 'password') conn.builtins.loadActionSet(actionSet='textSummarization') conn.textSummarization.textSummarize(addEllipses=False, corpusSummaries=dict(name='corpusSummaries', compress=False, replace=True), documentSummaries=dict(name='documentSummaries', compress=False, replace=True), id='Id', numberOfSentences=5, table={'name':CFG.in_cas_table_name}, text='text', useTerms=True, language='JAPANESE') conn.table.fetch(table={'name': 'corpusSummaries'}) numberOfSentencesで要約文のセンテンス数を指定しています。結果は以下の通りです。 'まず体調の変化や天気、気温・湿度・気圧などの日記をつけ、本当に天気が影響しているのか、どういうときに不調になるのかパターンを把握すると役立ちます。 気温・湿度以外にも、気圧が、体調の悪化や、ときに病気の引き金になることもあります。 私たちの体は、いつも耳の奥にある内耳にあると言われている気圧センサーで、気圧の変化を調整しています。 ただ、天気の体への影響を研究している愛知医科大学佐藤客員教授にお話ししを伺ったところ、「台風最接近の前、つまり、気圧が大きく低下する前に、頭が痛いなど体調が悪くなる人は多い」ということです。 内耳が敏感な人は、わずかな気圧の変化で過剰に反応し、脳にその情報を伝えるので、脳がストレスを感じ、体のバランスを整える自律神経が乱れ、血管が収縮したり、筋肉が緊張するなどして、その結果、頭痛・めまいなどの体に様々な不調につながっているのです。' 重要なセンテンスが抽出されていることが分かります。   テキスト分類タスク 文章をいくつかのカテゴリに分類するタスクです。その内、文章の印象がポジティブなのかネガティブなのか分類するものをセンチメント分析と呼びます。ここでは日本語の有価証券報告書の文章をポジティブかネガティブか判定してみます。使用するデータセットは以下になります。 https://github.com/chakki-works/chABSA-dataset (なお、こちらのデータセットには文章ごとにポジティブかネガティブかを示す教師ラベルは元々付与されておりませんが、文章内の特定のフレーズごとに付与されているスコアを合算することで教師ラベルを合成しております。その結果、ポジティブ文章は1670文章、ネガティブ文章は1143文章、合計2813文章になりました。教師ラベルの合成方法詳細はこちらのブログをご覧ください。) pandasデータフレームにデータを格納した状態を確認してみましょう。 df = pd.read_csv(CFG.local_input_file_path) display(df)

Advanced Analytics | Artificial Intelligence | Data Visualization | Machine Learning
Jessica Curtis 0
How to cultivate trust in analytical models and improve forecast adoption

Often the biggest challenge when implementing a successful forecasting process has nothing to do with the analytics. Forecast adoption – incorporating forecasts into decision-making – is just as high a hurdle to overcome as the models themselves. Forecasting is more than analytical models Developing a forecasting process typically begins with

Analytics | Artificial Intelligence
Glyn Townsend 0
Smart cities: Which parts of the UK are the most AI-ready?

AI has, for many years, been the stuff of fantasy. From the monster in Mary Shelley’s Frankenstein to the dystopian futures depicted in films such as Metropolis, the Matrix and Minority Report, the idea of intelligent machines has been capturing the imagination of writers for centuries. Our ability to store

1 37 38 39 40 41 59