Web extension that adds features of Google Inbox to Gmail
Snowboard Simulator Oculus Rift Demo
CLIP+FFT text-to-image
Silly context-free grammar art project
Toolkit for node
Simple command line tool for text to image generation using OpenAI's CLIP and Siren (Implicit neural representation network). Technique was originally created by https://twitter.com/advadnoun
Speech analysis using Clarify API [Hack Midwest 2014]
Simplest WebRTC ever
Meal planning web app on MEAN
Aspect ratio mode added
issue openedCorentinJ/Real-Time-Voice-Cloning
Can we synthesize voice from voice?
It currently clone a voice and implement it to a Text-To-Speech Synthesis, I was curious if we can clone a voice from a speech and implement it to the other speech instead of a Text-To-Speech Synthesis? Any insight would be much appreciated!
created time in 2 hours
Pull request review commentC2FO/vfs
Fix gs.Location.ListByPrefix and Exists
func (l *Location) List() ([]string, error) { // ListByPrefix returns a slice of file base names and any error, if any // List functions return only file basenames func (l *Location) ListByPrefix(filenamePrefix string) ([]string, error) {- prefix := utils.RemoveLeadingSlash(path.Join(l.prefix, filenamePrefix))- if filenamePrefix == "" {
Query strings should always end with a slash if they are to work.
comment created time in 3 hours
PR opened C2FO/vfs
gs.Location.ListByPrefix only worked for blank prefixes that are not in the root of the bucket.
gs.Location.Exists checked against object does not exists instead of bucket does not exist.
Also added a bunch of unit tests for gs.Location, mostly copied from s3.
The unit tests make use of github.com/fsouza/fake-gcs-server/fakestorage.
Fixes #71
pr created time in 3 hours
issue commentcodota/jupyter-tabnine
Feature request: option to change text color
I use a dark theme from jupyterthemes and it's very difficult to see the text suggestions from TabNine. Would be great to be able to change the text color!
We can just change the color of the suggestions in custom.css file
- In Windows, find config directory by running a command: jupyter --config-dir
- In Linux it is ~/.jupyter
- If there no " custom " folder, create a folder with name custom and in that folder, create a custom.css file, If you already have the custom.css file, no need to do this
- Add these css lines at the beginning of the custom.css file and refresh the jupyter-notebook
.completions ,.complete-dropdown-content{
color:black !important;
}
comment created time in 7 hours
issue openedddangelov/Top2Vec
Tried reading one of the datasets with a column consisting of text data. Obtained a list of strings using the textual column from the dataframe.
On running the model, it throws the error :
TypeError: Cannot convert list to numpy.ndarray
Operations done :
- info_df = pd.read_csv('/content/info.csv')
- info_df. head
- input_str_lst = df.Reviews.tolist()
- type(input_str_lst) : O/P = List
- model = Top2Vec(documents=input_str_lst)

Attached are screenshots
created time in 11 hours
issue commentTHUDM/CogView
Got error ''IndexError: tuple index out of range'' running super-res on colab with a tesla v100
Thanks for the help
comment created time in 12 hours
issue commentTHUDM/CogView
Got error ''IndexError: tuple index out of range'' running super-res on colab with a tesla v100
Closing forever since problem is solved
comment created time in 12 hours
issue openedCorentinJ/Real-Time-Voice-Cloning
I experienced quite less training speed with GPU in Synthesizer phase of the model even though VRAM consumption was on point. I was wondering if there is any way to train on a cluster of CPUs which are not being utilized instead of GPUs.
created time in 16 hours
issue closedTHUDM/CogView
Got error ''IndexError: tuple index out of range'' running super-res on colab with a tesla v100
/content/CogView Generate Samples WARNING: No training data specified using world size: 1 and model-parallel size: 1
using dynamic loss scaling initializing model parallel with size 1 initializing model parallel cuda seeds on global rank 0, model parallel rank 0, and data parallel rank 0 with model parallel seed: 3952 and data parallel seed: 1234 padded vocab (size: 58219) with 21 dummy tokens (new size: 58240) prepare tokenizer done building CogView2 model ... number of parameters on model parallel rank 0: 3928849920 current device: 0 tcmalloc: large alloc 7881007104 bytes == 0x5637e3fb2000 @ 0x7f61e428db6b 0x7f61e42ad379 0x7f6171f1e25e 0x7f6171f1f9d2 0x7f61aff48e7d 0x7f61c0b43120 0x7f61c0781bd9 0x5637152088a8 0x56371527bfd5 0x5637152767ad 0x5637152093ea 0x5637152773b5 0x5637152767ad 0x563715209003 0x563715208b09 0x56371535028d 0x5637152bf1db 0x563715207bb1 0x5637152f8fed 0x56371527b988 0x5637152767ad 0x563715148e2c 0x563715278bb5 0x5637152764ae 0x5637152093ea 0x56371527832a 0x56371520930a 0x5637152773b5 0x56371520930a 0x5637152773b5 0x5637152764ae Load model file pretrained/cogview/cogview-sr/20000/mp_rank_00_model_states.pt Working on No. 0 on 0... Traceback (most recent call last): File "generate_samples.py", line 326, in <module> main() File "generate_samples.py", line 323, in main generate_images_continually(model, args) File "generate_samples.py", line 215, in generate_images_continually for raw_text, seq, output_path in get_context(args, query_template): File "generate_samples.py", line 132, in get_context seq = _parse_and_to_tensor(raw_text, img_size=img_size, query_template=query_template) File "generate_samples.py", line 70, in _parse_and_to_tensor text = query_template.format(*text.split('\t')) IndexError: tuple index out of range /content
closed time in 21 hours
johngore123issue commentTHUDM/CogView
Got error ''IndexError: tuple index out of range'' running super-res on colab with a tesla v100
@johngore123 I think the guidance is enough, and your error message is very simple and clear: the input text cannot be split into two parts by "\t". The details mean that the printed results of text.split('\t') or something like that, without which I cannot offer more help.
comment created time in 21 hours
issue commentTHUDM/CogView
Got error ''IndexError: tuple index out of range'' running super-res on colab with a tesla v100
Since nobody has gotten it to work.
comment created time in a day
issue commentTHUDM/CogView
Got error ''IndexError: tuple index out of range'' running super-res on colab with a tesla v100
That would help.
comment created time in a day
issue commentTHUDM/CogView
Got error ''IndexError: tuple index out of range'' running super-res on colab with a tesla v100
Still same error is there any way you could update the readme for an more detailed guide?
comment created time in a day
issue commentTHUDM/CogView
Got error ''IndexError: tuple index out of range'' running super-res on colab with a tesla v100
Ill try if it works ill close
comment created time in a day
issue commentTHUDM/CogView
Got error ''IndexError: tuple index out of range'' running super-res on colab with a tesla v100
#@title Super resolution (WIP) if you know how to implement this contact aze#1 on discord #@markdown this requires the cogview-sr model to be downloaded (look at the 3rd cell)
#@markdown can be 0.jpg, 1.jpg, 2.jpg ... etc depends on your batch_size image = "0.jpg" #@param {type:"string"}
prompt = "text\t/content/CogView/samples/" + image
%cd /content/CogView !sh scripts/super_resolution.sh %cd /content
一个漂亮的女人走在街上\t/content/CogView/samples/0.jpg
I am sorry but it seems the message is messy and I cannot know what you really input, but could you try to change the input source to a file?
./scripts/super_resolution.sh --input-source sr_input.txt
where sr_input.txt is a line of
一个漂亮的女人走在街上\t/content/CogView/samples/0.jpg
\t is TAB, which looks like some spaces. The line looks like (but changing spaces to a TAB)
一个漂亮的女人走在街上 /content/CogView/samples/0.jpg
comment created time in a day
issue commentTHUDM/CogView
Got error ''IndexError: tuple index out of range'' running super-res on colab with a tesla v100
With Chinese text but you get the idea, i think.
comment created time in a day
issue commentTHUDM/CogView
Got error ''IndexError: tuple index out of range'' running super-res on colab with a tesla v100
And those are just the default i did replace prompt =''text
comment created time in a day
issue commentTHUDM/CogView
Got error ''IndexError: tuple index out of range'' running super-res on colab with a tesla v100
#@title Super resolution (WIP) if you know how to implement this contact aze#0001 on discord #@markdown this requires the cogview-sr model to be downloaded (look at the 3rd cell)
#@markdown can be 0.jpg, 1.jpg, 2.jpg ... etc depends on your batch_size image = "0.jpg" #@param {type:"string"}
prompt = "text\t/content/CogView/samples/" + image
%cd /content/CogView !sh scripts/super_resolution.sh %cd /content
一个漂亮的女人走在街上\t/content/CogView/samples/0.jpg
comment created time in a day
issue commentTHUDM/CogView
Got error ''IndexError: tuple index out of range'' running super-res on colab with a tesla v100
Could need some more documentation.
Can you provide your input and details? \t means TAB
comment created time in a day
issue commentTHUDM/CogView
#10 (comment) Please add a torrent download method in colab or update links. Also this works https://github.com/nishan7/Google-Colab-Torrent-Downloader with some modifications and its a way faster than wget.
if you are able to provide a simple working solution and add it into the notebook, please contact me on discord aze#0001
comment created time in a day
pull request commentCorentinJ/Real-Time-Voice-Cloning
Can someone explain step 2 (Pretrained files) in excruciating detail?
@qoevak
Detailed instructions for step 12 (pretrained files)
- Open Windows Explorer and navigate to the downloaded pretrained.zip file.
- Double-click to look inside the zip file.
- You will see 3 folders, named
encoder,synthesizerandvocoder.- This mirrors the directory structure of the repo.
- Go inside the
encoderfolder. You will see a folder namedsaved_models. - Open a second Windows Explorer and navigate to
C:\Real-Time-Voice-Cloning-master\encoder - Drag and drop the
saved_modelsfolder intoC:\Real-Time-Voice-Cloning-master\encoder. - Repeat 4-6 for "synthesizer" and "vocoder":
- Drag and drop the
saved_modelsfolder from the zip file'ssynthesizerfolder intoC:\Real-Time-Voice-Cloning-master\synthesizer. - Drag and drop the
saved_modelsfolder from the zip file'svocoderfolder intoC:\Real-Time-Voice-Cloning-master\vocoder.
- Drag and drop the
Notes
- All of the pretrained model files in the zip file are named
pretrained.pt, which can be super confusing.- The one inside "encoder" can only be used with the encoder.
- The one inside "synthesizer" can only be used with the synthesizer.
- The one inside "vocoder" can only be used with the vocoder.
- You can use the filesizes to tell them apart.
- The encoder
pretrained.ptis 17 MB. - The synthesizer
pretrained.ptis 370 MB. - The vocoder
pretrained.ptis 53 MB.
- The encoder
comment created time in a day
issue commentTHUDM/CogView
Got error ''IndexError: tuple index out of range'' running super-res on colab with a tesla v100
Could need some more documentation.
comment created time in a day
issue commentTHUDM/CogView
Got error ''IndexError: tuple index out of range'' running super-res on colab with a tesla v100
Issue still happens even with all those things.
comment created time in a day
pull request commentC2FO/gofigure
chore(deps): update dependency eslint to v7.29.0
Coverage remained the same at 90.63% when pulling e97306e1b625c0ab4dafd69e46515b81d5340233 on renovate/eslint-7.x into d1150f0222019d6fa358a2a1a4952af0431d9675 on master.
comment created time in a day
PR opened C2FO/gofigure
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| eslint (source) | 7.28.0 -> 7.29.0 |
Release Notes
<details> <summary>eslint/eslint</summary>
v7.29.0
bfbfe5cNew: Add only to RuleTester (refs eslint/rfcs#73) (#14677) (Brandon Mills)c2cd7b4New: Add ESLint#getRulesMetaForResults() (refs #13654) (#14716) (Nicholas C. Zakas)eea7e0dChore: remove duplicate code (#14719) (Nitin Kumar)6a1c7a0Fix: allow fallthrough comment inside block (fixes #14701) (#14702) (Kevin Gibbons)a47e5e3Docs: Add Mega-Linter to the list of integrations (#14707) (Nicolas Vuillamy)353ddf9Chore: enable reportUnusedDisableDirectives in eslint-config-eslint (#14699) (薛定谔的猫)757c495Chore: add some rules to eslint-config-eslint (#14692) (薛定谔的猫)c93a222Docs: fix a broken link (#14697) (Sam Chen)655c118Sponsors: Sync README with website (ESLint Jenkins)e2bed2eSponsors: Sync README with website (ESLint Jenkins)8490fb4Sponsors: Sync README with website (ESLint Jenkins)ddbe877Sponsors: Sync README with website (ESLint Jenkins)
</details>
Configuration
📅 Schedule: At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box.
This PR has been generated by WhiteSource Renovate. View repository job log here.
pr created time in a day
push eventC2FO/fast-csv
commit sha 0c4e27c378d8ba654db16fad540e1523d7ef8dff
chore(deps): update dependency eslint to v7.29.0
commit sha f7df0a7168ac96dd4b7e11c9f51dbac9a54cc51f
chore(deps): update dependency ts-jest to v27
push time in a day
push eventC2FO/fast-csv
commit sha 0c4e27c378d8ba654db16fad540e1523d7ef8dff
chore(deps): update dependency eslint to v7.29.0
commit sha a609196a240da0609bfab8beef1077b19423c47f
chore(deps): update dependency eslint-config-prettier to v8
push time in a day
push eventC2FO/fast-csv
commit sha 0c4e27c378d8ba654db16fad540e1523d7ef8dff
chore(deps): update dependency eslint to v7.29.0
commit sha a59a8b05862b27117977e3e61ca8c7622544135e
chore(deps): update dependency prettier to v2.3.1
push time in a day