Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

graph_v4.txt 3.0 KB

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
  1. graph = {
  2. "import": [r'import \w+ as \w+', r'import \w+', r'from \w+ import \w+', r'from \w+ import \w+ as \w+'],
  3. "data_import": [r'[ ]{0,1}=[ ]{0,1}open[ ]{0,1}\(',
  4. r'with open[ ]{0,1}\([ ]{0,1}[\'\"]\w+.\w+[\'\"][ ]{0,1},[ ]{0,1}[\'\"]\w+[\'\"]\) as \w+[ ]{0,1}:',
  5. r'read_csv', r'read_fwf', r'read_json', r'read_html', r'read_clipboard', r'read_excel', r'read_hdf',
  6. r'read_feather', r'read_parquet', r'read_orc', r'read_msgpack', r'read_stata', r'read_sas',
  7. r'read_spss', r'read_pickle', r'read_sql', r'read_gbq'],
  8. "data_export": [r'to_csv', r'to_json', r'to_clipboard', r'to_excel', r'to_hdf', r'to_feather', r'to_parquet',
  9. r'to_msgpack', r'to_stata', r'to_pickle', r'to_sql', r'to_gbq'],
  10. "preprocessing": [r'train_test_split', r'Normalizer', r'StandardScaler', r'normalize', r'scale', r'DictVectorizer',
  11. r'CountVectorizer', r'HashingVectorizer', r'TfidfVectorizer', r'Stemmer', r'WordNetLemmartizer',
  12. r'Word2Vec', r'LancasterStemmer', r'SnowballStemmer', r'PorterStemmer','stemmer', r'encode',
  13. r'decode', r'lemmatize', r'stem', r'minmaxscaler', r'labelencoder', r'LabelEncoder', r'concat',
  14. r'concatenate', r'merge', r'fill', r'fillna', r'normalize', r'crop', r'drop', r'preprocess_image',
  15. r'vectorizer', r'tokenizer', r'tfidf', r'replace', r'test_size', r'map', r'filter', r'getdummies',
  16. r'fit_transform', r'transform', r'strip', r'split', r'apply', r'dropna', r'clean', r'duplicated',
  17. r'drop_duplicates', r'reset_index', r'reshape', r'stemming', r'deskew', r'str.contains',
  18. r'augmentation', r'flatten', r'groupby', r'sort_values', r'pad', r'set_vscale', r'pivot', r'melt',
  19. r'sent_tokenize', r'word_tokenize', r'join', r'preprocess', r'preprocessing', r'test_split',
  20. r'font_scale', r'scale', r'color_continuous_scale', r'colorscale', r'preprocessor', r'rescale',
  21. r'reversescale', r'inverse_transform', r'simple_preprocess', r'generation', r'augmentation',
  22. r'lemmatization', r'scale', r'resize', r'invertxaxis', r'attention', r'polynomialfeatures', r'autoscale'],
  23. "visualization": [r'.subplots', r'.scatter', r'.set_title', r'.set_xlabel', r'.set_ylabel',
  24. r'.plot', r'.legend', r'.hist', r'.bar', r'.barh', r'.scatterplot', r'.lineplot', r'.distplot',
  25. r'.countplot', r'.boxplot', r'.imshow', r'.set_xticks', r'.set_yticks', r'.set_xticklabels',
  26. r'.set_yticklabels', r'.setp', r'.heatmap', r'.FacetGrid', r'.map', r'.kdeplot',
  27. r'.pairplot', r'scatter_matrix'],
  28. "model": [r'LinearRegression', r'RandomForest', r'Ridge', r'RidgeCV', r'RidgeClassifier', r'RidgeClassifierCV',
  29. r'SGD', r'LogisticRegression', r'LogisticRegressionCV', r'SVC', r'SVR', r'Layer', r'XGboost', r'LGBM',
  30. r'Perceptron', r'KNeighborsRegressor', r'KNeighborsClassifier', r'SGDRegressor', r'ElasticNet', r'ElasticNetCV',
  31. r'KMeans', r'AgglomerativeClustering', r'SpectralClustering', r'CategoricalNB', r'ComplementNB',
  32. r'DecisionTreeClassifier', r'DecisionTreeRegressor', r'Lasso', r'CatBoost'],
  33. "train": [r'.fit', r'epoch', r'loss', r'optimizer'],
  34. "predict": [r'.predict', r'_error', r'.mean_', r'_score', r'_distance']
  35. }
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...