Meet Shah
Meet Shah
@springfall2018 - Thanks for your comment. This is a pretty old codebase. Can you list down the steps you followed and are not getting a chair as an output? Before...
10000 iterations are too few for a reasonable output. The ones I generated are trained for 500-700 (500 for chair) epochs (count iterations from it depending on your class freq).
Which OS? I've tested it with success on Linux today and works fine for me. In case it fails for you, please feel free to shoot a PR with a...
Not much though , adding keybindings for pause and restart the process of downloading as the files maybe huge and one might not want to download them in a single...
@aj326 - Those are good ideas. I was thinking of having a progress bar for the download using tqdm and thus wanted to stick to urlib2. please feel free to...
I tried setting the `openai.aiosession` contextvar with an CachedSession ```python from aiohttp_client_cache import CachedSession as AIOCachedSession async with AIOCachedSession(cache=AIOMongoDBBackend('my_async_cache', host="", port=27017)) as aiosession: openai.aiosession.set(aiosession) for i in range(N): tasks.append(asyncio.create_task(openai.ChatCompletion.acreate( model_name='gpt-3.5-turbo',...
I'm unsure if we'd want to enable direct monkey-patching of asyncio.ClientSession globally. But patching a subset of named sessions using scopes (similar to nest_asyncio [1]) and ```python CACHE_SESSION_MAPPING = {...
OpenAI request and response example: ``` curl https://api.openai.com/v1/chat/completions \ -H "Content-Type: application/json" \ -H "Authorization: Bearer $OPENAI_API_KEY" \ -d '{ "model": "gpt-3.5-turbo", "messages": [{"role": "system", "content": "You are a helpful...
Fixed that using by commenting the `IntType` constructor. But these now gives rise to a new problem. The `FixedPoint` defined in the compatibility shows a conversion from `long int` to...