Тёмный
Mark Jay
Mark Jay
Mark Jay
Подписаться
Welcome!

This channel focused on python tutorials across many topics such as machine learning, AI, data science, and signal processing. The goal is to teach python by doing interesting project.
Channel Updates!!!
9:28
6 лет назад
Комментарии
@PlatimaTinkers
@PlatimaTinkers 24 дня назад
Never used an eGPU before - great to see how it all fits together. Cheers for that!
@PlatimaTinkers
@PlatimaTinkers 24 дня назад
Hey mate cheers for the follow! I know the grind can hurt, but would love to see more content from you if you ever get the time again Take it easy
@amielwexler1165
@amielwexler1165 2 месяца назад
thanks
@sunilkumarvengalil2305
@sunilkumarvengalil2305 3 месяца назад
Great post. Well presented. I was looking for a way to process a live audio stream. This video will help a lot. Thank Mark for this video.
@hixidom2274
@hixidom2274 3 месяца назад
Really great. Gonna test this out and throw a FFT on it if it works
@christiancompiles
@christiancompiles 3 месяца назад
Thank you for an explanation that I can understand and visualize!
@rolandmackintosh5163
@rolandmackintosh5163 3 месяца назад
great memes dude
@mariopendragon5373
@mariopendragon5373 3 месяца назад
for anyone wondering how to speed it up, increase self.phase in the update function. .05 gets you approximately the same speed as this video
@emrullahcelik1084
@emrullahcelik1084 5 месяцев назад
hi. ı have to use tf-gpu 1.5 version. so ı m following your video. hovewer my rtx 3050 is not supported by cuda toolkit 9.0. But tf-gpu 1.5 is supporting cuda 9 and cudnn 7. What can ı do now
@yuntaoyang8603
@yuntaoyang8603 6 месяцев назад
so cool , thanks for your share
@ewandao2630
@ewandao2630 7 месяцев назад
Amazing! As of 2024, is there any other better way for very large data real-time 3D visualization?
@hoteny
@hoteny 9 месяцев назад
So if you have discontinuity, then you apply a window function like hann, right? I dont know a lot but moving it instead felt weird. (7:50)
@baghdadiabdellatif1581
@baghdadiabdellatif1581 9 месяцев назад
Thank you Great work 👌👏
@baghdadiabdellatif1581
@baghdadiabdellatif1581 10 месяцев назад
07:47 the amplitude is 255 not 256. Thank you 🙏
@huyphanducnhat1609
@huyphanducnhat1609 10 месяцев назад
great series,but i wonder a student laptop can run it without nvidia cuda?,spec:asus laptop with i9 13900H +16gb ddr4 ,no gpu
@KaleenBhaiya-hg7jq
@KaleenBhaiya-hg7jq Год назад
Bro I Have Lenovo Thinkpad L430 3110m Core i3 3rd Gen Laptop Can O Use External Graphic Card And Which Graphic Card I Used
@LimboPurgatory
@LimboPurgatory Год назад
2:53
@red2fire2
@red2fire2 Год назад
This is the video that started it all for me, glad to be back.
@colinmahoney6812
@colinmahoney6812 Год назад
Great video, thank you :)
@hoangtrong7351
@hoangtrong7351 Год назад
how to run project help me pls
@samueleaton8116
@samueleaton8116 Год назад
Recommendations: use np.frombuffer(data, dtype=np.int16) instead of the struct method use rfft instead of fft to make things faster use the matplotlib FuncAnimation to update the graph periodically (much cleaner) use rfftfreq(chunk, 1/sample_rate) to get the x-coords for correct frequency bins
@perorbem
@perorbem Год назад
Thank you for this straightforward and very well-explained video, it helped a ton!
@dbf72829
@dbf72829 Год назад
Thanks my uni doens't teach but expects us to do the homeworks if it weren't for you I'll be wrecked by now❤
@leo6557
@leo6557 Год назад
Hello! Has the lenovo x260 an expresscard slot too?
@mwandjakaluta4285
@mwandjakaluta4285 Год назад
Paste this into your Jupyter. You will see something cool trust me. 😇 import plotly.graph_objs as go from plotly.subplots import make_subplots import numpy as np # Lorenz attractor parameters sigma = 10 rho = 28 beta = 8/3 # Initial conditions x0, y0, z0 = (1, 1, 1) # Time vector t = np.arange(0, 100, 0.01) # Lorenz attractor function def lorenz(x, y, z, sigma=sigma, rho=rho, beta=beta): x_dot = sigma * (y - x) y_dot = x * (rho - z) - y z_dot = x * y - beta * z return x_dot, y_dot, z_dot # Integrate the Lorenz system using Euler's method xs = np.zeros_like(t) ys = np.zeros_like(t) zs = np.zeros_like(t) xs[0], ys[0], zs[0] = (x0, y0, z0) for i in range(1, len(t)): x_dot, y_dot, z_dot = lorenz(xs[i-1], ys[i-1], zs[i-1]) xs[i] = xs[i-1] + (x_dot * dt) ys[i] = ys[i-1] + (y_dot * dt) zs[i] = zs[i-1] + (z_dot * dt) # Create 3D plot of Lorenz attractor fig = make_subplots(rows=1, cols=1, specs=[[{'type': 'scatter3d'}]]) fig.add_trace(go.Scatter3d(x=xs, y=ys, z=zs, mode='lines', line=dict(color='blue', width=2)), row=1, col=1) fig.update_layout(scene=dict(xaxis_title='X', yaxis_title='Y', zaxis_title='Z'), title='Lorenz Attractor in 3D') fig.show()
@thshm2938
@thshm2938 Год назад
import numpy as np from scipy.misc import derivative def f(x): return np.log(x) x1 = 1.01 x = np.linspace(0.2, 2, 500) m = derivative(f, x1, dx=0.1) for n in range(6): xn = x1 -( f(x1) / m) print(xn) x1 = xn
@Patiencelad
@Patiencelad Год назад
Mark. This was a super helpful video. Thanks so much! I learned a lot, and will be using it today!
@Seii__
@Seii__ Год назад
does this works if i install ubuntu 22.10?
@MarkJay
@MarkJay Год назад
There might be a newer version of NCSDK that works with 22.10. The install shell script had a version check, so you might be able to comment that out. Thats how I got it work with Ubuntu 18.04
@Casper-bs2qz
@Casper-bs2qz Год назад
can we pickle a csv file?
@joaobatistaful
@joaobatistaful Год назад
Very good work
@tedsheridan8725
@tedsheridan8725 Год назад
I'm running (what I believe) is a fairly basic 3D parametric surface, that morphs with a slider. I'm using Matplotlib, and it's pretty laggy (plot doesn't transition smoothly with the slider). Would OpenGL work for this? Running on a Mac mini, so GPU isn't great.
@MarkJay
@MarkJay Год назад
openGL should be faster, even with the integrated graphics on the mac mini
@BN-hy1nd
@BN-hy1nd Год назад
Oops excuse typos from comment earlier below I am getting C:\Users\becon>conda create -n py310_test python=310 anaconda Collecting package metadata (current_repodata.json): failed
@BN-hy1nd
@BN-hy1nd Год назад
Hello. I am new to python as my first language What if I want to update the python on Spyder from 3.8 to 3.10 say? I get C:\Users\becon>conda create -n py310_test python=3.10 Collecting package metadata (current_repodata.json): failed Any help will be appreciated
@aryanattri7252
@aryanattri7252 Год назад
Could you post a video on how to plot the approximations?
@NameIsRAYNY
@NameIsRAYNY Год назад
I have thinkpad T430, Can I use mPcie Version? The Expresscard version is hard to find in my country
@briansmithchuquirunaleon8180
When we run 3 epochs in the training then, is there different choose neurons in each epoch?. In other words 3 diferents combinations of neurons in each epoch, which is consequence of dropout.
@briansmithchuquirunaleon8180
A dropout layer is always before a flatten layer?
@KakashiHatake-vv4cw
@KakashiHatake-vv4cw Год назад
i couldnt find script package
@emintavlayan
@emintavlayan Год назад
this is great. Thank you
@gat0tsu
@gat0tsu Год назад
what kind of microphone did you use and did you have problems with an onboard filter?
@sholpanaghayeva6710
@sholpanaghayeva6710 Год назад
I did not find the package script
@Creem16
@Creem16 Год назад
rip
@ygjt76v0-----
@ygjt76v0----- Год назад
temp very hight!
@MarkJay
@MarkJay Год назад
Its fine for a thinkpad
@ygjt76v0-----
@ygjt76v0----- Год назад
@@MarkJay idle very hight, when load 🤔🔥
@rec-trick
@rec-trick Год назад
how to add autotune with realtime ?
@lillianl.644
@lillianl.644 Год назад
I searched 'script' in 'install', but why there's nothing for python?? help😭😭😭have stuck here for several days now😢😢😢
@mhaddadi
@mhaddadi 2 года назад
Tesorflow to predict stock price, possible?
@amithadole9252
@amithadole9252 2 года назад
Hello sir, Please help me to recognise the position of human like siting, standing or running on video
@kontranorth6159
@kontranorth6159 2 года назад
holy shit thank you for this
@johnnegus9741
@johnnegus9741 2 года назад
Hey any advice on the T470 Lenovo? Can it be done? 32GB ram i7 7600U
@ihazrice643
@ihazrice643 2 года назад
any1 tryna network?? 😼
@cscs6900
@cscs6900 Год назад
Me