Malcolm Anderson

Results 30 issues of Malcolm Anderson

I'm currently trying to use snscrape to download Tweets from Twitter. According to my calculations, I should be getting around 2,200,000 Tweets in total by the time it finishes. I'm...

question
module:twitter

In my app, I'd like to have a card view that more closely resembles the Wallet app, where each "card" is more card-shaped and has info show up when selected,...

Hi, For a project I'm working on, I need a SwiftUI timezone picker and was considering adapting your code/JSON database file to SwiftUI. I haven't seen anything that states the...

Here is the pull request for my SwiftUI version of the TimeZonePicker! So far, it's worked correctly on macOS. I wasn't able to test it with iOS, unfortunately; for some...

I started trying to use the `trainer` branch of aitextgen, and found that it crashed when attempting to either save the model or generate texts from it while training, due...

I'm hoping to work on a GUI frontend app that will make using aitextgen more accessible, but I realized that to do that it would need to be able to...

I have the following code: ```py from aitextgen import aitextgen from os import environ from aitextgen.utils import GPT2ConfigCPU # disable threading/parallelism to silence warnings environ["TOKENIZERS_PARALLELISM"] = "false" environ["OMP_NUM_THREADS"] = "1"...

I'm using the following script to try to train the 124M model on a dataset. ```python from aitextgen import aitextgen from os import environ dataset = "dataset.csv" def train(): ai...

I've gotten this library to work with the included demo project on macOS Catalina 10.15.4. The necessary steps to get it running have been added to the README. I did...

I'm trying to use dweepy for a program to create a Google Docs-style collaboration mode. However, it seems like I have to run it in a thread, which apparently is...