Sign In
Register
Products
Solutions
Resources
Pricing
Partners
Company
Howdy, Stranger!
It looks like you're new here. Sign in or register to get started.
Sign In with RapidMiner
Sign In with RapidMiner
Sign In
Register
Quick Links
Categories
Recent Discussions
Best Of...
Unanswered
Groups
Categories
17.4K
All Categories
19.4K
Help
442
Knowledge Base
Altair RapidMiner Community
GET HELP. LEARN BEST PRACTICES. NETWORK WITH YOUR PEERS.
Discussion
Hi, I have a rapidminer process for which I have to write down a python code. It is using Keras.
Author
Date within
1 day
3 days
1 week
2 weeks
1 month
2 months
6 months
1 year
of
Examples: Monday, today, last week, Mar 26, 3/26/04
Search
💬
0 Comments
🔥
0 Discussions
👤
0 Members
🔌
0 Online
ASK A QUESTION
FIND HELPFUL VIDEOS
Home
›
Help
Hi, I have a rapidminer process for which I have to write down a python code. It is using Keras.
grusha
Member
Posts:
1
Newbie
December 2018
edited January 2019
in
Help
I have data as a csv file. I have to use this data to produce an address extraction code.
Tagged:
Python
Keras
Data Sets
Deep Learning + Neural Nets
Data Import
0
Answers
rfuentealba
Moderator, RapidMiner Certified Analyst, Member, University Professor
Posts:
568
Unicorn
December 2018
Hi
@grusha
,
Can you elaborate more? With RapidMiner:
Use the
Read CSV
operator to read the CSV file.
Connect it to the
Execute Python
operator (from the
Python Extension
) to get the CSV contents as
pandas
dataframe.
Inside the
Execute Python
operator, write your Python code.
Don't forget that your Python code must deliver a
pandas
DataFrame too.
Do what you want with your code.
Then you can use the
Execute Python
code with RapidMiner to do what you need.
All the best,
Rodrigo.
0
Sign In
or
Register
to comment.
Answers
Can you elaborate more? With RapidMiner:
- Use the Read CSV operator to read the CSV file.
- Connect it to the Execute Python operator (from the Python Extension) to get the CSV contents as pandas dataframe.
- Inside the Execute Python operator, write your Python code.
- Don't forget that your Python code must deliver a pandas DataFrame too.
- Do what you want with your code.
Then you can use the Execute Python code with RapidMiner to do what you need.All the best,
Rodrigo.