21 May 2020

Open-Sourcing BiT: Exploring Large-Scale Pre-training for Computer Vision




A common refrain for computer vision researchers is that modern deep neural networks are always hungry for more labeled data — current state-of-the-art CNNs need to be trained on datasets such as OpenImages or Places, which consist of over 1M labelled images. However, for many applications, collecting this amount of labeled data can be prohibitive to the average practitioner.

A common approach to mitigate the lack of labeled data for computer vision tasks is to use models that have been pre-trained on generic data (e.g., ImageNet). The idea is that visual features learned on the generic data can be re-used for the task of interest. Even though this pre-training works reasonably well in practice, it still falls short of the ability to both quickly grasp new concepts and understand them in different contexts. In a similar spirit to how BERT and T5 have shown advances in the language domain, we believe that large-scale pre-training can advance the performance of computer vision models.

In “Big Transfer (BiT): General Visual Representation Learning” we devise an approach for effective pre-training of general features using image datasets at a scale beyond the de-facto standard (ILSVRC-2012). In particular, we highlight the importance of appropriately choosing normalization layers and scaling the architecture capacity as the amount of pre-training data increases. Our approach exhibits unprecedented performance adapting to a wide range of new visual tasks, including the few-shot recognition setting and the recently introduced “real-world” ObjectNet benchmark. We are excited to share the best BiT models pre-trained on public datasets, along with code in TF2, Jax, and PyTorch. This will allow anyone to reach state-of-the-art performance on their task of interest, even with just a handful of labeled images per class.

Pre-training
In order to investigate the effect of data scale, we revisit common design choices of the pre-training setup (such as normalizations of activations and weights, model width/depth and training schedules) using three datasets: ILSVRC-2012 (1.28M images with 1000 classes), ImageNet-21k (14M images with ~21k classes) and JFT (300M images with ~18k classes). Importantly, with these datasets we concentrate on the previously underexplored large data regime.

We first investigate the interplay between dataset size and model capacity. To do this we train classical ResNet architectures, which perform well, while being simple and reproducible. We train variants from the standard 50-layer deep “R50x1” up to the 4x wider and 152-layer deep “R152x4” on each of the above-mentioned datasets. A key observation is that in order to profit from more data, one also needs to increase model capacity. This is exemplified by the red arrows in the left-hand panel of the figure below
Left: In order to make effective use of a larger dataset for pre-training, one needs to increase model capacity. The red arrows exemplify this: small architectures (smaller point) become worse when pre-trained on the larger ImageNet-21k, whereas the larger architectures (larger points) improve. Right: Pre-training on a larger dataset alone does not necessarily result in improved performance, e.g., when going from ILSVRC-2012 to the relatively larger ImageNet-21k. However, by also increasing the computational budget and training for longer, the performance improvement is pronounced.
A second, even more important observation, is that the training duration becomes crucial. If one pre-trains on a larger dataset without adjusting the computational budget and training longer, performance is likely to become worse. However, by adapting the schedule to the new dataset, the improvements can be significant.

During our exploration phase, we discovered another modification crucial to improving performance. We show that replacing batch normalization (BN, a commonly used layer that stabilizes training by normalizing activations) with group normalization (GN) is beneficial for pre-training at large scale. First, BN’s state (mean and variance of neural activations) needs adjustment between pre-training and transfer, whereas GN is stateless, thus side-stepping this difficulty. Second, BN uses batch-level statistics, which become unreliable with small per-device batch sizes that are inevitable for large models. Since GN does not compute batch-level statistics, it also side-steps this issue. For more technical details, including the use of a weight standardization technique to ensure stable behavior, please see our paper.
Summary of our pre-training strategy: take a standard ResNet, increase depth and width, replace BatchNorm (BN) with GroupNorm and Weight Standardization (GNWS), and train on a very large and generic dataset for many more iterations.
Transfer Learning
Following the methods established in the language domain by BERT, we fine-tune the pre-trained BiT model on data from a variety of “downstream” tasks of interest, which may come with very little labeled data. Because the pre-trained model already comes with a good understanding of the visual world, this simple strategy works remarkably well.

Fine-tuning comes with a lot of hyper-parameters to be chosen, such as learning-rate, weight-decay, etc. We propose a heuristic for selecting these hyper-parameters that we call “BiT-HyperRule”, which is based only on high-level dataset characteristics, such as image resolution and the number of labeled examples. We successfully apply the BiT-HyperRule on more than 20 diverse tasks, ranging from natural to medical images.
Once the BiT model is pre-trained, it can be fine-tuned on any task, even if only few labeled examples are available.
When transfering BiT to tasks with very few examples, we observe that as we simultaneously increase the amount of generic data used for pre-training and the architecture capacity, the ability of the resulting model to adapt to novel data drastically improves. On both 1-shot and 5-shot CIFAR (see Fig below) increasing model capacity yields limited returns when pre-training on ILSVRC (green curves). Yet, with large-scale pre-training on JFT, each step-up in model capacity yields massive returns (brown curves), up to BiT-L which attains 64% 1-shot and 95% 5-shot.
The curves depict median accuracy over 5 independent runs (light points) when transferring to CIFAR-10 with only 1 or 5 images per class (10 or 50 images total). It is evident that large architectures pre-trained on large datasets are significantly more data-efficient.
In order to verify that this result holds more generally, we also evaluate BiT on VTAB-1k, which is a suite of 19 diverse tasks with only 1000 labeled examples per task. We transfer the BiT-L model to all these tasks and achieve a score of 76.3% overall, which is a 5.8% absolute improvement over the previous state-of-the-art.

We show that this strategy of large-scale pre-training and simple transfer is effective even when a moderate amount of data is available by evaluating BiT-L on several standard computer vision benchmarks such as Oxford Pets and Flowers, CIFAR, etc. On all of these, BiT-L matches or surpasses state-of-the-art results. Finally, we use BiT as a backbone for RetinaNet on the MSCOCO-2017 detection task and confirm that even for such a structured output task, using large-scale pre-training helps considerably.
Left: Accuracy of BiT-L compared to the previous state-of-the-art general model on various standard computer vision benchmarks. Right: Results in average precision (AP) of using BiT as backbone for RetinaNet on MSCOCO-2017.
It is important to emphasize that across all the different downstream tasks we consider, we do not perform per-task hyper-parameter tuning and rely on the BiT-HyperRule. As we show in the paper, even better results can be achieved by tuning hyperparameters on sufficiently large validation data.

Evaluation on “Real-World” Images (ObjectNet)
To further assess the robustness of BiT in a more challenging scenario, we evaluate BiT models that were fine-tuned on ILSVRC-2012 on the recently introduced ObjectNet dataset. This dataset closely resembles real-world scenarios, where objects may appear in atypical context, viewpoint, rotation, etc. Interestingly, the benefit from data and architecture scale is even more pronounced with the BiT-L model achieving unprecedented top-5 accuracy of 80.0%, an almost 25% absolute improvement over the previous state-of-the-art.
Results of BiT on the ObjectNet evaluation dataset. Left: top-5 accuracy, right: top-1 accuracy.
Conclusion
We show that given pre-training on large amounts of generic data, a simple transfer strategy leads to impressive results, both on large datasets as well as tasks with very little data, down to a single image per class. We release the BiT-M model, a R152x4 pre-trained on ImageNet-21k, along with colabs for transfer in Jax, TensorFlow2, and PyTorch. We hope that practitioners and researchers find it a useful alternative to commonly used ImageNet pre-trained models.

Acknowledgements
We would like to thank Xiaohua Zhai, Joan Puigcerver, Jessica Yung, Sylvain Gelly, and Neil Houlsby who have co-authored the BiT paper and been involved in all aspects of its development, as well as the Brain team in Zürich. We also would like to thank Andrei Giurgiu for his help in debugging input pipelines. We thank Tom Small for creating the animations used in this blogpost. Finally, we refer the interested reader to the related approaches in this direction by our colleagues in Google Research, Noisy Student, as well as Facebook Research’s highly relevant Exploring the Limits of Weakly Supervised Pretraining.

Intraday Trading Calls for 21-May-2020

Intraday Trading Calls for 21-May-2020

Please click on the following link to view full post.

https://intradayguruji.blogspot.com/2020/05/intraday-trading-calls-for-21-may-2020_58.html

Via http://intradayguruji.blogspot.com

Live Intraday Trading on 21-May-2020 (Profit 5000)

Live Intraday Trading on 21-May-2020 (Profit 5000)

Please click on the following link to view full post.

https://intradayguruji.blogspot.com/2020/05/live-intraday-trading-on-21-may-2020.html

Via http://intradayguruji.blogspot.com

PathSpot sells a scanner that fact checks your handwashing efficacy


The novel coronavirus disease has reminded millions that handwashing is a great way to avoid preventable diseases. Christine Schindler, the CEO and co-founder of PathSpot, has been preparing for the past three months for the past three years.

“I’ve been obsessed with handwashing,” Schindler said, who has a background in biomedical engineering and public health. Combine that obsession with her experience building low-cost resources in hospitals atop Mount Kilimanjaro in Tanzania and PathSpot was born.

Christine Schindler, CEO of PathSpot

PathSpot sells handwashing hygiene machinery to any place “where food is served, handled or stored,” according to Schindler. Its customers range from restaurants and packing facilities to cafeterias and farms.

PathSpot sells a scanner that mounts on a wall next to handwashing sinks. An individual can come to the hand hygiene machine, place their hands in it and get a green or red light depending on if their hands are clean.

Technology-wise, the company does not compete with Purell, but instead fact checks it to an extent. PathSpot uses visible light fluorescent spectral imaging to identify specific contaminants on someone’s hand that can carry bacteria and potentially make them sick. It shines a specific wavelength onto the hand and begins “autocorrecting” contaminants on the hand. Autocorrecting means that PathSpot sends an image through a series of filters and algorithms to identify if unwanted contaminants are present.

Schindler says that the scanner takes less than two seconds to do a whole scan of someone’s hands.

It is looking for the most common transmission vectors, like fecal matter, for food-borne illnesses, like e.coli.

“It’s not identifying if your hand is washed or not in terms of whether it has water droplets,” she said. “Because most of the time people fail a wash, they wash their hands, but they didn’t wash for the full 20 seconds or didn’t use soap in the proper areas.”

But would it save someone from the coronavirus? Schindler says that the coronavirus is transmitted predominantly through respiratory droplets and fecal matter, as of now. PathSpot covers the latter, she said.

However, according to the CDC, it is still unclear if the virus found in feces can cause COVID-19. There has not been any confirmed report of the virus spreading from feces to a person, and scientists believe the risk is low.

So PathSpot can’t specifically detect the coronavirus right now, but instead can detect every-day and potentially infectious contaminants. Overall sentiment around sanitation has increased since COVID-19 began in the United States. Schindler said that usage of the machine has gone up 500% across their hundreds of customer

PathSpot’s second product is a live dashboard to help restaurants better manage and train their staff around sanitation. “We can tell if the hot spots were right under their right pinky fingernail, or underneath their jewelry,” she said. “We can see where all the hot spots are.”

Efficacy wise, a study shows that the scanner was found to have sensitivity and specificity of 100% and 99%, respectively, during nominal use within a food service environment. Restaurants that use PathSpot see handwashing rates increase by more than 150% in one month of using the product, PathSpot said.

PathSpot charges a monthly subscription fee that includes the device itself and the data dashboard, as well as consultancy from its team to the customer regarding actionable insights. The pricing ranges based on size and number of devices, but on average it starts at $175 a month, Schindler said.

Competitors to PathSpot include FoodLogiQ, which has raised $31.8 million in funding to date; Nima Sensor, which has raised $13.2 million in funding to date; Impact Vision, which has raised $2.8 million in funding to date; and CoInspect, which has raised $5.2 million in funding to date. Schindler insisted that competitors focus more on the food and sourcing itself versus the individual handling of it.

Today, the startup announced it has raised $6.5 million in a Series A round led by Valor Siren Ventures, which is a fund formed by Starbucks and Valor Equity Partners. Existing investors FIKA Ventures and Walden Venture Capital also participated.

The new financing brings PathSpot’s total known venture capital to $10.5 million. Richard Tait, a partner at VSV, will take a seat on PathSpot’s board of directors.

PathSpot is raising during a time when its product is more palatable to the general public. Yet its main customer, restaurants, are reeling from the pandemic and are barely able to complete payroll for their entire staff. PathSpot, therefore, targets the next generation of restaurants that rise after the pandemic — the ones that have no choice but to be digitally enabled and adopt technology to keep sanitation in check.


Read Full Article

Daily Crunch: Twitter tests limiting replies


Twitter is giving users tools to avoid abusive or annoying replies, MakeSpace raises $55 million and Sphero gets a new CEO and a new spinoff.

Here’s your Daily Crunch for May 21, 2020.

1. Twitter is testing a feature that limits who can reply to your tweets

Users can pick from one of three options: Everyone, People You Follow and Only People You Mention. If you opt for either of the latter, the reply function will be greyed out for all who don’t fit the description. They can view, like and retweet the thing, but they won’t be able to reply directly to the sender.

After all, one of Twitter’s greatest benefits and downsides is its openness relative to platforms like Facebook. Anyone and everyone can reply directly to a tweet — and that’s not always ideal for the sender.

2. On-demand storage startup MakeSpace picks up another $55M

On-demand storage startups have sprung up all over the world, hopeful that their new take on an antiquated, fragmented and valuable market would lead to big returns in a brave, new, Uberified world. But the industry has seen a lot of ups and downs, with various startups merging, closing, transferring and trying to pivot in the process. That’s left a consolidated space with fewer — hopefully better capitalized and better organized — competitors remaining.

3. Sphero appoints new CEO, spins off robotics startup for first responders

While still a robotics company at its heart, the underwhelmingly named Company Six will create robotic systems designed for first responders and other humans whose work requires them to put themselves in harm’s way — allowing its parent company to continue its focus on education-related products.

4. Salesforce Commerce Cloud releases four quick-start pandemic business packs

Salesforce decided to build four packages of services for customers, specifically designed to help conduct business during COVID-19. The company even has systems integration partners who will run everything for the first three months.

5. Why VCs say they’re open for business, even if they’re pausing new deals

This week, former TechCrunch editor Alexia Bonatsos of Dream Machine and Niko Bonatsos of General Catalyst swung by Extra Crunch Live to discuss where they are investing today and what the future might look like. (Extra Crunch membership required.)

6. Facebook introduces new Messenger safeguard aimed at combating scams and fake friends

The social network scans accounts for suspicious activity, leveraging machine learning to pick up anomalies like accounts sending a large number of requests in a short timespan or numerous message requests to users under 18.

7. Amazon launches food delivery service in India

The e-commerce giant, which has invested more than $6.5 billion in India, today launched its food delivery service Amazon Food in select parts of Bangalore. The company had originally planned to launch the service in India last year.

The Daily Crunch is TechCrunch’s roundup of our biggest and most important stories. If you’d like to get this delivered to your inbox every day at around 9am Pacific, you can subscribe here.


Read Full Article

The Trash app’s new features can create AI-edited music videos and more


The team behind Trash, an app that uses artificial intelligence to edit your video footage, launched a number of new features this week that should make it more useful for anyone — but especially independent musicians.

I wrote about the startup last summer, when CEO Hannah Donovan told me that her work as Vine’s general manager convinced her that most people will never feel like they have the technical skills to edit a good-looking video.

That’s why she and her co-founder Genevieve Patterson (the startup’s chief scientist) created that technology can analyze multiple video clips, identifying the most interesting shots and stitching it all together into a fun video.

Since then, Trash has been bringing on more creators before opening up to a general audience last fall. Donovan explained that while she’d expected users to create “hyper-polished influencer videos,” the opposite has been true.

“The content on Trash is very personal, very authentic, very real,” she said. “For lack of better words, it’s what you’d see in your [Snapchat or Instagram] Stories.”

Trash is giving users more capabilities this week with the launch of Styles. This allows them to identify the type of video they want to create — whether it’s a recap (vacation recaps are big right now), a narrative video or something more artsy. The results are tailored accordingly, and then the user still has the option to further tweak things, for example by moving clips around.

Trash music video style

Image Credits: Trash


There’s also a style for music videos. Many Trash videos already combine videos and music, but Donovan said this style is specifically designed for independent musicians who may not have editing skills, but who still need to create music videos — especially YouTube has become one of the main ways people discover new music.

“The music video is more important than it’s ever been,” she argued.

Trash can’t give those musicians professional, studio-quality footage, but currently, everyone — no matter how famous — is largely limited to shooting themselves at home on smartphones right now. And even after the pandemic, Donovan expects the trend to continue.

“You’re seeing that in commercial videos as well, incorporating elements like text messaging,” she said. “What we’re seeing now is just this huge blend where it doesn’t matter [and you can mix] real life and virtual life, this hyper-polished, big-budget stuff and a super DIY, shot-on-an-iPhone aesthetic.”

To check it out, you can watch a playlist of some of the initial music videos created on Trash. The startup has also launched Trash for Artists, where musicians can upload their songs to create music videos and promo videos, while also offering them up as a soundtrack for other Trash users.

In addition to launching the new features, Trash also graduated last week from Snap’s Yellow accelerator program. (Other investors include the National Science Foundation, Japan’s Digital Garage and Dream Machine, the fund created by former TechCrunch Editor Alexia Bonatsos.)


Read Full Article

The Trash app’s new features can create AI-edited music videos and more


The team behind Trash, an app that uses artificial intelligence to edit your video footage, launched a number of new features this week that should make it more useful for anyone — but especially independent musicians.

I wrote about the startup last summer, when CEO Hannah Donovan told me that her work as Vine’s general manager convinced her that most people will never feel like they have the technical skills to edit a good-looking video.

That’s why she and her co-founder Genevieve Patterson (the startup’s chief scientist) created that technology can analyze multiple video clips, identifying the most interesting shots and stitching it all together into a fun video.

Since then, Trash has been bringing on more creators before opening up to a general audience last fall. Donovan explained that while she’d expected users to create “hyper-polished influencer videos,” the opposite has been true.

“The content on Trash is very personal, very authentic, very real,” she said. “For lack of better words, it’s what you’d see in your [Snapchat or Instagram] Stories.”

Trash is giving users more capabilities this week with the launch of Styles. This allows them to identify the type of video they want to create — whether it’s a recap (vacation recaps are big right now), a narrative video or something more artsy. The results are tailored accordingly, and then the user still has the option to further tweak things, for example by moving clips around.

Trash music video style

Image Credits: Trash


There’s also a style for music videos. Many Trash videos already combine videos and music, but Donovan said this style is specifically designed for independent musicians who may not have editing skills, but who still need to create music videos — especially YouTube has become one of the main ways people discover new music.

“The music video is more important than it’s ever been,” she argued.

Trash can’t give those musicians professional, studio-quality footage, but currently, everyone — no matter how famous — is largely limited to shooting themselves at home on smartphones right now. And even after the pandemic, Donovan expects the trend to continue.

“You’re seeing that in commercial videos as well, incorporating elements like text messaging,” she said. “What we’re seeing now is just this huge blend where it doesn’t matter [and you can mix] real life and virtual life, this hyper-polished, big-budget stuff and a super DIY, shot-on-an-iPhone aesthetic.”

To check it out, you can watch a playlist of some of the initial music videos created on Trash. The startup has also launched Trash for Artists, where musicians can upload their songs to create music videos and promo videos, while also offering them up as a soundtrack for other Trash users.

In addition to launching the new features, Trash also graduated last week from Snap’s Yellow accelerator program. (Other investors include the National Science Foundation, Japan’s Digital Garage and Dream Machine, the fund created by former TechCrunch Editor Alexia Bonatsos.)


Read Full Article

How to meaningfully reconnect with those who have dementia | Anne Basting

How to meaningfully reconnect with those who have dementia | Anne Basting

By incorporating art and creativity into elder care settings, gerontologist Anne Basting helps families reconnect with loved ones who have dementia. In this moving talk, she shares how asking "beautiful questions" -- questions that don't have a right or wrong answer -- opens up a shared path of discovery, imagination and wonder. "If we can infuse creativity into care, caregivers can invite a partner into meaning-making," Basting says. "In that moment, care, which is so often associated with loss, can become generative."

Click the above link to download the TED talk.

Learn How to Build a YouTube Empire With 50 Hours of Training From Top Creators


One side effect of the coronavirus lockdown is that we all have more time for watching videos. As a result, many YouTube stars are seeing a significant boost to their viewing figures. In other words, now is the perfect time to launch your own channel. The Complete Content Creator Bundle for YouTube helps you get started, with 50 hours of training from some of the big names of online learning. You can currently pick up the bundle for just $39.99 at MakeUseOf Deals.

Internet Stardom

You don’t need much equipment to start a successful YouTube channel — just a camera or smartphone to record video, and a device to edit the footage. But to build an audience, you need to master the art of filmmaking and understand how to promote yourself online.

This bundle provides the ideal education, covering all aspects of YouTube video making. Through hands-on lessons, you discover how to record great footage and produce polished videos with Final Cut Pro X, Premiere Pro, and After Effects. You also learn key growth strategies used by big-name vloggers, and find out all the ways you can monetize your content.

Your instructors include digital marketing expert Benjamin Wilson, and Chris Haroun, the top-selling business tutor on Udemy.

98 Hours of Training for $39.99

These courses are worth $1,592 in total, but you can grab them now for only $39.99.

Read the full article: Learn How to Build a YouTube Empire With 50 Hours of Training From Top Creators


Read Full Article

With an ex-Uber exec as its new CEO, digital mental health service Mindstrong raises $100 million


Daniel Graf has had a long career in the tech industry. From founding his own startup in the mid-2000s to working at Google, then Twitter, and finally Uber, the tech business has made him extremely wealthy.

But after leaving Uber, he wasn’t necessarily interested in working at another business… At least, not until he spent an afternoon in the spring of 2019 with an old friend, General Catalyst managing director Hemant Taneja, walking in San Francisco’s South Park neighborhood and hearing Taneja talk about a new startup called Mindstrong Health.

Taneja told Graf that by the fall of that year, he’d be working at Mindstrong… and Taneja was right.

“I was intrigued by healthtech previously,” said Graf.  “The problem always was…and  it sounds a little too money oriented.. but if there’s no clear visibility around who pays who in a startup, the startup isn’t going to work,” and that was always his issue with healthcare businesses. 

NEW YORK, NY – MAY 21: Daniel Graf accepts a Webby award for Google Maps for Iphone at the 17th Annual Webby Awards at Cipriani Wall Street on May 21, 2013 in New York City. (Photo by Bryan Bedder/Getty Images for The Webby Awards)

With Mindstrong, which announced today that it has raised $100 million in new financing, the issue of who pays is clear.

So Graf joined the company in November as chief executive, taking over from Paul Dagum, who remains with Mindstrong as its chief scientific officer.

“Daniel joined the company as it was moving from pure R&D into being something commercially available,” said Taneja, in an email. “In healthcare, it’s increasingly important to understand how to build for the consumer and that’s where Daniel’s experience and background comes in. Paul remains a core part of the team because none of this happens without the science.”

The company, which has developed a digital platform for providing therapy to patients with severe mental illnesses ranging from schizophrenia to obsessive compulsive disorders, is looking to tackle a problem that costs the American healthcare system $20 billion per month, Graf said.

Unlike companies like Headspace and Calm that have focused on the mental wellness market for the mass consumer, Mindstrong is focused on people with severe mental health conditions, said Graf. That means people who are either bipolar, schizophrenic or have major depressive disorder.

It’s a much larger population than most Americans think and they face a critical problem in their ability to receive adequate care, Graf said.

“1 in 5 adults experience mental illness, 1 in 25 experience serious mental illness, and the pandemic is making these numbers worse. Meanwhile, more than 60% of US counties don’t have a single practicing psychiatrist,” said Joe Lonsdale, the founder of 8VC, and investor in the latest Mindstrong Health round, in a statement.  

Dagum, Mindstrong Health’s founder has been working on the issue of how to provide better access and monitor for indications of potential episodes of distress since 2013. The company’s technology provides a range of monitoring and measurement tools using digital biomarkers that are currently being validated through clinical trials, according to Graf.

“We’re passively measuring the usage of the phone and the timing of the keyboard strokes to measure how [a patient] is doing,” Graf said. These smartphone interactions can provide data around mental acuity and emotional valence, according to Graf — and can provide signs that someone might be having problems.

The company also provides access to therapists via phone and video consultations or text-based asynchronous communications, based on user preference.

“Think of us more as a virtual hospital… our care pathways are super complex for this population,” said Graf. “We’re not aware of other startups working with this population. These folks, the best you get right now is the county mental health.”

Mindstrong’s Series C raise included participation from new and existing investors, including General Catalyst, ARCH Ventures, Optum Ventures, Foresite Capital, 8VC, What If Ventures and Bezos Expeditions, along with other, undisclosed investors.  

And while mental health is the company’s current focus, the platform for care delivery that the company is building has broader implications for the industry, especially in the wake of the COVID-19 epidemic, according to General Catalyst managing director, Taneja.

“I expect that we’ll see discoveries in biomarker tech like Mindstrong’s that could be applied horizontally across almost any area of healthcare,” Taneja said in an email. “Because healthcare is so broad and varied, going vertical like Mindstrong is makes a lot of sense. There’s opportunity to become a successful and very impactful company by staying narrowly focused and solving some really hard problems for even a smaller part of the overall population.”


Read Full Article

Facebook introduces new Messenger safeguard aimed at combating scams and fake friends


Facebook this morning announced a new feature for Messenger designed to cut down on malicious parties looking to scam users. The company scans accounts for suspicious activity, leveraging machine learning to pick up anomalies like accounts sending a large number of requests in a short time span or numerous message requests to users under 18. The feature arrives amid a notable uptick in false friend requests caused by a change to the service’s search algorithm. 

If suspicious activity is detected, the app will pop up a chat window noting the issue, along with options for blocking or ignoring the user. The system has already seen a limited roll out for some Android users, dating as far back as March; iOS functionality, meanwhile, is set to arrive some time next week.

The feature aims to both cut down on scammers and users posing as other people, along with helping to protect minors from bad actors. The system is designed to limit interactions between adults and younger users who aren’t already connected on the platform. Per Facebook, “Our new feature educates people under the age of 18 to be cautious when interacting with an adult they may not know and empowers them to take action before responding to a message.”

Facebook says the feature will continue to work with the addition of end-to-end encryption on the platform, which is likely where that machine learning comes in, keeping human operators from having to view potentially sensitive information. 


Read Full Article

Chief, the leadership network for women, raises $15 million in funding


Chief, the social network dedicated exclusively to women in professional leadership positions, announced today that it has $15 million in funding from its existing investors, including General Catalyst, Inspired Capital, GGV Capital, Primary Venture Partners, Flybridge Capital and BoxGroup.

The startup is a highly-vetted network of women who are leaders in their business, either managing a budget, a large team or both. The women are often at the VP or executive level. The company has more than 2,000 members in New York, Los Angeles and Chicago from companies like Google, IBM, HBO, Chobani, Walmart, Visa, Teladoc, Doctors Without Borders and the New York Times.

Chief was founded by Carolyn Childers and Lindsay Kaplan, who saw an opportunity to bring community, mentorship and guidance to a very underserved client: the female business leader.

Childers was SVP of Operations at Handy and led the launch of Soap.com, serving as GM there through its acquisition by Amazon. Kaplan was on the founding team of Casper, serving as VP of Communications and Brand, before leaving to co-found Chief.

Chief members are placed into a Core Group, which is industry agnostic, to receive training from one of the company’s contracted and vetted executive coaches alongside their peers. In these peer groups, members talk about their challenges and receive support and guidance from one another, as well as an executive coach. Members also have access to a community chat feature, and Chief’s events, which include leadership workshops, conversations with industry leaders and community roundtables.

Obviously, the coronavirus pandemic has put a damper on in-person features of the platform, such as Core Groups and live events. But Chief has moved swiftly to put all these core services on the web for members to attend and participate virtually.

The company has also fast-tracked the launch of its hiring board, which gives members the ability to privately list great candidates and open positions to the broader network.

Chief vets its members to ensure that the women on the platform ‘get it,’ as Kaplan likes to say.

“We all know it gets lonely at the top, and it gets a lot lonelier a lot earlier for women,” said Childers. “Women are on panels or on the circuit and they’re exhausted. This is a community they don’t have to be the one in the spotlight and feel all the pressure, but can actually be supported in a network of women who feel the exact same way. These women are the only person or one of the few people in their organization who have hit that level of leadership, and really need support from people who get it.”

The company looks at the applicants experience, the size of their organization and immediate team, the reporting structure, budget size, awards and credentials, thought leadership and impact as well as current member nominations.

Interestingly, no more than 9 percent of the Chief membership work in a single industry, which leads to cognitive diversity within the community. The average age of a Chief member is 43, and members manage over $10 billion in collective budget at their organizations and more than 100,000 employees.

Executive-level members pay $7,900 annually, while VP-level members pay $5,800 each year. Chief says that 40 percent of its members are Executives, with the other 60 percent are VPs. The company says that 30 percent of its membership base are women of color.

Chief also operates a Membership Grant program, created to promote diversity of background and thought among members, that brings the cost of an annual membership down to $3,800 for folks coming from non-corporate or underfunded organizations. The company did not disclose what percentage of customers are on the grant program.

Some napkin math then tells us that Chief is likely generating more than $10 million in revenue in 2020, on the conservative end. Kaplan and Childers say that they have a waitlist of 8,000 to join.

The new funding will be used to accelerate growth to meet demand in new cities and support the build-out of technology infrastructure. This latest round brings Chief’s total funding to $40 million.


Read Full Article

Facebook’s new safety feature for women in India: Easily lock the account from strangers


Facebook has rolled out a new safety feature in India that will enable users to easily lock their account so that people they are not friends with on the platform cannot view their posts and zoom into and download their profile picture and cover photo.

The feature is especially aimed at women to give them more control over their Facebook experience, the company said. “We are deeply aware of the concerns people in India, particularly women, have about protecting their online profile,” said Ankhi Das, Public Policy Director at Facebook India, in a statement.

Locking the profile applies multiple existing privacy settings and several new measures to a user’s Facebook profile in a few taps, the company said. Once a user has locked their account, people they are not friends with will no longer be able to see photos and posts — both historic and new — and zoom into, share, and download profile pictures and cover photos.

“We have often heard from young girls that they are hesitant to share about themselves online and are intimidated by the idea of someone misusing their information. I am very happy to see that Facebook is making efforts to learn about their concerns and building products that can give them the experience they want. This new safety feature will give women, especially young girls a chance to express themselves freely,” said Ranjana Kumari, Director at New Delhi-based women advocacy group Centre for Social Research, in a statement.

A user can lock the account by tapping on More under their name, then tapping the Lock Profile button and the confirmation button that prompts afterward.

Prior to Thursday’s announcement, this feature was available to users in Bangladesh, a Facebook spokesperson told TechCrunch.

The new feature appears to be an extension of a similar effort Facebook made in 2017 in India to combat catfishing. That feature, called Profile Picture Guard, allowed users to protect their profile picture from being zoomed into and shared by their friends and those not in the friend list.


Read Full Article

You Can Now Set a Bedtime Reminder on YouTube


YouTube now lets you set a bedtime reminder. As you may have guessed, bedtime reminders remind you when it’s time to stop watching YouTube videos and go to bed. Which is perfect for those people who like to watch YouTube videos into the early hours.

How to Set a Bedtime Reminder on YouTube

As detailed on YouTube Help, you can set bedtime reminders on YouTube using a mobile device. This is the latest addition to YouTube’s suite of features designed to help you maintain your digital wellbeing. To set a bedtime reminder on Android or iOS:

  1. Open the YouTube app.
  2. Sign into YouTube.
  3. Open the Settings.
  4. Scroll down to “Remind me when it’s time for bed” and turn it on.
  5. Select a start and end time for your bedtime reminder.

You can also set a bedtime reminder by clicking on your profile picture followed by “Time watched”. This is also where you’ll find other tools to manage your YouTube time, including the option to autoplay videos and to disable sounds and vibrations.

If you don’t want to have the video you’re watching interrupted, select “Wait until I finish my video to show reminder” during setup. You can also snooze your reminder, which will start your video playing again until the reminder appears again after 10 minutes.

How to Make YouTube Fun to Use Again

Bedtime reminders are just the latest addition to YouTube’s suite of digital wellbeing tools. All of which help you manage your time better. We recommend you check out your Time Watched profile, which shows you how much time you’re wasting on YouTube.

This is a small but useful feature for YouTube users. Especially those who watch YouTube in bed. Bedtime reminders mean you’ll never again burn the candle at both ends. And if that sounds far too sensible, try these ways to make YouTube fun again.

Image Credit: Rego Korosi/Flickr

Read the full article: You Can Now Set a Bedtime Reminder on YouTube


Read Full Article

What Are Config Files? How to Edit Them Safely


config-files

Most of the computer programs we use—whether office suites, web browsers, even video games—are configured via menu interfaces. It has almost become the default way we use our machines.

But some programs require you to take a step beyond that. Instead of menus, you must edit a text file for the software to run as you wish.

These text files configure the software and are—unsurprisingly enough—called “config files”. If you want to enhance your computer knowledge you will need to know what a config file is and how to edit one.

What Are Config Files?

Before we get into the technical nitty-gritty, let’s first define what a configuration file is.

Config files are essentially editable text files that contain information required for the successful operation of a program. The files are structured in a particular way, formatted to be user configurable.

While some configuration is hard coded into software, settings that you can change are included in config files.

Surprisingly, there’s no defined standard on how config files should work, or what they should look like. It’s entirely up to the whim of the developer of the program.

Edit the Raspberry Pi's boot config file

Linux users will be particularly familiar with config files as many basic maintenance tasks require you to edit them. Tweaking the Raspberry Pi often relies on editing config files. This might be to specify a wireless network to connect to or set the amount of RAM for graphics.

However, config files are not exclusive to Linux. There are times when you may have to edit them in Windows or macOS.

How to Find and Edit Config Files

Some config files are structured in a format of the developer’s own design. Others use widely known standards used to structure data, like:

  • JSON (JavaScript Object Notation)
  • YAML (YAML Ain’t Markup Language)
  • XML (eXtensible Markup Language)

Some programs load the information stored in their config files when they start. Meanwhile others periodically check the config file to see if it has been changed.

Whatever config file you want to edit it’s smart to make a copy of it before you make any changes. This way, if something goes wrong, you can restore the copy and start again!

Now, let’s take a look at a real-world config file. As we mentioned earlier, they come in all different shapes and sizes. One config file you’re almost certainly familiar with is the hosts file. Windows, Mac, and Linux all use this to manually map IP addresses to hostnames.

Windows Config Files

Windows users will find the hosts file in c:\windows\system32\drivers\etc\.

You can open it by double-clicking the mouse and selecting Notepad from the list of suggested apps. This is all you need to view and edit config files like hosts. However, several alternatives are available—see below for details.

With the file open you will see that it uses whitespace (literally spaces and tab stops) to separate elements.

Edit the Windows hosts file with Notepad

Each hostname has its own line, followed by a tab stop and the IP address. Furthermore, the hosts file allows the user to add annotations and comments, which all begin with a hash symbol.

Linux Config Files

On Linux, you’ll find the hosts file in /etc/. This can be opened in Gedit, or a command line text editor such as nano or vim. In most cases your Linux distro will have one or all of these preinstalled.

Some programs store the config file in the home directory, with a period at the beginning of the filename. These config files sometimes have the file extension .rc and we refer to them as “dotfiles”.

Config Files in macOS

Like Linux, the hosts file can be found in /etc/ on macOS.

Mac users will know that BBEdit is the default, preinstalled text editor. This makes it ideal for editing config files in macOS. However, as with Linux, command line editors vim and nano are also available.

Apps for Safely Editing Config Files

So, now we know what config files are used for, let’s talk about how we can edit them.

To do this, you’re going to need a text editor. Avoid word processors; these can add formatting to the file which would prevent them from being read correctly.

Edit a Windows config file in Notepad++

Native text editors are available, as mentioned. However, for extra functions, third party text editors are also available:

Download: Notepad++ for Windows (Free)

Download: Atom for Windows, macOS, Linux (Free)

Download: Sublime Text Editor for Windows, macOS, Linux (Free evaluation)

So many text editing tools are available for every platform that it is hard to recommend a single app. Linux users can also check our list of Linux text editors. Meanwhile this round up of text editors for macOS should help Apple computer owners.

When you edit a config file, it’s important to ensure you follow the conventions of it. This can be worked out just by looking at it. Some config files, like the hosts file, will explain these conventions to you in commented out lines. Others will force you to read some documentation, or a couple of blog posts.

Finally, if the config file you edit has a JSON or XML format, consider a text editor with syntax highlighting. Notepad++ and Atom are both good options here. Syntax highlighting will improve your accuracy by showing you when you’ve made a mistake.

Other Places You Can Find Config Files to Edit

If you’re interested in exploring config files further, you’ll find them in all sorts of applications and platforms. There is more to config files than specifying which websites and IP addresses to block!

Beyond the hosts file, you’ll find config files in video games. These are often used to define and control things like keymappings.

Meanwhile, some config files can be used to cheat. This was the case in the original Deus Ex game on PC. These days, cheating is far more difficult and often not worth the effort unless enabling an official cheat mode.

Web applications also use configuration files for customization.

What If Your Config Edit Doesn’t Work?

Problems associated with editing config files tend to fall into two camps: permissions and user error.

Issues with config files caused by permissions issues are down to system integrity. You’re unable to save changes because you’re editing as an ordinary user. To prevent accidental misconfiguration, many config files are only editable by those with administrator-level privileges.

Edit a Linux hosts file

Fixing this is easy:

  • On Windows, right-click the text editor, and select Run as administrator
  • On macOS and Linux, try escalating your privileges with the sudo command. So, if you were editing your hosts file, run sudo nano /etc/hosts

(Note that if you specified a different filename or location, you would effectively create a config file in the terminal.)

When the problem is user error, it means it’s your fault. Check that you haven’t made any typos, and that you’ve followed the conventions of the config file.

While it may seem obvious, a simple spelling mistake can render your entire file useless. Before committing to your changes and saving the file remember to:

  • Check the change you made
  • Ensure you left a comment

Also be sure to close the config file before trying to run the software you’re attempting to configure.

Config Files Are Important

More than important, they’re an essential part of using Linux. Knowing how to properly edit them can help you considerably.

While you can edit many config files, be sure to make a copy of the file before making any changes. That way, you can revert to the original if something goes wonky.

Using Linux? Here’s more about modifying and managing the hosts file in Linux.

Read the full article: What Are Config Files? How to Edit Them Safely


Read Full Article

10 Tips to Start Random Chats Worth Having


omegle-cover

Sites like Omegle and Chatroulette are well-known for connecting you with strangers when you want to have a conversation with someone. Anyone. A lot of the time these conversations are weird, but what if you want to take your random chats to the next level?

In this article, we list some tips to start better random chats worth having. Whether on Omegle or other similar sites.

1. Use the Right Service

Emerald Chat

You’ll find a lot of random chat sites online, and many are quite similar. Most offer either video chat or text chat, with some offering both. If you’re dissatisfied with the results from the big players like Omegle, try some lesser-known options like Chat42 or Emerald Chat. There’s also Wusoup, which is built around filtering out creepy and low-quality accounts.

If one-on-one chats bore you, try another service like Talk.chat, which offers random group chats. Meanwhile, Y99 offers multiple chat rooms grouped around different topics.

Our advice on starting random chats online should apply no matter what services you use.

2. Decide on Text or Video Chat

Before you start chatting, you’ll also need to decide whether you want to use text-only chat, or turn on your webcam and microphone for video and audio chat. Both have benefits and drawbacks.

Text chat is better if you’re uncomfortable with showing yourself to strangers. You can also take a minute to come up with responses instead of having to speak in real-time. However, it’s also easy to be lazy in text chat. You’ll get plenty of “ASL?” messages to start conversations, with nothing of interest said afterwards.

Video chat, meanwhile, lets you put a face to the person you’re talking to. If you’re both involved, it’s a much more rewarding experience. Of course, the major drawback to video chat is that many people use their webcam for inappropriate purposes. If you’re not comfortable with people doing this, stick to text chat.

3. Ask Interesting Questions

Life Goal Chat

It’s too easy to fall into the same routine of asking how someone’s day has been, what they do for a living, and similar boring questions. To get more out of your random chats, try asking deeper questions that will elicit more interesting responses.

This might feel a little awkward at first, but if people are intrigued, you’ll have far more personal discussions. Some example questions include:

  • If you could invite anyone in the world to dinner, who would it be?
  • What is your life goal right now?
  • What’s the hardest event you’ve ever lived through?
  • If you could change one event in history, what would it be?
  • What’s your biggest regret?
  • What is your favorite smell and why?
  • How is your relationship with your family?
  • When did you last embarrass yourself?

If you need more ideas, use a list like the 36 Questions that supposedly can lead anyone to fall in love. You can skip the ones focused on romance, but there are a lot of great conversation starters here.

4. Try Talking to People From Other Regions

If you use sites that are popular in your country, you’re likely to only talk with people from your own area. The same goes for the time you chat—if you’re online at a normal time for your region, you’ll probably run into people who live nearby.

To mix this up, try seeking out other chat sites, such as Chatroulette that cater to different areas of the world. You can also try visiting chat sites in the small hours of the morning, or at other odd times when people from across the world are more likely to be online.

By talking with people from other countries, you’ll have more chances to ask about life in different parts of the world. Give this a try if your usual routine doesn’t yield any interesting folks.

5. Include a Friend

Most random chat services don’t let you invite people to text or video-based chats. Despite this, having your friends physically join you for chats can make the experience more enjoyable. Of course, this makes the most sense for video chats.

By having two (or more) people on camera, you won’t feel the pressure of a one-on-one conversation. You can bounce topics off of your buddy when you’re not sure what to say. When the other person sees that you’re not alone, the chat should become more lighthearted.

And when you come across weirdos, you can laugh about them with your friend instead of getting creeped out by them. It’s a fun activity when you’re together and not sure what else to do.

6. Keep a Record of People You’ve Talked To

Putting a pin in the globe

If you chat online often, why not make a little project out of your experiences? After you’ve talked to someone for a bit, ask them where they live (generally). After a while, you might buy a map to log where the people you’ve met online are from.

One particularly fun option is to buy a scratch-off map, either of your country/continent or the whole world. Otherwise, you can use pins to mark the locations on a regular map. And if you don’t like the map idea, maybe you could start a blog detailing the various hometowns you’ve discovered?

Scratch Off World Map Poster Scratch Off World Map Poster Buy Now On Amazon $21.48

This will help your online chats to feel like a journey over time.

7. Play a Role

Mask Disguise

Are you bored of acting like yourself all of the time? Then why not try pretending to be someone else once in a while?

Instead of responding as you would, try acting like a character from a movie or a famous figure. See if the other person can pick up on who you’re impersonating.

Of course, this strategy might not help you get to know people, and you should never do anything to make people feel uncomfortable. However, if you struggle to talk as yourself, it could be a good way to become more comfortable with the process.

8. Filter the Junk

Real Conversation Omegle

The chances are that you’ll come across all kinds of spam accounts and people asking about inappropriate subjects when striking up random conversations online. Don’t waste your time with these. If someone starts being creepy, sends you automated links, or seems like a bot, just disconnect and move onto the next person.

You might also consider making it clear what you’re looking for from the start. When someone connects, you can paste a message like “I’m looking to have a real conversation, so if that’s not what you’re here for, please disconnect now.” While this sounds a bit harsh, it will make your time more efficient by weeding out people you wouldn’t want to talk to anyway.

9. Bring in Media

Struggling to come up with a conversation topic? Try using media from elsewhere to generate some ideas to talk about. You could share a YouTube video, a playlist of music, a funny meme, or anything else you’ve recently come across online.

Similarly, if the site lets you define your interests, add a few so people know what you like to talk about. Most people enjoy finding new content and discussing common interests, so that will give you something to strike up a conversation.

10. Stay in Touch With Good People

If you meet someone you really connect with on a random chat, it makes sense to keep talking with them on another platform. You might make a new long-term friend out of it.

Should you decide to do this, it’s wise to avoid connecting with a method that uses your real name or phone number. At least initially. For your safety, invite them to chat on Discord, Skype, or another app where you don’t have to use your real name.

If you’re sure you trust them after more time, you can add them on social media, WhatsApp, or another similar service.

Making Random Chats More Interesting

With these tips, you’ll hopefully have a more fulfilling experience when chatting online with random people. And while you will have to sort through a lot of chaff on these platforms, with a little patience and the right mindset, you can have some rewarding chats online.

If you’re only chatting with strangers to pass the time, check out these hilariously random websites to help you procrastinate.

Image Credit: Sach.S/Flickr

Read the full article: 10 Tips to Start Random Chats Worth Having


Read Full Article

The Best External GPU for a MacBook Pro


best-external-gpu-macbook-pro

The idea of an external graphics card (eGPU) was once the talk of fantasy, but that’s no longer the case. Thanks to Thunderbolt 3 and its high-bandwidth 40Gbps transfer rate, external enclosures can now accommodate high-end graphics cards.

That means you can now supercharge the visual performance of your Mac computer, even if it’s a laptop. There are some caveats to doing this, namely a limited number of supported graphics cards and the high price of getting started.

That said, let’s take a look at what you need to add an external GPU to your Mac or MacBook and which ones you should buy.

What You’ll Need

First, you’ll need a Thunderbolt 3-capable Mac or MacBook model. Thunderbolt 3 uses the USB-C connector, and appears on the following models:

  • MacBook Pro, late 2016 and newer
  • MacBook Air, 2018 and newer
  • iMac, 2017 and newer
  • iMac Pro, 2017
  • Mac Pro, 2019

In addition to owning one of these Apple computers, you’ll also need macOS High Sierra 10.13.4 or later. Finally, you’ll need to purchase two additional items, either separately or as part of a bundle:

  1. A Thunderbolt 3 eGPU enclosure, into which your graphics card will slot.
  2. A macOS-compatible graphics card.

With all this in place, you should be able to put the graphics card into the enclosure, then plug the enclosure into your Mac for a significant boost in graphical fidelity. However, you may still be limited in how you can use your eGPU.

The Limitations of External GPUs on macOS

Not every application you run can take advantage of your eGPU. In many cases, you’ll need to plug an external monitor directly into the eGPU enclosure to see the benefit. This is the case with many 3D games and VR applications.

Some pro-level software designed to take advantage of multiple GPUs will just work as you’d expect. This includes 3D modeling apps and video editors, but it’s worth confirming your application will see a benefit before you buy an eGPU.

Some applications and games have received patches allowing you to accelerate the built-in display on your iMac or MacBook. However, this is something that developers must enable on their end, so it’s worth keeping in mind if you’re thinking of using an eGPU purely to accelerate your in-built display.

External Graphics Card for Mac

At present, there are only a small number of compatible graphics cards you can use as an eGPU on your Mac. They are all AMD cards.

According to Apple, these are:

  • AMD Polaris cards: Radeon RX 470, RX 480, RX 570, RX 580, and Radeon Pro WX 7100
  • AMD Vega 64 cards: Radeon RX Vega 64, Vega Frontier Edition Air, and Radeon Pro WX 9100
  • AMD Radeon RX Vega 56

The Best eGPU Enclosures and All-in-One Options for Mac

1. Blackmagic eGPU

A great first place to look when searching for an external GPU for your Mac is with the Blackmagic eGPU. This eGPU sports a Radeon Pro 580 graphics processor with 8GB of GDDR5 memory. It also offers several additional ports to use.

Thanks to up to an 85W power delivery feature, you can use one of the two included Thunderbolt 3 ports to power your MacBook Pro without needing to worry about an additional power brick. There is also an HDMI 2.0 port and four USB 3.0 ports.

Blackmagic includes a 0.5m Thunderbolt 3 cable so you can get started with the eGPU right out of the box.

2. Sonnet eGFX Breakaway Box 650

Sonnet eGFX Breakaway Box 650 Sonnet eGFX Breakaway Box 650 Buy Now On Amazon

You’ll need to provide your own Mac-compatible graphics card when using the Sonnet eGFX Breakaway Box 650. The 650W power supply supports 375W cards that require up to an additional 100W of peak power.

There is also 100W of power delivery reserved to power a laptop with the one Thunderbolt 3 port. A 0.7m 40Gb Thunderbolt 3 cable is included with the enclosure.

3. Razer Core X Chroma

Razer Core X Chroma Razer Core X Chroma Buy Now On Amazon $399.99

If you already have a graphics card in mind, the Razer Core X Chroma is another great enclosure choice. The 700W power supply can support a graphics card up to 500W. There is also 100W available for powering a laptop via the Thunderbolt 3 port. On the rear of the enclosure, you’ll find four USB. 3.1 ports and a Gigabit Ethernet plug.

When it’s time to install the card, there is a quick-release handle on the enclosure to bring out the slider tray. No tools are needed for a quick and easy installation. The enclosure sports additional cooling and open vents in the body for the best thermal performance.

4. Sonnet eGFX Breakaway Puck

Sonnet eGFX Breakaway Puck

The Sonnet eGFX Breakaway Puck Radeon is made for portability. The all-in-one option sports a built-in Radeon RX 560 GPU. Along with three DisplayPort ports, there is an HDMI 2.0 port and a single Thunderbolt 3 plug.

The Thunderbolt 3 port can provide up to 60W of power to your MacBook Pro. Sonnet includes a 0.5m Thunderbolt 3 cable.  While the additional VESA mounting bracket allows you to place the eGPU on the back of a monitor to free up desk space.

5. PowerColor Mini Pro

PowerColor Mini Pro PowerColor Mini Pro Buy Now On Amazon $477.41

The PowerColor Mini Pro sports a built-in AMD RX570 graphics card with 8GB of memory, so you’ll be comfortably set up to attach it to your Mac. Thanks to an external power adapter, the eGPU is lightweight and compact, making it perfect for a desk. It also cuts down on heat inside the enclosure.

On the front of the eGPU is the Thunderbolt 3 port and two USB 3.0 ports to connect another device like an external hard drive. The rear of the box sports several display connection options—two DisplayPort plugs, two HDMI ports, and a single DVI-D port. There is also a Gigabit Ethernet plug on the side of the box for a fast Internet connection.

Turn Up the Graphics With the Best Mac External GPU

Even though a MacBook or MacBook Pro is a powerhouse by itself, adding an external GPU can bring the visual performance of your Mac to new heights. Fortunately, there are other ways to bring more of a desktop-like experience to your laptop, too.

For instance, take a look at these great Thunderbolt 3 docks for Your MacBook Pro.

Read the full article: The Best External GPU for a MacBook Pro


Read Full Article